/* /4 — Perform template match (Earthyly) */
:root {
  --v4-bg: #ffffff;
  --v4-soft: #f4f4f4;
  --v4-ink: #0a0a0a;
  --v4-muted: #6e6e6e;
  --v4-muted-2: #9a9a9a;
  --v4-line: #e6e6e6;
  --v4-star: #f0c419;
  --v4-green: #1f8a66;
  --v4-font: "Manrope", system-ui, sans-serif;
  --v4-pill: 999px;
  --v4-radius: 32px;
  --v4-radius-sm: 22px;
  --v4-max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--v4-font);
  background: var(--v4-bg);
  color: var(--v4-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .v4-hero__media img { opacity: 1; transform: none; transition: none; animation: none; }
  .v4-scrolly__step p, .v4-scrolly__frame img { transform: none; transition: color .2s ease, opacity .2s ease; }
}

.v4-wrap {
  width: min(var(--v4-max), 100%);
  margin: 0 auto;
  padding: 0 28px;
}

/* Buttons — Perform style: pill + circular arrow */
.v4-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 22px;
  border-radius: var(--v4-pill);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.v4-btn:hover { transform: translateY(-1px); }
.v4-btn--white { background: #fff; color: #111; }
.v4-btn--soft { background: #ececec; color: #111; }
.v4-btn--dark { background: #111; color: #fff; padding: 14px 22px; }
.v4-btn__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}
.v4-btn--dark .v4-btn__icon { background: #fff; color: #111; }
.v4-btn--full { width: 100%; justify-content: center; padding: 14px 20px; }

/* Nav — logo + links left, CTA right, over hero */
.v4-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  padding: 22px 0 0;
}
.v4-nav__inner {
  width: min(var(--v4-max), 100%);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}
.v4-nav__left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.v4-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.v4-logo svg { color: currentColor; }
.v4-nav__rule {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.v4-nav__links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 500;
}
.v4-nav__links a { color: rgba(255,255,255,0.9); }
.v4-nav__links a:hover { color: #fff; }
.v4-nav__cta {
  display: none;
  padding: 11px 18px;
  border-radius: var(--v4-pill);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.v4-nav__hamburger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.2);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (min-width: 900px) {
  .v4-nav__links { display: flex; }
  .v4-nav__cta { display: inline-flex; }
  .v4-nav__hamburger { display: none; }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #fff;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 28px;
  color: #111;
}
.menu-overlay.is-open { display: flex; }
body.menu-open { overflow: hidden; }
.menu-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-overlay__top .v4-logo { color: var(--v4-ink); }
.menu-overlay__top .v4-logo svg { color: var(--v4-green); }
.menu-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.75rem;
  font-weight: 600;
}

/* Hero — full-bleed, pinned behind the page while the next section scrolls over it */
.v4-hero-spacer { height: 100svh; }
.v4-hero {
  position: fixed;
  inset: 0 0 auto;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  color: #fff;
  overflow: hidden;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .v4-hero-spacer { display: none; }
  .v4-hero { position: relative; height: auto; min-height: 100svh; }
}
.v4-hero__media {
  position: absolute;
  inset: 0;
}
.v4-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: v4-ken 20s ease-in-out infinite alternate;
}
@keyframes v4-ken {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1%, -1%, 0); }
}
.v4-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.28) 48%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, transparent 40%, rgba(0,0,0,0.25) 100%);
}
.v4-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--v4-max), 100%);
  margin: 0 auto;
  padding: 0 28px;
  max-width: none;
}
.v4-hero__inner { max-width: 560px; }
.v4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.v4-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.8);
}
.v4-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7.2vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.v4-hero h1 span { display: block; }
.v4-hero__lead {
  margin: 0 0 30px;
  max-width: 40ch;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}
.v4-hero__proof {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 32px;
  max-width: 280px;
}
.v4-hero__proof-line {
  width: 1px;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.v4-hero__proof-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v4-hero__proof-stars {
  color: #fff;
  letter-spacing: 3px;
  font-size: 0.85rem;
  line-height: 1;
}
.v4-hero__proof-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Intro + stats */
.v4-section { position: relative; background: var(--v4-bg); padding: 100px 0; }
.v4-section--soft { background: var(--v4-soft); }
.v4-section--dark { background: #000; color: #fff; padding: 0; }

.v4-intro {
  display: grid;
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .v4-intro {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}
.v4-intro__text {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.28;
}
.v4-intro__text .muted {
  color: var(--v4-muted);
  font-weight: 500;
}
.v4-intro__media {
  border-radius: var(--v4-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: #ddd;
}
.v4-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (min-width: 900px) {
  .v4-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.v4-stat {
  padding-top: 18px;
  border-top: 1px solid var(--v4-line);
}
.v4-stat strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 10px;
}
.v4-stat span {
  color: var(--v4-muted);
  font-size: 0.95rem;
}

/* Plans — sticky stack (each card piles over the previous) */
.v4-section__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.v4-plans {
  display: flex;
  flex-direction: column;
  gap: 0;
  --v4-stack-top: 24px;
}
@media (min-width: 860px) {
  .v4-plans { --v4-stack-top: 40px; }
}
.v4-plan-slot {
  position: sticky;
  top: var(--v4-stack-top);
  margin-bottom: 28px;
}
.v4-plan-slot.reveal { transform: scale(0.92); }
.v4-plan-slot.reveal.is-visible { transform: scale(1); }
.v4-plan-slot:nth-child(1) { z-index: 1; }
.v4-plan-slot:nth-child(2) { z-index: 2; }
.v4-plan-slot:nth-child(3) { z-index: 3; }
.v4-plan-slot:last-child { margin-bottom: 0; }
@media (min-width: 860px) {
  /* Extra scroll runway so each card sticks while the next climbs over it */
  .v4-plan-slot {
    margin-bottom: 0;
    padding-bottom: 18vh;
  }
  .v4-plan-slot:last-child { padding-bottom: 0; }
}
.v4-plan {
  display: grid;
  gap: 0;
  background: #fff;
  border-radius: var(--v4-radius);
  box-shadow: 0 14px 48px rgba(0,0,0,0.1);
  overflow: hidden;
  align-items: stretch;
  min-height: 0;
}
@media (min-width: 860px) {
  .v4-plan {
    grid-template-columns: 1fr 1fr;
    min-height: min(520px, calc(100vh - var(--v4-stack-top) - 64px));
  }
}
.v4-plan__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
  min-height: 220px;
}
@media (min-width: 860px) {
  .v4-plan__media {
    aspect-ratio: auto;
    min-height: 100%;
    border-radius: var(--v4-radius) 0 0 var(--v4-radius);
  }
}
.v4-plan__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-plan__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 860px) {
  .v4-plan__body { padding: 40px 44px; }
}
.v4-plan__price {
  margin: 0 0 4px;
  color: var(--v4-muted-2);
  font-size: 0.95rem;
  font-weight: 500;
}
.v4-plan h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.v4-plan ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v4-plan li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #1a1a1a;
}
.v4-plan li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.v4-plan .v4-btn--soft {
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}
@media (prefers-reduced-motion: reduce) {
  .v4-plan-slot {
    position: relative;
    top: auto;
    padding-bottom: 0;
    margin-bottom: 22px;
  }
  .v4-plan-slot:last-child { margin-bottom: 0; }
}

/* Reviews */
.v4-review {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.v4-review__stars {
  color: var(--v4-star);
  letter-spacing: 4px;
  font-size: 1rem;
  margin-bottom: 24px;
}
.v4-review blockquote {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.v4-review footer {
  color: var(--v4-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.v4-avatars {
  display: flex;
  justify-content: center;
  padding-left: 14px;
}
.v4-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -14px;
  filter: grayscale(1);
  background: #ddd;
}

/* About — sticky scrollytelling (text left, images right) */
.v4-about {
  position: relative;
  background: #000;
  color: #fff;
  padding: 0 0 96px;
}
.v4-scrolly {
  width: min(var(--v4-max), 100%);
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 900px) {
  .v4-scrolly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}
.v4-scrolly__steps {
  display: flex;
  flex-direction: column;
}
.v4-scrolly__step {
  min-height: auto;
  padding: 48px 0;
  display: flex;
  align-items: center;
}
@media (min-width: 900px) {
  .v4-scrolly__step {
    min-height: 100vh;
    padding: 0;
  }
}
.v4-scrolly__step p {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
  max-width: 22ch;
  color: rgba(255,255,255,0.28);
  transform: translateY(10px);
  transition: color .4s ease, transform .5s ease;
}
.v4-scrolly__step p .muted {
  color: inherit;
  font-weight: 500;
}
.v4-scrolly__step.is-active p {
  color: #fff;
  transform: translateY(0);
}
.v4-scrolly__step.is-active p .muted {
  color: rgba(255,255,255,0.48);
}
.v4-scrolly__media-col {
  display: none;
}
@media (min-width: 900px) {
  .v4-scrolly__media-col {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
  }
}
.v4-scrolly__stage {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 0;
}
.v4-scrolly__frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #141414;
}
.v4-scrolly__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}
.v4-scrolly__frame img.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: show image under each step */
.v4-scrolly__step-media {
  display: block;
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #141414;
}
.v4-scrolly__step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .v4-scrolly__step-media { display: none; }
}

/* FAQ */
.v4-faq-kicker {
  display: block;
  text-align: center;
  color: var(--v4-muted-2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v4-faq {
  max-width: 720px;
  margin: 0 auto;
}
.v4-faq details {
  border-bottom: 1px solid var(--v4-line);
  padding: 0;
}
.v4-faq details:first-of-type { border-top: 1px solid var(--v4-line); }
.v4-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-weight: 600;
  font-size: 1.05rem;
}
.v4-faq summary::-webkit-details-marker { display: none; }
.v4-faq__plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #efefef;
  color: #111;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: background .2s, transform .2s;
}
.v4-faq details[open] .v4-faq__plus { background: #e4e4e4; }
.v4-faq details[open] .v4-faq__plus::before { content: "–"; }
.v4-faq__plus::before { content: "+"; }
.v4-faq p {
  margin: 0 0 22px;
  color: var(--v4-muted);
  max-width: 58ch;
  padding-right: 48px;
}

/* Full-bleed CTA banner — compact, sits above the contact form */
.v4-cta-bleed {
  position: relative;
  width: 100%;
  min-height: 33svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 56px 24px;
}
.v4-cta-bleed__media {
  position: absolute;
  inset: 0;
}
.v4-cta-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
}
.v4-cta-bleed__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}
.v4-cta-bleed__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.v4-cta-bleed h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.v4-cta-bleed p {
  margin: 0 auto 28px;
  max-width: 40ch;
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
}
/* Form */
.v4-form-wrap {
  display: grid;
  gap: 36px;
  margin-top: 56px;
}
@media (min-width: 900px) {
  .v4-form-wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.v4-form {
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: var(--v4-radius);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
}
.v4-form.is-success [data-form-fields] { display: none; }
.v4-form .form-success { display: none; }
.v4-form.is-success .form-success { display: block; text-align: center; padding: 40px 12px; }
.form-success__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--v4-green);
  margin-bottom: 12px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--v4-muted);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--v4-line);
  background: #fafafa;
  color: var(--v4-ink);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #bbb;
  background: #fff;
}
.form-field__error,
.form-field__hint { display: none; font-size: 0.82rem; margin-top: 6px; }
.form-field.is-error .form-field__error { display: block; color: #c04545; }
.form-field.is-warning .form-field__hint { display: block; color: #9a6b2f; }
.form-message-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.form-message-suggestion {
  border: 1px solid var(--v4-line);
  background: #fff;
  color: var(--v4-muted);
  border-radius: var(--v4-pill);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.82rem;
}
.form-message-suggestion.is-active,
.form-message-suggestion:hover {
  border-color: #111;
  color: #111;
}
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  color: var(--v4-muted);
  font-size: 0.88rem;
  cursor: pointer;
}
.form-checkbox input { margin-top: 3px; }
.form-checkbox a { text-decoration: underline; color: var(--v4-ink); }
.form-error-banner {
  display: none;
  margin: 12px 0;
  padding: 12px;
  border-radius: 12px;
  background: #fdecec;
  color: #8a2f2f;
  font-size: 0.9rem;
}
.form-microcopy {
  margin: 14px 0 0;
  color: var(--v4-muted);
  font-size: 0.82rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.v4-form-section {
  background: #fff;
  padding: 88px 0;
  position: relative;
  z-index: 1;
}
/* Screen-wide black footer */
.v4-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #000;
  color: rgba(255,255,255,0.65);
  padding: 56px 28px 48px;
  font-size: 0.9rem;
}
.v4-footer__inner {
  width: min(var(--v4-max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
@media (min-width: 800px) {
  .v4-footer__inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    gap: 64px;
  }
}
.v4-footer__brand-block { max-width: 36ch; }
.v4-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.v4-footer__brand svg { color: #fff; }
.v4-footer__blurb {
  margin: 0;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  font-size: 0.92rem;
}
.v4-footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 72px;
}
@media (min-width: 800px) {
  .v4-footer__cols { justify-content: flex-end; }
}
.v4-footer__col strong {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.v4-footer__col a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}
.v4-footer__col a:hover { opacity: 0.75; }
