@font-face {
  font-family: "Beatrice";
  src: url("assets/fonts/Beatrice-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beatrice";
  src: url("assets/fonts/Beatrice-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beatrice Display";
  src: url("assets/fonts/Beatrice-Display-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-dark: #082821;
  --green: #114f2d;
  --green-soft: #23523f;
  --off-white: #efece4;
  --stone: #c5beb6;
  --gray: #7e7870;
  --red: #ec2f00;
  --black: #070807;
  --max: 1320px;
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--green-dark);
  background: var(--off-white);
  font-family: "Beatrice", Helvetica, Arial, sans-serif;
  line-height: 1.45;
  cursor: none;
}

body.modal-open {
  overflow: hidden;
}

body::selection {
  color: var(--off-white);
  background: var(--red);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--off-white);
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 3px;
}

.skip-link:focus {
  transform: translateY(0);
}

.cursor,
.cursor-blur {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
}

.cursor {
  width: 28px;
  height: 28px;
  z-index: 80;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(239, 236, 228, .82);
  box-shadow: 0 0 0 1px rgba(8, 40, 33, .08);
  transition: opacity .25s ease, width .35s ease, height .35s ease, border-color .35s ease;
}

.cursor.is-hovering {
  width: 34px;
  height: 34px;
  border-color: rgba(236, 47, 0, .92);
}

.cursor-blur {
  left: var(--cursor-lag-x, var(--cursor-x, 50%));
  top: var(--cursor-lag-y, var(--cursor-y, 50%));
  width: 240px;
  height: 240px;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(236, 47, 0, .2), rgba(236, 47, 0, 0) 66%);
  mix-blend-mode: multiply;
  filter: blur(2px);
}

body.modal-open .cursor-blur {
  z-index: 55;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px var(--pad);
  color: var(--off-white);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  color: var(--green-dark);
  background: rgba(239, 236, 228, .9);
  border-bottom: 1px solid rgba(8, 40, 33, .12);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: block;
  width: 142px;
  height: 67px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 142px;
  height: auto;
  transition: opacity .25s ease;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 13px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--red);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 3px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.header-cta,
.button,
.whatsapp-link,
.floating-whatsapp,
.modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.button-primary {
  color: var(--off-white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover,
.header-cta:hover,
.whatsapp-link:hover,
.floating-whatsapp:hover,
.modal-submit:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--off-white);
  background: rgba(239, 236, 228, .08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--green-dark);
  background: var(--off-white);
  border-color: var(--off-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--off-white);
  background: #c92805;
  border-color: #c92805;
  box-shadow: 0 16px 34px rgba(236, 47, 0, .22);
}

.header-cta:hover,
.header-cta:focus-visible,
.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  color: var(--off-white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--off-white);
  background: var(--green-dark);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--hero-y, 0));
  filter: saturate(.95) contrast(1.04);
}

.hero-video {
  display: block;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, .74), rgba(7, 8, 7, .3) 52%, rgba(7, 8, 7, .08)),
    linear-gradient(0deg, rgba(7, 8, 7, .82), rgba(7, 8, 7, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - var(--pad) * 2));
  margin: 0 var(--pad) 78px;
  padding-top: 108px;
}

.segment-switch {
  display: inline-flex;
  padding: 4px;
  margin-bottom: 28px;
  border: 1px solid rgba(239, 236, 228, .48);
  border-radius: 3px;
  background: rgba(7, 8, 7, .2);
}

.segment-button {
  border: 0;
  color: var(--off-white);
  background: transparent;
  padding: 10px 16px;
  border-radius: 2px;
  cursor: pointer;
}

.segment-button.is-active {
  color: var(--green-dark);
  background: var(--off-white);
}


.section-label,
.outcome span,
.step span,
.case-card span,
.feature-caption span,
.testimonial span,
.form-note {
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow{
      margin: 35px 0px 35px 0px;
      color: inherit;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
}

.hero h1,
section h2 {
  margin: 0;
  font-family: "Beatrice", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 strong {
  font-weight: 500;
  color: inherit;
}

section h2 strong {
  font-weight: 500;
  color: inherit;
}

.hero h1 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(40px, 5.2vw, 78px);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(239, 236, 228, .86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(239, 236, 228, .22);
}

.hero-proof span {
  min-height: 62px;
  padding: 19px var(--pad);
  border-right: 1px solid rgba(239, 236, 228, .22);
  font-size: 13px;
}

.authority {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px var(--pad);
  gap: 32px;
  border-bottom: 1px solid rgba(8, 40, 33, .16);
}

.authority div {
  display: grid;
  gap: 6px;
}

.authority strong {
  font-family: "Beatrice", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.15;
}

.authority span {
  max-width: 260px;
  color: var(--gray);
}

.split-section,
.method,
.cases,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad);
}

.method {
  padding-bottom: 82px;
}

.cases {
  padding-top: 82px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: clamp(36px, 8vw, 120px);
}

.section-label {
  color: var(--red);
}

section h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.3vw, 64px);
}

.intro-copy p,
.method-header p,
.cases-header p,
.contact-copy p {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--gray);
  font-size: 18px;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(8, 40, 33, .15);
  border-bottom: 1px solid rgba(8, 40, 33, .15);
}

.outcome {
  min-height: 300px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(8, 40, 33, .15);
}

.outcome span,
.step span,
.case-card span,
.feature-caption span {
  color: var(--red);
}

.outcome h3,
.step h3,
.case-card h3 {
  margin: 44px 0 14px;
  font-family: "Beatrice", Helvetica, Arial, sans-serif;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.18;
}

.outcome p,
.step p,
.case-card p {
  margin: 0;
  color: var(--gray);
}

.feature-image {
  position: relative;
  min-height: 78svh;
  margin-top: clamp(48px, 6vw, 92px);
  overflow: hidden;
  background: var(--green-dark);
}

.feature-image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 92svh;
  object-fit: cover;
  transform: translateY(var(--float-y, 0));
  will-change: transform;
  pointer-events: none;
}

.feature-caption {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: var(--pad);
  width: min(430px, calc(100% - var(--pad) * 2));
  color: var(--off-white);
  padding: 22px;
  border-radius: 3px;
  background: rgba(8, 40, 33, .78);
  backdrop-filter: blur(14px);
  transform: translateX(0);
  transition: transform 1.15s cubic-bezier(.2, .85, .18, 1), background .45s ease, box-shadow .45s ease;
  will-change: transform;
}

.feature-caption.is-shifted {
  transform: translateX(calc(var(--caption-travel, 0px) * -1));
}

.feature-caption.is-traveling {
  pointer-events: none;
}

.feature-caption:hover,
.feature-caption:focus-within {
  background: rgba(8, 40, 33, .84);
  box-shadow: 0 22px 54px rgba(7, 8, 7, .22);
}

.feature-caption p {
  margin: 12px 0 0;
  font-size: 22px;
  line-height: 1.22;
}

.method {
  background: var(--off-white);
}

.method-header,
.cases-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 150px;
  align-items: end;
  margin-top: 20px;
}

.text-link {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  white-space: nowrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(8, 40, 33, .16);
  border-left: 1px solid rgba(8, 40, 33, .16);
}

.step {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(8, 40, 33, .16);
  border-bottom: 1px solid rgba(8, 40, 33, .16);
  background: var(--off-white);
  overflow: hidden;
  transition: border-color .38s ease;
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--red);
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.step:hover,
.step:focus-within {
  border-color: rgba(236, 47, 0, .26);
}

.step:hover::after,
.step:focus-within::after {
  opacity: 1;
}

.step h3 {
  margin-top: 54px;
  font-size: 23px;
}

.case-grid {
  display: grid;
  gap: clamp(64px, 6vw, 96px);
  margin-top: clamp(70px, 7vw, 110px);
}

.case-card {
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  min-height: 420px;
  background: #f7f4ec;
  overflow: hidden;
  transform: translateY(var(--card-y, 0));
  transition: transform .2s linear;
  will-change: transform;
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.case-card div {
  align-self: end;
  padding: clamp(28px, 5vw, 70px);
}

.case-card h3 {
  max-width: 620px;
  margin-top: 58px;
}

.testimonial {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 90px var(--pad);
  color: var(--off-white);
  text-align: center;
  background: var(--green-dark);
}

.testimonial p {
  max-width: 980px;
  margin: 0;
  font-family: "Beatrice", Helvetica, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.14;
}

.testimonial span {
  display: block;
  margin-top: 34px;
  color: rgba(239, 236, 228, .7);
}

.faq,
.contact {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) 1fr;
  gap: clamp(40px, 8vw, 120px);
}

.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad) 150px;
  border-bottom: 1px solid rgba(8, 40, 33, .16);
}

.faq > .section-label {
  grid-column: 1;
  grid-row: 1;
}

.faq-header {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 150px;
  align-self: start;
}

.faq-header p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--gray);
  font-size: 18px;
}

.faq-list {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  /* Creates runway for the sticky FAQ intro so questions meet it while scrolling. */
  margin-top: clamp(260px, 30vw, 430px);
  border-top: 1px solid rgba(8, 40, 33, .16);
}

.faq-item {
  border-bottom: 1px solid rgba(8, 40, 33, .16);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px 1fr 14px;
  gap: 20px;
  align-items: start;
  padding: 28px 0 22px;
  list-style: none;
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

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

.faq-item summary::after {
  content: "";
  grid-column: 3;
  justify-self: end;
  margin-top: 10px;
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .35s ease;
}

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

.faq-item summary span {
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
  margin-top: .55em;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows .45s ease, opacity .35s ease, transform .35s ease;
}

.faq-item[open] .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-content p {
  overflow: hidden;
  margin: 0 34px 34px 62px;
  max-width: 650px;
  color: var(--gray);
  font-size: 17px;
}

.contact-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.contact-copy h2 {
  margin-top: 24px;
}

.whatsapp-link {
  margin-top: 34px;
  color: var(--green-dark);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: clamp(24px, 5vw, 56px);
  color: var(--off-white);
  background: var(--green-dark);
}

.lead-form label {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(239, 236, 228, .38);
  border-radius: 0;
  color: var(--off-white);
  background: transparent;
  outline: 0;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  border-bottom-color: var(--off-white);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(239, 236, 228, .44);
}

.lead-form select option {
  color: var(--green-dark);
}

.form-wide,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: rgba(239, 236, 228, .62);
  text-transform: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 11;
  color: var(--off-white);
  background: var(--green);
  border-color: var(--green);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 14px 34px rgba(7, 8, 7, .18);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.whatsapp-modal[hidden] {
  display: none;
}

.whatsapp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 7, .5);
  backdrop-filter: blur(8px);
}

.whatsapp-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92svh, 960px);
  overflow: auto;
  padding: clamp(30px, 4vw, 54px) clamp(24px, 4vw, 50px);
  color: var(--green-dark);
  background: #f7f1eb;
  box-shadow: 0 34px 90px rgba(7, 8, 7, .26);
}

.whatsapp-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 40, 33, .22);
  border-radius: 50%;
  color: var(--green-dark);
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color .24s ease, border-color .24s ease, transform .24s ease;
}

.whatsapp-modal__close:hover,
.whatsapp-modal__close:focus-visible {
  color: var(--red);
  border-color: var(--red);
  transform: rotate(90deg);
}

.whatsapp-modal h2 {
  margin: 0;
  text-align: center;
  font-family: "Beatrice", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.04;
}

.whatsapp-modal__panel > p {
  max-width: 470px;
  margin: 20px auto 26px;
  color: #5f5a54;
  text-align: center;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.35;
}

.whatsapp-modal__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 26px;
}

.whatsapp-modal__form label {
  display: grid;
  gap: 10px;
  color: #5a554e;
  font-size: 15px;
}

.whatsapp-modal__form input,
.whatsapp-modal__form select {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(8, 40, 33, .62);
  border-radius: 0;
  color: var(--green-dark);
  background: transparent;
  outline: 0;
  font-size: 16px;
  font-style: italic;
}

.whatsapp-modal__form input::placeholder {
  color: #5f5a54;
}

.whatsapp-modal__form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #807a73 50%),
    linear-gradient(135deg, #807a73 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 10px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.whatsapp-modal__form input:focus-visible,
.whatsapp-modal__form select:focus-visible {
  border-bottom-color: var(--red);
}

.modal-wide,
.modal-submit,
.modal-note {
  grid-column: 1 / -1;
}

.modal-submit {
  justify-self: center;
  min-width: min(340px, 100%);
  min-height: 48px;
  margin-top: 4px;
  color: var(--green);
  background: transparent;
  border-color: var(--green);
  border-radius: 999px;
  font-size: 16px;
}

.modal-submit:hover,
.modal-submit:focus-visible {
  color: var(--off-white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(17, 79, 45, .22);
}

.modal-submit:disabled {
  opacity: .65;
  pointer-events: none;
}

.modal-note {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--gray);
  text-align: center;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) .7fr .9fr;
  gap: clamp(36px, 7vw, 110px);
  padding: 86px var(--pad) 32px;
  color: var(--off-white);
  background: var(--green-dark);
}

.footer-brand img {
  width: 156px;
  height: auto;
}

.footer-brand p,
.footer-contact p,
.footer-bottom {
  color: rgba(239, 236, 228, .68);
}

.footer-brand p {
  max-width: 390px;
  margin: 28px 0 0;
  font-size: 18px;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  transition: color .25s ease, transform .25s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--red);
  transform: translateX(4px);
}

.footer-contact p {
  margin: 0 0 10px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid rgba(239, 236, 228, .18);
  font-size: 12px;
}

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

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

@media (max-width: 980px) {
  .cursor,
  .cursor-blur {
    display: none;
  }

  body {
    cursor: auto;
  }

  .site-header {
    grid-template-columns: 112px auto auto;
    gap: 10px;
  }

  .brand,
  .brand-logo {
    width: 112px;
    height: 53px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px var(--pad) 18px;
    color: var(--green-dark);
    background: rgba(239, 236, 228, .96);
    border-bottom: 1px solid rgba(8, 40, 33, .12);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(8, 40, 33, .1);
  }

  .header-cta {
    justify-self: end;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .whatsapp-modal__panel {
    max-height: 94svh;
  }

  .whatsapp-modal__form {
    grid-template-columns: 1fr;
  }

  .modal-wide,
  .modal-submit,
  .modal-note {
    grid-column: auto;
  }

  .authority,
  .outcomes,
  .steps,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .faq > .section-label,
  .faq-header,
  .faq-list {
    grid-column: auto;
    grid-row: auto;
  }

  .faq-header {
    position: static;
  }

  .faq-list {
    margin-top: 56px;
  }

  .split-section,
  .method-header,
  .cases-header,
  .case-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: auto;
  }

  .case-card img {
    height: 300px;
    min-height: unset;
  }

  .case-card div {
    align-self: auto;
  }

  .outcome,
  .step {
    min-height: auto;
  }

  .feature-caption,
  .feature-caption.is-shifted {
    left: 18px;
    right: 18px;
    width: auto;
    transform: none;
  }

  .contact-copy {
    position: static;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 60px;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.8vw, 52px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 54px;
    padding: 17px 18px;
  }

  .authority,
  .split-section,
  .method,
  .cases,
  .faq,
  .contact {
    padding: 72px 18px;
  }

  .outcome {
    padding: 38px 18px;
  }

  .outcome h3,
  .step h3,
  .case-card h3 {
    margin-top: 34px;
  }

  .case-card {
    min-height: auto;
  }

  .case-card img {
    min-height: 260px;
  }

  .case-card div {
    align-self: auto;
    padding: clamp(24px, 5vw, 40px);
  }

  .faq-item summary {
    grid-template-columns: 34px 1fr 14px;
    gap: 14px;
    padding: 24px 0 18px;
  }

  .faq-content p {
    margin: 0 0 28px 48px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    left: auto;
    right: 10px;
    bottom: 10px;
    width: auto;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .whatsapp-modal {
    align-items: start;
    padding: 14px;
  }

  .whatsapp-modal__panel {
    padding: 50px 22px 28px;
  }

  .whatsapp-modal h2 {
    font-size: 31px;
  }

  .whatsapp-modal__panel > p {
    margin-top: 16px;
    font-size: 15px;
  }

  .whatsapp-modal__form label,
  .whatsapp-modal__form input,
  .whatsapp-modal__form select,
  .modal-submit {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-blur {
    display: none;
  }
}
