:root {
  --qi-yellow: #ffb81c;
  --qi-red: #ec1b2f;
  --qi-purple: #470a68;
  --qi-purple-dark: #2c0641;
  --qi-orange: #fa4616;
  --qi-magenta: #aa0061;
  --white: #ffffff;
  --paper: #fffdf9;
  --cream: #fff6e5;
  --ink: #271f29;
  --ink-soft: #615968;
  --line: rgb(71 10 104 / 0.12);
  --shadow-soft: 0 20px 60px rgb(44 6 65 / 0.12);
  --shadow-strong: 0 28px 80px rgb(25 2 38 / 0.26);
  --font-brand: "Gilroy", "Gilroy Medium", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-brand);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--qi-yellow);
  color: var(--qi-purple-dark);
}

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

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

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

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--qi-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--qi-purple);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
}

.site-header-inner {
  display: grid;
  min-height: 6rem;
  grid-template-columns: 190px 1fr auto;
  gap: 2rem;
  align-items: center;
}

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

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgb(20 0 32 / 0.26));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2.7vw, 2.5rem);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--qi-yellow);
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.55rem;
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
  min-height: 2.75rem;
  padding: 0.8rem 1.25rem;
  font-size: 0.82rem;
}

.button-yellow {
  background: var(--qi-yellow);
  color: var(--qi-purple-dark);
  box-shadow: 0 12px 30px rgb(255 184 28 / 0.24);
}

.button-yellow:hover {
  background: #ffc541;
  box-shadow: 0 16px 36px rgb(255 184 28 / 0.3);
}

.button-red {
  background: var(--qi-red);
  color: var(--white);
  box-shadow: 0 14px 34px rgb(236 27 47 / 0.28);
}

.button-red:hover {
  background: #d90f26;
  box-shadow: 0 18px 40px rgb(236 27 47 / 0.34);
}

.button-purple {
  background: var(--qi-purple);
  color: var(--white);
  box-shadow: 0 14px 34px rgb(71 10 104 / 0.24);
}

.button-purple:hover {
  background: var(--qi-magenta);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0.48rem 0.78rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-yellow {
  background: var(--qi-yellow);
  color: var(--qi-purple-dark);
}

.eyebrow-red {
  background: rgb(236 27 47 / 0.1);
  color: var(--qi-red);
}

.eyebrow-purple {
  background: rgb(71 10 104 / 0.1);
  color: var(--qi-purple);
}

.shape {
  position: absolute;
  pointer-events: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  overflow: clip;
  background: var(--qi-purple-dark);
  color: var(--white);
  isolation: isolate;
  padding: 9rem 0 5.5rem;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 45%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(39 3 58 / 0.96) 0%, rgb(71 10 104 / 0.88) 46%, rgb(71 10 104 / 0.56) 100%),
    linear-gradient(0deg, rgb(17 0 25 / 0.5), transparent 55%);
}

.shape-ring {
  right: -6.5rem;
  bottom: -8rem;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border: 2.2rem solid var(--qi-yellow);
  border-right-color: var(--qi-orange);
  border-bottom-color: var(--qi-red);
  border-radius: 50%;
  opacity: 0.82;
  transform: rotate(22deg);
}

.shape-dot {
  top: 18%;
  left: 49%;
  z-index: -1;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--qi-yellow);
  box-shadow: 2rem 1.4rem 0 -0.26rem var(--qi-orange), 3.8rem -0.7rem 0 -0.4rem var(--qi-red);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 1rem 0 1.1rem;
  font-size: clamp(3.6rem, 6.8vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero-copy h1 span {
  display: block;
  color: var(--qi-yellow);
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.75rem;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.85rem 0;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  color: var(--qi-yellow);
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-highlights {
  display: flex;
  max-width: 650px;
  gap: 0;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 0.2rem;
  border-left: 1px solid rgb(255 255 255 / 0.3);
  padding: 0.1rem clamp(0.75rem, 2vw, 1.4rem);
}

.hero-highlights li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-highlights strong {
  color: var(--qi-yellow);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.hero-highlights span {
  color: rgb(255 255 255 / 0.75);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust-strip {
  background: linear-gradient(120deg, #19021f, #321039);
  padding: 1.5rem 0;
}

.trust-strip ul {
  display: grid;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.trust-strip li {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  padding: 1.5rem clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid var(--line);
}

.trust-strip li:first-child {
  border-left: 0;
}

.trust-strip strong {
  color: var(--qi-red);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
}

.trust-strip span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 0.97);
  color: var(--ink);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.form-card-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.form-card-heading h2 {
  margin: 0.25rem 0 0;
  color: var(--qi-purple);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.form-card-heading p,
.form-note,
.form-noscript {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.5;
}

#raiz-form {
  width: 100%;
  min-height: 290px;
}

#raiz-form iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

#raiz-form :where(input, select, textarea) {
  max-width: 100%;
}

.form-note {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  text-align: center;
}

.form-noscript {
  border-radius: var(--radius-sm);
  background: var(--cream);
  padding: 1rem;
}

.form-noscript a {
  color: var(--qi-purple);
  font-weight: 800;
  text-decoration: underline;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.photo-composition {
  position: relative;
  min-height: 590px;
}

.photo-composition figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-soft);
}

.photo-composition img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main {
  inset: 0 15% 13% 0;
  border-radius: 10rem 1.75rem 1.75rem 1.75rem;
}

.photo-main img {
  object-position: center;
}

.photo-accent {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  border: 0.65rem solid var(--paper);
  border-radius: 1.5rem 1.5rem 6rem 1.5rem;
}

.photo-seal {
  position: absolute;
  top: 1.7rem;
  right: 5%;
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  align-content: center;
  border-radius: 50%;
  background: var(--qi-yellow);
  color: var(--qi-purple-dark);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(7deg);
}

.photo-seal strong {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy h2,
.section-heading h2,
.difference-copy h2,
.final-cta h2 {
  margin: 1rem 0 1.15rem;
  color: var(--qi-purple);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.intro-copy > p,
.section-heading > p,
.difference-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 500;
  line-height: 1.72;
}

.intro-copy > p + p {
  margin-top: 1rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 1.6rem;
  padding-left: 2.1rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  background: var(--qi-yellow);
  color: var(--qi-purple);
  font-size: 0.75rem;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
}

.section-heading-centered {
  display: grid;
  justify-items: center;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading-centered > p {
  max-width: 660px;
}

.segments-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.segments-section::before,
.segments-section::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.segments-section::before {
  top: 7rem;
  left: -3rem;
  width: 8rem;
  height: 8rem;
  border: 1.4rem solid rgb(250 70 22 / 0.12);
}

.segments-section::after {
  right: -1.5rem;
  bottom: 4rem;
  width: 5rem;
  height: 5rem;
  background: rgb(170 0 97 / 0.09);
}

.segment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.image-card {
  overflow: hidden;
  border: 1px solid rgb(71 10 104 / 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 44px rgb(71 10 104 / 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgb(71 10 104 / 0.14);
}

.image-card figure {
  position: relative;
  height: 260px;
  margin: 0;
  overflow: hidden;
}

.image-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.image-card:hover figure img {
  transform: scale(1.035);
}

.segment-card:nth-child(1) figure img {
  object-position: center 25%;
}

.segment-card:nth-child(3) figure img {
  object-position: center;
}

.segment-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border-radius: var(--radius-pill);
  padding: 0.52rem 0.78rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.segment-tag-yellow {
  background: var(--qi-yellow);
  color: var(--qi-purple-dark);
}

.segment-tag-orange {
  background: var(--qi-orange);
  color: var(--white);
}

.segment-tag-red {
  background: var(--qi-red);
  color: var(--white);
}

.image-card-content {
  padding: 1.6rem 1.6rem 1.85rem;
}

.image-card-content h3,
.unit-card h3 {
  margin: 0;
  color: var(--qi-purple);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.image-card-content p,
.unit-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.62;
}

.difference-section {
  overflow: hidden;
  background: var(--qi-purple);
  color: var(--white);
}

.difference-shape {
  top: -7rem;
  right: -3rem;
  width: 22rem;
  height: 22rem;
  border: 2rem solid rgb(255 184 28 / 0.16);
  border-radius: 50%;
}

.difference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.difference-copy h2 {
  color: var(--white);
}

.difference-copy > p {
  color: rgb(255 255 255 / 0.78);
}

.difference-button {
  margin-top: 1.75rem;
}

.difference-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  list-style: none;
}

.difference-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) 1.2fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}

.difference-list strong {
  color: var(--qi-yellow);
  font-size: 1rem;
  font-weight: 900;
}

.difference-list span {
  color: rgb(255 255 255 / 0.8);
  font-size: 0.88rem;
  line-height: 1.45;
}

.difference-photos {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
}

.difference-photos figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-strong);
}

.difference-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.difference-photo-main {
  inset: 0;
  border-radius: 1.5rem 1.5rem 6rem 1.5rem;
}

.difference-photo-main img {
  object-position: center 42%;
}

.reasons-section {
  background: var(--white);
}

.reasons-section .section-heading {
  max-width: 880px;
  margin-bottom: 2.6rem;
}

.reasons-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reasons-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 0.35rem solid var(--qi-yellow);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--cream));
  padding: 1.35rem 1.15rem 1.5rem;
  box-shadow: 0 14px 36px rgb(71 10 104 / 0.07);
}

.reasons-grid h3 {
  margin: 0;
  color: var(--qi-purple);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.reasons-grid p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.62;
}

.units-section {
  background: var(--paper);
}

.units-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  justify-content: center;
}

.unit-card {
  width: calc(25% - 0.87rem);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 36px rgb(71 10 104 / 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgb(71 10 104 / 0.13);
}

.unit-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.unit-card > div {
  padding: 1.25rem 1.25rem 1.45rem;
}

.unit-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--qi-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-card h3 {
  font-size: 1.45rem;
}

.unit-card p {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.units-action {
  display: flex;
  max-width: 760px;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.units-action p {
  margin: 0;
  color: var(--qi-purple);
  font-size: 1.08rem;
  font-weight: 850;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background: var(--qi-purple-dark);
  color: var(--white);
  isolation: isolate;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
}

.journey-image,
.journey-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.journey-image {
  object-fit: cover;
  object-position: center 43%;
}

.journey-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgb(44 6 65 / 0.98) 0%, rgb(71 10 104 / 0.9) 52%, rgb(71 10 104 / 0.63) 100%);
}

.journey-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.journey-heading {
  min-width: 0;
}

.journey-heading h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(3rem, 4.35vw, 4rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.journey-steps {
  display: grid;
  grid-column: 2;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.26);
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.26);
}

.journey-steps li > span {
  color: var(--qi-yellow);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.journey-steps strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.journey-steps p {
  margin: 0.35rem 0 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
}

.journey-content > .button {
  grid-column: 2;
  width: fit-content;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 2rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 5rem;
  cursor: pointer;
  grid-template-columns: 1fr 2rem;
  gap: 1rem;
  align-items: center;
  color: var(--qi-purple);
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--qi-red);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  margin: -0.25rem 3rem 1.4rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--qi-yellow);
  padding: clamp(3.8rem, 7vw, 6rem) 0;
}

.final-shape {
  top: -7rem;
  right: 5%;
  width: 18rem;
  height: 18rem;
  border: 2rem solid rgb(236 27 47 / 0.16);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0.8rem;
  color: var(--qi-purple-dark);
}

.final-cta p {
  max-width: 720px;
  margin: 0;
  color: rgb(28 2 41 / 0.82);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.55;
}

.final-cta .eyebrow-purple {
  background: var(--white);
}

.site-footer {
  background: #1c0229;
  color: var(--white);
  padding: 2.25rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 2rem;
  align-items: center;
}

.brand-footer {
  width: 160px;
}

.footer-units {
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
}

.footer-units strong,
.footer-contact span {
  color: var(--qi-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-units p {
  margin: 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.footer-contact a {
  font-size: 1rem;
  font-weight: 900;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .site-header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 1.25rem;
  }

  .brand {
    width: 170px;
  }

  .main-nav {
    gap: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 6vw, 5.4rem);
  }

  .unit-card {
    width: calc(33.333% - 0.77rem);
  }

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

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

  body {
    padding-bottom: calc(5.6rem + env(safe-area-inset-bottom));
  }

  .site-header,
  main,
  .site-footer {
    text-align: center;
  }

  .skip-link {
    left: 50%;
    text-align: center;
    transform: translate(-50%, -160%);
  }

  .skip-link:focus {
    transform: translate(-50%, 0);
  }

  .wrap {
    width: min(720px, calc(100% - 2rem));
  }

  .site-header-inner {
    min-height: 5rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand {
    width: 155px;
    justify-self: center;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 7.5rem 0 4.5rem;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgb(44 6 65 / 0.96) 0%, rgb(71 10 104 / 0.88) 58%, rgb(44 6 65 / 0.78) 100%);
  }

  .shape-ring {
    width: 16rem;
    height: 16rem;
    border-width: 1.5rem;
  }

  .hero-grid,
  .intro-grid,
  .difference-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 670px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    margin-inline: auto;
  }

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

  .hero-copy > p {
    margin-inline: auto;
  }

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

  .trust-strip li:nth-child(odd) {
    border-left: 0;
  }

  .trust-strip li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .form-card {
    max-width: 620px;
    margin-inline: auto;
  }

  .form-card-heading {
    justify-items: center;
    text-align: center;
  }

  .photo-composition {
    width: min(100%, 620px);
    min-height: 610px;
    margin-inline: auto;
  }

  .intro-copy {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }

  .intro-copy .eyebrow {
    margin-inline: auto;
  }

  .check-list {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }

  .check-list li {
    padding-top: 1.9rem;
    padding-left: 0;
  }

  .check-list li::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .segment-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.625rem);
    justify-self: center;
  }

  .segment-tag {
    left: 50%;
    white-space: nowrap;
    text-align: center;
    transform: translateX(-50%);
  }

  .difference-copy {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }

  .difference-copy .eyebrow {
    margin-inline: auto;
  }

  .difference-list {
    text-align: center;
  }

  .difference-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    justify-items: center;
  }

  .difference-photos {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .difference-button {
    margin-inline: auto;
  }

  .reasons-section .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .reasons-section .section-heading .eyebrow {
    margin-inline: auto;
  }

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

  .unit-card {
    width: calc(50% - 0.575rem);
  }

  .image-card-content,
  .unit-card > div {
    text-align: center;
  }

  .journey-content {
    grid-template-columns: 1fr;
  }

  .journey-heading {
    max-width: 580px;
    text-align: center;
    justify-self: center;
  }

  .journey-heading .eyebrow {
    margin-inline: auto;
  }

  .journey-steps,
  .journey-content > .button {
    grid-column: 1;
  }

  .journey-steps li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .journey-content > .button {
    justify-self: center;
  }

  .faq-layout .section-heading {
    position: static;
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }

  .faq-layout .section-heading .eyebrow {
    margin-inline: auto;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    justify-items: center;
  }

  .brand-footer {
    width: 150px;
  }

  .footer-contact {
    justify-items: center;
    text-align: center;
  }

  .footer-contact span,
  .footer-contact a {
    text-align: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0.85rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: 0.85rem;
    z-index: 100;
    display: flex;
    min-height: 3.75rem;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(255 255 255 / 0.72);
    border-radius: var(--radius-pill);
    background: var(--qi-red);
    color: var(--white);
    padding: 0.65rem 1.2rem;
    box-shadow: 0 16px 42px rgb(44 6 65 / 0.35);
    font-size: 0.95rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-sticky-cta strong {
    position: static;
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border-radius: 50%;
    background: var(--qi-yellow);
    color: var(--qi-purple-dark);
    font-size: 1.2rem;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4.6rem 0;
  }

  .wrap {
    width: min(100% - 1.25rem, 540px);
  }

  .site-header-inner {
    min-height: 4.6rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: center;
  }

  .brand {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 6.4rem 0 3.6rem;
  }

  .shape-dot {
    display: none;
  }

  .hero-copy h1 {
    margin-top: 0.85rem;
    font-size: clamp(2.8rem, 14vw, 4.3rem);
    line-height: 0.94;
  }

  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .trust-strip {
    padding: 1rem 0;
  }

  .trust-strip ul {
    grid-template-columns: 1fr;
  }

  .trust-strip li,
  .trust-strip li:nth-child(odd) {
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: center;
  }

  .trust-strip li:first-child {
    border-top: 0;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 0.5rem;
  }

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

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

  .hero-highlights {
    margin-top: 1.8rem;
  }

  .hero-highlights li {
    padding-inline: 0.65rem;
  }

  .hero-highlights strong {
    font-size: 1.5rem;
  }

  .hero-highlights span {
    font-size: 0.66rem;
  }

  .form-card {
    border-radius: 1.5rem;
    padding: 1.15rem;
  }

  #raiz-form {
    min-height: 330px;
  }

  .intro-grid {
    gap: 2.75rem;
  }

  .photo-composition {
    min-height: 420px;
  }

  .photo-main {
    inset: 0 10% 12% 0;
    border-radius: 6rem 1.25rem 1.25rem 1.25rem;
  }

  .photo-accent {
    width: 52%;
    height: 48%;
    border-width: 0.4rem;
    border-radius: 1rem 1rem 4rem 1rem;
  }

  .photo-seal {
    top: 1rem;
    right: 0;
    width: 5rem;
    height: 5rem;
    font-size: 1rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .difference-copy h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .section-heading-centered {
    margin-bottom: 2rem;
  }

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

  .segment-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .image-card figure {
    height: 250px;
  }

  .difference-grid {
    gap: 2.8rem;
  }

  .difference-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .difference-photos {
    aspect-ratio: 4 / 3;
  }

  .difference-photo-main {
    border-radius: 1rem 1rem 4rem 1rem;
  }

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

  .reasons-grid article {
    padding: 1.4rem;
    text-align: center;
  }

  .unit-card {
    width: 100%;
  }

  .unit-card > img {
    height: 225px;
  }

  .units-action {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .units-action .button {
    width: 100%;
  }

  .journey-section {
    padding: 4.6rem 0;
  }

  .journey-image {
    object-position: 62% center;
  }

  .journey-overlay {
    background: rgb(44 6 65 / 0.9);
  }

  .journey-content > .button {
    width: 100%;
  }

  .faq-layout {
    gap: 2rem;
  }

  .faq-list summary {
    position: relative;
    display: flex;
    min-height: 4.6rem;
    justify-content: center;
    padding-inline: 2.75rem;
    font-size: 0.98rem;
    text-align: center;
  }

  .faq-list summary span {
    position: absolute;
    right: 0;
  }

  .faq-list details p {
    margin-right: 0;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 1.8rem;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .hero-highlights strong {
    font-size: 1.3rem;
  }

  .hero-highlights span {
    font-size: 0.61rem;
  }

  .photo-composition {
    min-height: 360px;
  }

  .image-card figure,
  .unit-card > img {
    height: 215px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
