:root {
  --bg: #050505;
  --panel: #111113;
  --panel-2: #17171a;
  --text: #f7f7f8;
  --muted: #a1a1aa;
  --line: #2b2b32;
  --red: #ff214f;
  --red-soft: rgba(255, 33, 79, .14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 33, 79, .16), transparent 34rem),
    linear-gradient(180deg, #08080a, var(--bg) 34rem);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}

h1 span {
  display: block;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.12;
}

p,
li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-nav {
  width: min(1180px, calc(100% - 28px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  position: sticky;
  top: 10px;
  z-index: 20;
  margin: 10px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(8, 8, 10, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .32);
}

.nav-brand {
  color: white;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav nav a {
  color: #c9c9cf;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav nav a:hover {
  color: white;
}

.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  min-height: calc(92vh - 82px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}

.hero-direct {
  width: min(1180px, 100%);
  min-height: calc(88vh - 82px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 88px;
  margin: 0 auto;
  text-align: left;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-kicker {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 33, 79, .36);
  border-radius: 999px;
  background: rgba(255, 33, 79, .1);
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-direct h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(38px, 4.05vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-align: left;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0;
  color: #d8d8df;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 4px;
}

.hero-actions span {
  color: #c8c8cf;
  font-size: 14px;
  font-weight: 800;
}

.hero-main-button {
  min-height: 56px;
  padding-inline: 30px;
  border-radius: 12px;
  font-size: 14px;
}

.hero-photo {
  width: min(330px, 100%);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: #111113;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: center;
}

.vsl {
  width: min(680px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 33, 79, .34);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 33, 79, .14), transparent 45%),
    #0d0d10;
  color: #56565d;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 950;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(255, 33, 79, .28);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin: 38px 0 16px;
}

.section-cta .button {
  min-width: min(360px, 100%);
  min-height: 54px;
  padding: 0 34px;
  border-radius: 12px;
  font-size: 15px;
}

.eyebrow {
  display: none;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-head.centered {
  justify-items: center;
  text-align: center;
}

.section-head.centered h2 {
  max-width: 1040px;
  text-transform: uppercase;
}

.section-head.centered p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
}

.marquee {
  overflow: hidden;
  margin-inline: calc((100vw - min(1120px, calc(100vw - 32px))) / -2);
  padding: 0 0 6px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: scroll 26s linear infinite;
}

.reverse .marquee-track {
  animation-direction: reverse;
}

.marquee img {
  width: 270px;
  height: 176px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.cases-whatsapp .marquee-track {
  animation-duration: 42s;
}

.cases-whatsapp img {
  width: auto;
  height: 320px;
  max-width: 430px;
  object-fit: contain;
  background: #0d0d10;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.quote-grid,
.fit-grid {
  display: grid;
  gap: 14px;
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-flow article,
.members-area,
.fit-grid article,
.price-card,
.about,
.whatsapp,
.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.flip-card {
  min-height: 118px;
  display: block;
  cursor: pointer;
  padding: 0;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  perspective: 1000px;
}

.flip-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 18px;
}

.flip-inner {
  min-height: inherit;
  display: block;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 520ms ease;
}

.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  color: #ececef;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  backface-visibility: hidden;
}

.flip-back {
  align-items: center;
  border-color: rgba(255, 33, 79, .42);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 33, 79, .18), transparent 13rem),
    linear-gradient(180deg, #17171a, #0e0e10);
  color: white;
  transform: rotateY(180deg);
}

.center-copy {
  max-width: 780px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 16px;
}

.pain-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.proof-section {
  padding-block: 44px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.case-card:hover {
  border-color: rgba(255, 33, 79, .42);
  transform: translateY(-4px);
}

.case-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111113;
}

.case-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 8, .16), rgba(7, 7, 8, .44));
}

.case-card:hover .case-image img {
  transform: scale(1.04);
}

.case-image iframe {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.case-card.is-playing .case-image::after,
.case-card.is-playing .case-play {
  display: none;
}

.case-card.is-playing .case-image img {
  display: none;
}

.case-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.case-card:hover .case-play {
  background: #ff315a;
  transform: translate(-50%, -50%) scale(1.08);
}

.case-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.case-copy strong {
  color: var(--red);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.case-copy span {
  color: #aaa9b1;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.42;
}

.process-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-flow article {
  min-height: 190px;
  padding: 16px;
  position: relative;
  opacity: .38;
  transform: translateY(8px);
  background:
    linear-gradient(180deg, rgba(255, 33, 79, .04), transparent),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.process-flow article:not(:last-child)::after {
  content: "";
  width: 22px;
  height: 2px;
  position: absolute;
  top: 58px;
  right: -17px;
  background: rgba(255, 33, 79, .3);
  z-index: 2;
  transition: background 260ms ease;
}

.process-flow article:not(:last-child)::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 54px;
  right: -18px;
  border-top: 2px solid rgba(255, 33, 79, .3);
  border-right: 2px solid rgba(255, 33, 79, .3);
  transform: rotate(45deg);
  z-index: 3;
  transition: border-color 260ms ease;
}

.process-flow article.is-active,
.process-flow article.is-past {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 33, 79, .54);
}

.process-flow article.is-active {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 33, 79, .22), transparent 12rem),
    linear-gradient(180deg, rgba(255, 33, 79, .1), transparent),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 0 0 1px rgba(255, 33, 79, .08), 0 28px 60px rgba(255, 33, 79, .13);
}

.process-flow article.is-past:not(:last-child)::after,
.process-flow article.is-active:not(:last-child)::after {
  background: var(--red);
}

.process-flow article.is-past:not(:last-child)::before,
.process-flow article.is-active:not(:last-child)::before {
  border-color: var(--red);
}

.process-flow span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 950;
  transition: background 260ms ease, color 260ms ease;
}

.process-flow article.is-active span,
.process-flow article.is-past span {
  background: var(--red);
  color: white;
}

.process-flow h3 {
  color: white;
  font-size: 16px;
}

.process-flow p {
  font-size: 13px;
}

.curriculum-section {
  margin-inline: calc((100vw - min(1120px, calc(100vw - 32px))) / -2);
  padding-inline: max(16px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 33, 79, .11), transparent 34rem),
    linear-gradient(180deg, rgba(255, 33, 79, .03), transparent 18rem);
}

.fit-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.members-area {
  max-width: 1120px;
  overflow: hidden;
  margin: 30px auto 38px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: #0d0d10;
}

.members-area img {
  width: 100%;
  display: block;
  object-fit: contain;
  opacity: .86;
}

.modules {
  max-width: 840px;
  margin: 0 auto;
}

.modules details {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.modules details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.modules summary {
  min-height: 68px;
  display: grid;
  grid-template-columns: 38px 1fr 22px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: white;
  font-weight: 950;
  list-style: none;
}

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

.modules summary::after {
  content: "⌄";
  color: #d8d8d2;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}

.modules details[open] summary::after {
  transform: rotate(180deg);
}

.module-icon {
  color: var(--red);
  font-size: 23px;
}

.modules summary strong {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.035em;
}

.modules details > p {
  max-width: 920px;
  margin: -4px 0 26px 52px;
  color: #c9c6ba;
  font-size: 16px;
  line-height: 1.45;
}

.modules ul,
.price-card ul,
.fit-grid ul {
  margin: 0;
  padding: 0 20px 18px 38px;
}

.modules ul {
  display: grid;
  margin: 0 0 34px 52px;
  padding: 0;
  list-style: none;
}

.modules li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #d8d6cf;
  font-size: 16px;
}

.modules li::before {
  content: "▷";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 10px;
}

.extras-title {
  max-width: 840px;
  margin: 48px auto 22px;
  color: white;
  font-size: clamp(22px, 2.5vw, 30px);
}

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

.included-grid article {
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 33, 79, .24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 33, 79, .18), transparent 10rem),
    rgba(32, 8, 14, .74);
  text-align: center;
}

.included-grid span {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.included-grid h3 {
  max-width: 220px;
  margin: 12px auto 0;
  color: #d9d7ce;
  font-size: 15px;
  line-height: 1.18;
}

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

.fit-grid article {
  padding: 22px;
}

.fit-grid h3 {
  color: white;
  font-size: 22px;
}

.fit-grid ul {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #d8d6cf;
  font-size: 15px;
  line-height: 1.42;
}

.fit-grid li::before {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.fit-grid article:first-child li::before {
  content: "✓";
  background: rgba(37, 211, 102, .16);
  border: 1px solid rgba(37, 211, 102, .58);
  color: #25d366;
}

.fit-grid article:last-child li::before {
  content: "×";
  background: rgba(255, 33, 79, .16);
  border: 1px solid rgba(255, 33, 79, .6);
  color: var(--red);
  font-size: 18px;
}

.offer {
  padding-top: 68px;
  border-bottom: 0;
}

.price-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 54px 56px 48px;
  border: 2px solid var(--red);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 33, 79, .16), transparent 22rem),
    linear-gradient(180deg, rgba(17, 17, 19, .94), rgba(5, 5, 5, .94));
  text-align: center;
  box-shadow: 0 32px 120px rgba(255, 33, 79, .16);
}

.price-card h3 {
  margin-bottom: 18px;
  color: #dedee3;
  font-size: 18px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.old {
  margin-bottom: 2px;
  color: #a5a5ad;
  font-size: 18px;
  text-decoration: line-through;
}

.installments {
  margin-bottom: 6px;
  color: #d8d8de;
  font-size: 22px;
  line-height: 1.1;
}

.cash {
  margin-bottom: 34px;
  color: var(--red);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
}

.cash span {
  color: var(--red);
  font-size: 1em;
  letter-spacing: inherit;
}

.price-card ul {
  display: grid;
  gap: 13px;
  width: min(100%, 430px);
  margin: 0 auto 34px;
  text-align: left;
  list-style: none;
  padding: 0;
}

.price-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  color: white;
  font-size: 17px;
  font-weight: 650;
}

.price-card li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.price-card .button {
  width: min(100%, 430px);
  margin-bottom: 52px;
}

.price-steps {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.price-steps h4 {
  margin: 0 0 28px;
  color: white;
  font-size: 22px;
}

.price-steps > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-steps article {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.price-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 21px;
  font-weight: 950;
}

.price-steps p {
  margin: 0;
  color: #dedee3;
  font-size: 16px;
  font-weight: 650;
}

.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 28px;
}

.about img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  object-fit: cover;
}

.about h2 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.035em;
}

.about h3 {
  margin: 6px 0 18px;
  color: var(--red);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.15;
}

.about p:not(.eyebrow) {
  max-width: 900px;
  color: #aaa9b1;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.whatsapp,
.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.whatsapp {
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 88% 50%, rgba(37, 211, 102, .14), transparent 16rem),
    linear-gradient(180deg, #17171a, #101013);
  text-align: left;
}

.whatsapp p,
.final-cta p {
  font-size: 17px;
}

.whatsapp-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 28px;
  align-items: center;
  padding: 38px 44px;
  color: inherit;
  text-decoration: none;
}

.whatsapp-card strong {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.whatsapp-card em {
  display: block;
  color: #aaa9b1;
  font-size: clamp(17px, 1.8vw, 24px);
  font-style: normal;
  line-height: 1.25;
}

.whatsapp-icon {
  width: 112px;
  height: 112px;
  justify-self: end;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .34));
}

.whatsapp-icon path:first-child {
  fill: #25d366;
  stroke: #e8e8e8;
  stroke-width: 4;
}

.whatsapp-icon path:last-child {
  fill: white;
}

.final-cta .button {
  min-width: min(460px, 100%);
  min-height: 58px;
  margin: 6px 0 10px;
  padding: 0 42px;
  border-radius: 12px;
  font-size: 16px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0;
}

.faq summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 18px 58px 18px 20px;
  color: white;
  font-size: 16px;
  font-weight: 850;
}

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

.faq summary::marker {
  content: "";
}

.faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 13px;
  height: 13px;
  border-right: 3px solid #8f8f94;
  border-bottom: 3px solid #8f8f94;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq details[open] summary::after {
  border-color: var(--red);
  transform: translateY(-30%) rotate(225deg);
}

.faq p {
  margin: 0;
  padding: 0 20px 16px;
}

.final-cta {
  padding-bottom: 72px;
  border-bottom: 0;
}

.site-footer {
  display: grid;
  place-items: center;
  margin-top: 34px;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #74747c;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}

.site-footer .footer-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}

.site-footer .footer-line span {
  display: inline;
}

.site-footer strong {
  color: var(--red);
  font-weight: inherit;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 0;
  }

  .site-nav {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .nav-brand {
    text-align: center;
  }

  .site-nav nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-cta {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  section {
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-direct {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: start;
    padding-top: 46px;
    text-align: center;
  }

  .hero-copy,
  .hero-direct h1 {
    justify-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .quote-grid,
  .case-grid,
  .process-flow,
  .modules,
  .included-grid,
  .fit-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .process-flow article {
    min-height: auto;
    opacity: 1;
    transform: none;
  }

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

  .about {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 29px;
  }

  .hero-direct h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions span {
    width: 100%;
    text-align: center;
  }

  .hero-photo {
    width: min(290px, 78vw);
    justify-self: center;
  }

  .button {
    width: 100%;
    padding: 0 18px;
    font-size: 13px;
  }

  .marquee img {
    width: 250px;
    height: 164px;
  }

  .cases-whatsapp img {
    width: auto;
    height: 260px;
    max-width: 340px;
  }

  .price-card,
  .whatsapp {
    padding: 26px;
  }

  .whatsapp {
    padding: 0;
  }

  .whatsapp-card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 24px;
    text-align: center;
  }

  .whatsapp-icon {
    width: 82px;
    height: 82px;
    justify-self: center;
  }

  .cash {
    font-size: 46px;
  }

  .price-steps > div {
    grid-template-columns: 1fr;
  }
}
