:root {
  --brand: #eeee04;
  --brand-soft: rgba(238, 238, 4, 0.18);
  --brand-line: rgba(238, 238, 4, 0.34);
  --black: #050604;
  --black-2: #090a07;
  --surface: #10110f;
  --surface-2: #171916;
  --white: #ffffff;
  --paper: #f7f7f2;
  --gray-100: #eceee8;
  --gray-300: #c9cdc3;
  --gray-500: #8e9588;
  --gray-700: #41463e;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(5, 6, 4, 0.12);
  --shadow-brand: 0 0 120px rgba(238, 238, 4, 0.2);
  --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 8px;
  --section-y: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 238, 4, 0.08), transparent 30rem),
    var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

section,
footer {
  scroll-margin-top: 86px;
}

footer {
  scroll-margin-top: 0;
}

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

img {
  height: auto;
}

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

button,
summary {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

::selection {
  color: var(--black);
  background: var(--brand);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--brand);
  border-radius: var(--radius);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 18px 34px;
  color: var(--white);
  background: rgba(5, 6, 4, 0.9);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: transform 220ms ease, opacity 220ms ease, background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 4, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.site-header.is-at-top {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-110%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-height: 44px;
}

.brand img {
  width: 190px;
  height: auto;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--brand);
}

.icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  padding: 132px 0 0;
}

.hero-glow {
  position: absolute;
  inset: 70px 0 auto;
  z-index: -2;
  display: flex;
  justify-content: center;
  height: 620px;
  pointer-events: none;
}

.hero-glow::before {
  content: "";
  position: absolute;
  top: 8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(238, 238, 4, 0.26), rgba(238, 238, 4, 0.08) 40%, transparent 68%);
  filter: blur(18px);
}

.hero-glow img {
  position: relative;
  width: 780px;
  height: 780px;
  object-fit: contain;
  opacity: 0.28;
  filter: drop-shadow(0 0 86px rgba(238, 238, 4, 0.25));
  transform: translateY(-20px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100dvh - 132px);
  padding-bottom: 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(238, 238, 4, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #656900;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero h1 {
  max-width: 1040px;
  font-size: 3.35rem;
  font-weight: 600;
  line-height: 1.04;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-copy {
  max-width: 62ch;
  margin: 22px auto 0;
  color: var(--gray-100);
  font-size: 1rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.desktop-line-break {
  display: none;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--black);
  background: var(--brand);
  box-shadow: 0 0 52px rgba(238, 238, 4, 0.13);
}

.btn-primary:hover {
  box-shadow: 0 0 72px rgba(238, 238, 4, 0.18);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-dark:hover {
  color: var(--brand);
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 940px);
  margin-top: auto;
  color: var(--gray-300);
}

.audience-strip span,
.audience-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
}

.audience-strip span {
  color: var(--brand);
  font-weight: 500;
  text-transform: uppercase;
}

.audience-strip strong {
  color: var(--gray-100);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

@media (min-width: 861px) {
  .desktop-line-break {
    display: inline;
  }

  .hero-actions {
    margin-top: 44px;
  }

  .audience-strip {
    margin-top: 42px;
  }
}

.purpose,
.benefits,
.how,
.about,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.purpose,
.how,
.explain,
.about {
  padding: var(--section-y) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: start;
}

@media (min-width: 861px) {
  .split-section > :last-child {
    padding-top: 32px;
  }
}

.split-section h2,
.section-heading h2,
.centered-heading h2,
.partners h2,
.explain h2,
.about h2,
.final-cta h2 {
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 600;
}

.purpose-copy p,
.split-section > p,
.section-heading p:not(.eyebrow),
.partners p:not(.eyebrow),
.explain p:not(.eyebrow),
.about p:not(.eyebrow),
.final-cta p {
  max-width: 62ch;
  margin: 0;
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.66;
  text-wrap: pretty;
}

.purpose-copy {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.process-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 88px;
}

.process-preview article {
  position: relative;
}

.process-preview article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -34px;
  width: calc(100% - 46px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.round-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--black);
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 52px rgba(238, 238, 4, 0.22);
}

.round-icon .icon {
  width: 30px;
  height: 30px;
}

.process-preview h3,
.steps h3,
.service-grid h3 {
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 600;
}

.process-preview p,
.steps p,
.service-grid p,
.service-grid small {
  margin: 12px 0 0;
  color: var(--gray-300);
  text-wrap: pretty;
}

.benefits {
  padding: 112px 0 120px;
}

.centered-heading {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.centered-heading > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--gray-700);
}

.section-dark .centered-heading > p:not(.eyebrow) {
  color: var(--gray-300);
}

.benefit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
  padding-bottom: 8px;
}

.benefit-grid article {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
}

.benefit-grid .icon {
  width: 30px;
  height: 30px;
  color: var(--brand);
}

.benefit-grid p {
  margin: 34px 0 0;
  color: var(--gray-100);
  font-weight: 600;
  line-height: 1.42;
}

.services {
  padding: var(--section-y) 0;
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 16px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-inline: auto;
  color: var(--gray-700);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.service-grid article {
  display: flex;
  min-height: 356px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

.service-grid article:nth-child(2),
.service-grid article:nth-child(3) {
  background: #eeeeea;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--brand);
  border-radius: 999px;
}

.service-icon .icon {
  width: 26px;
  height: 26px;
}

.service-grid h3 {
  color: var(--black);
}

.service-grid p,
.service-grid small {
  color: var(--gray-700);
}

.service-grid small {
  display: block;
  line-height: 1.55;
}

.service-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--black);
  font-weight: 600;
}

.service-grid a::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  mask: url("assets/icons/arrow-up-right.svg") center / contain no-repeat;
  -webkit-mask: url("assets/icons/arrow-up-right.svg") center / contain no-repeat;
}

.how {
  padding-bottom: 112px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.steps article {
  min-height: 244px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  background: var(--brand);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

.explain {
  background:
    linear-gradient(90deg, rgba(238, 238, 4, 0.14), transparent 38%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.explain-grid,
.partners-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.explain-grid > div:last-child,
.about-grid > div:last-child {
  display: grid;
  gap: 18px;
}

.partners {
  padding: var(--section-y) 0;
}

.partners-grid > div:last-child {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.partners p:not(.eyebrow) {
  color: var(--gray-700);
}

.about-media {
  position: relative;
  width: min(100%, 430px);
  margin: 0;
  overflow: hidden;
  justify-self: end;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(90deg, rgba(238, 238, 4, 0.06), transparent 40%);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.06) contrast(1.02);
}

.faq {
  padding: 112px 0 126px;
}

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

.faq-list details {
  border-top: 1px solid rgba(5, 6, 4, 0.16);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(5, 6, 4, 0.16);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary .icon {
  width: 22px;
  height: 22px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 70ch;
  margin: -8px 0 28px;
  color: var(--gray-700);
}

.site-footer {
  padding: 112px 0 28px;
}

.footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: -2;
  width: 720px;
  height: 720px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(238, 238, 4, 0.18), rgba(238, 238, 4, 0.05) 40%, transparent 70%);
  filter: blur(22px);
  transform: translateX(-50%);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  font-size: 3.35rem;
}

.final-cta p {
  margin: 0 auto;
  color: var(--gray-100);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(160px, 0.7fr) minmax(240px, 0.8fr);
  gap: 64px;
  margin-top: 120px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 26px;
}

.footer-main p {
  max-width: 42ch;
  margin: 0;
  color: var(--gray-300);
}

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

.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 12px;
  color: var(--gray-100);
  font-weight: 600;
}

.footer-contact .icon {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  padding: 0 18px;
  color: var(--black);
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.38), 0 0 44px rgba(238, 238, 4, 0.18);
}

.whatsapp-float .icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.25rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 5.15rem;
  }

  .split-section h2,
  .section-heading h2,
  .centered-heading h2,
  .partners h2,
  .explain h2,
  .about h2 {
    font-size: 3.05rem;
  }
}

@media (max-width: 1060px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --section-y: 72px;
  }

  .site-header {
    min-height: 72px;
    padding: 14px 18px;
  }

  .brand,
  .brand img {
    width: 164px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 70px;
  }

  .hero-inner {
    align-items: flex-start;
    min-height: auto;
    padding-bottom: 0;
    text-align: left;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 2.65rem;
  }

  .hero-glow {
    inset: 62px -150px auto;
    height: 520px;
  }

  .hero-glow img {
    width: 620px;
    height: 620px;
  }

  .audience-strip {
    justify-content: flex-start;
    width: 100%;
    margin-top: 42px;
  }

  .audience-strip span {
    flex-basis: 100%;
    padding-left: 0;
  }

  .audience-strip strong {
    min-height: 34px;
    padding-inline: 11px;
  }

  .split-section > :last-child {
    padding-top: 0;
  }

  .split-section,
  .explain-grid,
  .partners-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .purpose-copy {
    gap: 22px;
  }

  .split-section h2,
  .section-heading h2,
  .centered-heading h2,
  .partners h2,
  .explain h2,
  .about h2,
  .final-cta h2 {
    font-size: 2.25rem;
  }

  .process-preview,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-preview {
    gap: 18px;
    margin-top: 48px;
  }

  .process-preview article {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    align-items: start;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
  }

  .process-preview article:not(:last-child)::after {
    display: none;
  }

  .process-preview h3 {
    margin-top: 0;
  }

  .process-preview p {
    grid-column: 2;
  }

  .benefits {
    min-height: auto;
    padding: 78px 0 86px;
  }

  .benefit-grid {
    margin-top: 40px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .steps article {
    display: grid;
    grid-template-columns: 46px 1fr;
    min-height: 0;
    column-gap: 16px;
    padding: 18px;
  }

  .steps span {
    grid-row: 1 / span 2;
  }

  .steps h3 {
    margin-top: 0;
  }

  .steps p {
    grid-column: 2;
    margin-top: 6px;
  }

  .about-media {
    width: 100%;
    justify-self: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 72px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  :root {
    --section-y: 64px;
  }

  section,
  footer {
    scroll-margin-top: 74px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 2.24rem;
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 34ch;
    margin: 18px 0 0;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    margin-top: 26px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-glow {
    inset: 48px -170px auto;
    height: 430px;
  }

  .hero-glow img {
    width: 540px;
    height: 540px;
    opacity: 0.22;
  }

  .audience-strip {
    margin-top: 34px;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-strip span,
  .audience-strip strong {
    min-height: 32px;
    font-size: 12px;
  }

  .audience-strip span {
    grid-column: 1 / -1;
  }

  .audience-strip strong {
    min-width: 0;
    width: auto;
    justify-content: center;
    padding-inline: 10px;
    text-align: center;
  }

  .audience-strip strong:last-child {
    grid-column: 1 / -1;
  }

  .purpose,
  .how,
  .explain,
  .about,
  .services,
  .partners {
    padding: var(--section-y) 0;
  }

  .split-section h2,
  .section-heading h2,
  .centered-heading h2,
  .partners h2,
  .explain h2,
  .about h2,
  .final-cta h2 {
    font-size: 1.78rem;
    line-height: 1.12;
  }

  .purpose-copy p,
  .split-section > p,
  .section-heading p:not(.eyebrow),
  .partners p:not(.eyebrow),
  .explain p:not(.eyebrow),
  .about p:not(.eyebrow),
  .final-cta p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .process-preview {
    margin-top: 36px;
  }

  .process-preview article {
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    padding-bottom: 18px;
  }

  .round-icon {
    width: 52px;
    height: 52px;
  }

  .round-icon .icon {
    width: 24px;
    height: 24px;
  }

  .benefits {
    padding: 66px 0 74px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .benefit-grid article {
    display: grid;
    grid-template-columns: 34px 1fr;
    min-height: 0;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .benefit-grid .icon {
    width: 26px;
    height: 26px;
  }

  .benefit-grid p {
    margin: 0;
    font-size: 0.96rem;
  }

  .section-heading {
    gap: 12px;
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    margin-inline: 0;
  }

  .service-grid {
    gap: 14px;
    margin-top: 32px;
  }

  .service-grid article {
    min-height: 0;
    padding: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon .icon {
    width: 23px;
    height: 23px;
  }

  .service-grid a {
    min-height: 44px;
    padding-top: 18px;
  }

  .steps {
    margin-top: 32px;
  }

  .steps article {
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    padding: 16px;
  }

  .steps span {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .explain-grid > div:last-child,
  .about-grid > div:last-child,
  .partners-grid > div:last-child {
    gap: 14px;
  }

  .faq {
    padding: 66px 0 78px;
  }

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

  .faq-list summary {
    min-height: 72px;
    gap: 18px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .faq-list p {
    margin-bottom: 24px;
  }

  .site-footer {
    padding: 70px 0 24px;
  }

  .final-cta {
    justify-items: start;
    gap: 18px;
    text-align: left;
  }

  .footer-main {
    gap: 30px;
    margin-top: 58px;
    padding-top: 36px;
  }

  .footer-logo {
    width: 176px;
    margin-bottom: 20px;
  }

  .footer-bottom {
    gap: 12px;
    margin-top: 44px;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    min-height: 56px;
    padding: 0;
  }

  .whatsapp-label {
    display: none;
  }
}

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