:root {
  color-scheme: dark;
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --panel: #17171b;
  --panel-strong: #1d1d22;
  --paper: #f7f7f8;
  --paper-strong: #ffffff;
  --ink: #111114;
  --ink-soft: #5e5e68;
  --text: #f8f8fa;
  --text-soft: #b2b2bb;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 17, 20, 0.12);
  --red: #ef2424;
  --red-dark: #c90f16;
  --red-soft: #ffeded;
  --green: #28c76f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --page: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: #fff;
  color: #111;
  border-radius: 8px;
  font-weight: 800;
}

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

.topline {
  border-bottom: 1px solid var(--line);
  background: #070708;
  color: #d8d8de;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 199, 111, 0.11);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--red);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 76% 100%, 0 100%);
}

.brand__name {
  display: grid;
  line-height: 1;
}

.brand__name strong {
  font-size: 1.08rem;
  letter-spacing: 0.14em;
}

.brand__name small {
  margin-top: 5px;
  color: #aaaab3;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.35em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #c8c8cf;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav > a {
  transition: color 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: #fff;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:focus-visible,
.choice:focus-visible,
.text-button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 36, 36, 0.3);
  outline-offset: 3px;
}

.button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.button--compact {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(239, 36, 36, 0.2);
}

.button--primary:hover:not(:disabled) {
  background: #fa2c2c;
  box-shadow: 0 16px 34px rgba(239, 36, 36, 0.28);
}

.button--dark {
  background: var(--ink);
  color: #fff;
}

.button--dark:hover:not(:disabled) {
  background: #242429;
}

.button--ghost-dark {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--ink);
}

.button--ghost-dark:hover:not(:disabled) {
  border-color: rgba(17, 17, 20, 0.25);
  background: rgba(17, 17, 20, 0.04);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.26;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}

.hero__glow--one {
  width: 620px;
  height: 620px;
  top: -260px;
  right: -220px;
  background: radial-gradient(circle, rgba(239, 36, 36, 0.2), transparent 66%);
}

.hero__glow--two {
  width: 420px;
  height: 420px;
  bottom: -250px;
  left: -190px;
  background: radial-gradient(circle, rgba(239, 36, 36, 0.13), transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(510px, 1.12fr);
  align-items: center;
  gap: 72px;
}

.hero__copy {
  padding-block: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e7e7eb;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.eyebrow__line {
  width: 26px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 22px;
  font-size: clamp(2.65rem, 5.3vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  max-width: 600px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #c5c5cc;
  font-size: 0.82rem;
}

.proof-pill strong {
  color: #fff;
}

.proof-pill__icon,
.proof-pill svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.starting-price {
  width: max-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  margin-top: 28px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}

.starting-price__label {
  color: #8e8e98;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starting-price__value {
  font-size: 1rem;
  font-weight: 900;
}

.starting-price__note {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: #767680;
  font-size: 0.7rem;
}

.quiz-wrap {
  min-width: 0;
}

.quiz-card {
  min-height: 630px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quiz-card__top {
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-strong);
}

.quiz-card__status,
.progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quiz-card__kicker {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.quiz-card__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #72727b;
  font-size: 0.74rem;
  font-weight: 700;
}

.quiz-card__time svg {
  width: 15px;
  height: 15px;
}

.progress {
  height: 5px;
  overflow: hidden;
  margin-top: 17px;
  border-radius: 999px;
  background: #e5e5e9;
}

.progress__bar {
  position: relative;
  width: 0;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: var(--red);
  transition: width 260ms ease;
}

.progress__meta {
  margin-top: 9px;
  color: #85858e;
  font-size: 0.72rem;
  font-weight: 700;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #777781;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quiz-content {
  min-height: 515px;
  display: flex;
  flex-direction: column;
  padding: 28px 30px 24px;
}

.question {
  animation: question-in 260ms ease both;
}

@keyframes question-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.question__eyebrow {
  margin: 0 0 7px;
  color: var(--red-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.question h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.1vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.question__help {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.field {
  margin-top: 26px;
}

.field__label {
  display: block;
  margin-bottom: 8px;
  color: #33333a;
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field textarea,
.other-field input,
.other-field textarea {
  width: 100%;
  border: 1px solid #d7d7dc;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  caret-color: var(--red);
}

.field input,
.other-field input {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea,
.other-field textarea {
  min-height: 112px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}

.field input::placeholder,
.field textarea::placeholder,
.other-field input::placeholder,
.other-field textarea::placeholder {
  color: #a1a1a9;
}

.field__hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: #7c7c85;
  font-size: 0.75rem;
}

.field__hint svg {
  width: 14px;
  height: 14px;
}

.choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.choices--single-column {
  grid-template-columns: 1fr;
}

.choice {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #dadae0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease,
    background 150ms ease;
}

.choice:hover {
  border-color: #aaaab3;
  transform: translateY(-1px);
}

.choice.is-selected {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: 0 0 0 2px rgba(239, 36, 36, 0.08);
}

.choice__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f0f0f3;
  color: #4e4e56;
}

.choice.is-selected .choice__icon {
  background: var(--red);
  color: #fff;
}

.choice__icon svg {
  width: 21px;
  height: 21px;
}

.choice__text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.choice__text strong {
  font-size: 0.91rem;
  line-height: 1.24;
}

.choice__text small {
  color: #777781;
  font-size: 0.72rem;
  line-height: 1.3;
}

.choice__check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #c7c7cd;
  border-radius: 50%;
  color: transparent;
}

.choice[data-multi="true"] .choice__check {
  border-radius: 5px;
}

.choice.is-selected .choice__check {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.choice__check svg {
  width: 13px;
  height: 13px;
}

.other-field {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #e0e0e4;
  border-radius: 12px;
  background: #fff;
}

.other-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 800;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.quiz-actions .button {
  min-width: 132px;
}

.quiz-actions .button:last-child {
  margin-left: auto;
}

.inline-error {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 0;
  color: #b10f16;
  font-size: 0.8rem;
  font-weight: 750;
}

.inline-error[hidden] {
  display: none;
}

.inline-error svg {
  width: 15px;
  height: 15px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  color: #85858f;
  font-size: 0.75rem;
  text-align: center;
}

.privacy-note svg {
  width: 14px;
  height: 14px;
}

.summary {
  animation: question-in 260ms ease both;
}

.summary__badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #e8f8ef;
  color: #138447;
}

.summary__badge svg {
  width: 26px;
  height: 26px;
}

.summary h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.summary > p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.summary-card {
  max-height: 265px;
  overflow: auto;
  margin-top: 20px;
  border: 1px solid #dddde2;
  border-radius: 14px;
  background: #fff;
  scrollbar-width: thin;
}

.summary-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  padding: 11px 14px;
  border-bottom: 1px solid #ededf0;
  font-size: 0.79rem;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span {
  color: #777780;
  font-weight: 700;
}

.summary-row strong {
  overflow-wrap: anywhere;
  font-weight: 800;
  text-align: right;
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.summary-actions .button--primary {
  min-height: 56px;
}

.summary__microcopy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  color: #74747d;
  font-size: 0.72rem;
}

.summary__microcopy svg {
  width: 14px;
  height: 14px;
}

.copy-feedback {
  margin-left: auto;
  color: #138447;
  font-weight: 800;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #0e0e11;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item__number {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.trust-item h2 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.trust-item p {
  margin: 7px 0 0;
  color: #8f8f99;
  font-size: 0.8rem;
  line-height: 1.5;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 38px;
}

.section-heading__kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-heading h2,
.how-it-works h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading p {
  margin: 0;
  color: #92929b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.projects {
  position: relative;
  background: #0a0a0c;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project-card__visual {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 15px;
  color: #5d5d67;
  background-color: #111114;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

.project-card__visual svg {
  width: 42px;
  height: 42px;
  color: #787882;
}

.project-card__visual > span:last-child {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.project-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 16px;
}

.project-card__caption strong {
  font-size: 0.87rem;
}

.project-card__caption span {
  color: #777781;
  font-size: 0.72rem;
}

.how-it-works {
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.how-it-works__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
  align-items: center;
  gap: 78px;
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  border-top: 1px solid var(--line);
}

.steps-list li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 36, 36, 0.3);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.steps-list strong {
  font-size: 0.94rem;
}

.steps-list p {
  margin: 4px 0 0;
  color: #8c8c96;
  font-size: 0.82rem;
}

.how-it-works .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.how-it-works .button svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #070708;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px 32px;
}

.site-footer p {
  justify-self: end;
  margin: 0;
  color: #96969f;
  font-size: 0.82rem;
}

.site-footer small {
  grid-column: 1 / -1;
  color: #666670;
  font-size: 0.7rem;
}

.mobile-cta {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border: 1px solid #ffd1d1;
  background: #fff;
  color: #8f0d12;
  text-align: center;
}

@media (max-width: 1050px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 880px) {
  .site-nav > a {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero__copy {
    max-width: 720px;
    padding-block: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(2.8rem, 10vw, 4.7rem);
  }

  .quiz-card {
    min-height: 620px;
  }

  .section-heading,
  .how-it-works__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .how-it-works .button {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .page-width {
    width: min(calc(100% - 26px), var(--page));
  }

  .topline__inner {
    min-height: 32px;
    justify-content: center;
  }

  .topline__inner > span:last-child {
    display: none;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
    font-size: 1.25rem;
  }

  .site-nav .button {
    display: none;
  }

  .hero {
    padding: 34px 0 58px;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero h1 {
    margin: 17px 0;
    font-size: clamp(2.45rem, 12.8vw, 3.5rem);
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__proof {
    gap: 7px;
    margin-top: 22px;
  }

  .proof-pill {
    min-height: 38px;
    font-size: 0.74rem;
  }

  .starting-price {
    margin-top: 22px;
  }

  .quiz-card {
    min-height: 650px;
    border-radius: 18px;
  }

  .quiz-card__top {
    padding: 18px 18px 14px;
  }

  .quiz-card__time {
    font-size: 0.68rem;
  }

  .quiz-content {
    min-height: 535px;
    padding: 23px 18px 19px;
  }

  .question h2,
  .summary h2 {
    font-size: 1.65rem;
  }

  .question__help {
    font-size: 0.84rem;
  }

  .choices {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 19px;
  }

  .choice {
    min-height: 67px;
    grid-template-columns: 38px 1fr 20px;
    padding: 11px 12px;
  }

  .choice__icon {
    width: 38px;
    height: 38px;
  }

  .quiz-actions {
    padding-top: 20px;
  }

  .quiz-actions .button {
    min-width: 0;
    padding-inline: 16px;
  }

  .summary-card {
    max-height: 235px;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .summary-row strong {
    text-align: left;
  }

  .summary-actions {
    grid-template-columns: 1fr;
  }

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

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    min-height: 0;
    padding: 24px 4px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading h2,
  .how-it-works h2 {
    font-size: 2.25rem;
  }

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

  .project-card:nth-child(n + 4) {
    display: none;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    justify-self: start;
  }

  .site-footer small {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 13px;
    bottom: 13px;
    left: 13px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
    font-weight: 900;
  }

  .mobile-cta.is-hidden {
    display: none;
  }

  .mobile-cta svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 390px) {
  .quiz-card__status {
    align-items: flex-start;
  }

  .quiz-card__time {
    max-width: 94px;
    text-align: right;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}

/* Identidade e fotos reais da loja */
.brand--logo {
  height: auto;
  flex: 0 0 auto;
}

.brand__image-clip {
  width: 188px;
  aspect-ratio: 1144 / 414;
  display: block;
  overflow: hidden;
}

.brand__image-clip img {
  width: 100%;
  height: auto;
  display: block;
}

.brand--footer {
  height: auto;
}

.brand--footer .brand__image-clip {
  width: 210px;
}

.hero {
  padding: 58px 0 72px;
}

.hero::before {
  opacity: 0.13;
  background-size: 64px 64px;
}

.hero__glow {
  opacity: 0.45;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: start;
  gap: 56px;
}

.hero__copy {
  padding-block: 8px 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.8rem, 5vw, 4.35rem);
}

.hero-showcase {
  min-height: 282px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(132px, 0.65fr);
  grid-template-rows: 154px 1fr;
  gap: 10px;
  margin-top: 34px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #151519;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo--main {
  grid-row: 1 / 3;
}

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

.hero-photo--small img {
  object-position: center 42%;
}

.hero-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.78);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-showcase__note {
  align-self: stretch;
  margin: 0;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #121215;
  color: #8f8f98;
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-showcase__note strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.79rem;
}

.hero-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  padding: 9px 11px;
  border: 1px solid rgba(239, 36, 36, 0.42);
  border-radius: 9px;
  background: rgba(239, 36, 36, 0.1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-showcase__link:hover,
.hero-showcase__link:focus-visible {
  border-color: var(--red);
  background: rgba(239, 36, 36, 0.2);
}

.hero-showcase__link:active {
  transform: scale(0.97);
}

.hero-showcase__link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 242px;
  gap: 12px;
}

.project-card {
  position: relative;
  min-height: 0;
  border: 0;
  border-radius: 14px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(3, 3, 5, 0.88));
}

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

.project-card:hover > img {
  transform: scale(1.025);
}

.project-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card--featured > img {
  object-position: center 48%;
}

.project-card--wide,
.project-card:last-child {
  grid-column: span 2;
}

.project-card__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: flex-end;
  padding: 26px 16px 15px;
}

.project-card__caption strong {
  color: #fff;
}

.project-card__caption span {
  color: #c1c1c8;
}

.how-it-works {
  background: #101013;
}

.how-it-works__inner {
  grid-template-columns: minmax(300px, 0.86fr) minmax(390px, 1.14fr);
  gap: 70px;
}

.how-it-works__media {
  height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.how-it-works__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.how-it-works__content {
  display: grid;
  gap: 30px;
}

.how-it-works .button {
  grid-column: auto;
  justify-self: start;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 5px;
  color: #fff;
  font-weight: 800;
}

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

.footer-contact {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
}

.footer-contact p {
  justify-self: auto;
  text-align: right;
}

.footer-whatsapp-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(239, 36, 36, 0.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.footer-whatsapp-button:hover,
.footer-whatsapp-button:focus-visible {
  background: #ff3232;
  box-shadow: 0 15px 34px rgba(239, 36, 36, 0.28);
  transform: translateY(-1px);
}

.footer-whatsapp-button > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.footer-whatsapp-button > span:last-child {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.footer-whatsapp-button strong {
  font-size: 0.85rem;
}

.footer-whatsapp-button small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
}

@media (max-width: 1050px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
    gap: 36px;
  }

  .hero-showcase {
    min-height: 250px;
    grid-template-rows: 134px 1fr;
  }
}

@media (max-width: 880px) {
  .hero__grid,
  .how-it-works__inner {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 680px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .project-card--featured {
    grid-column: span 2;
  }

  .how-it-works__media {
    height: 460px;
  }
}

@media (max-width: 620px) {
  .brand--logo {
    height: auto;
  }

  .brand__image-clip {
    width: 153px;
  }

  .brand--footer {
    height: auto;
  }

  .brand--footer .brand__image-clip {
    width: 184px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-showcase {
    min-height: 238px;
    grid-template-columns: minmax(0, 1.3fr) minmax(112px, 0.7fr);
    grid-template-rows: 130px 1fr;
    margin-top: 27px;
  }

  .hero-showcase__note {
    padding: 11px;
    font-size: 0.69rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 8px;
  }

  .project-card:nth-child(n + 4) {
    display: block;
  }

  .project-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .project-card--wide,
  .project-card:last-child {
    grid-column: span 2;
  }

  .project-card__caption {
    display: grid;
    gap: 2px;
    padding: 24px 12px 12px;
  }

  .project-card__caption span {
    font-size: 0.66rem;
  }

  .how-it-works__media {
    height: 380px;
  }
}

@media (max-width: 390px) {
  .brand__image-clip {
    width: 144px;
  }

  .hero-showcase {
    min-height: 222px;
  }

  .projects-grid {
    grid-auto-rows: 205px;
  }
}

/* Revisão de usabilidade e estabilidade mobile */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

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

.site-header__inner {
  position: relative;
  justify-content: center;
}

.site-header .brand--logo {
  margin-inline: auto;
}

.site-header .brand__image-clip {
  width: 205px;
}

.site-nav {
  position: absolute;
  right: 0;
}

.hero__left,
.hero__copy,
.quiz-wrap,
.hero-showcase,
.project-card,
.how-it-works__content {
  min-width: 0;
}

.hero__cta {
  margin-top: 26px;
}

.hero__cta svg {
  width: 18px;
  height: 18px;
}

.hero__quick-note {
  margin: 9px 0 0;
  color: #7f7f89;
  font-size: 0.74rem;
}

.proof-pill {
  overflow-wrap: anywhere;
}

.quiz-card {
  scroll-margin-top: 88px;
}

.footer-address,
.footer-whatsapp {
  display: inline-block;
  margin-top: 5px;
  color: #fff;
  font-weight: 800;
}

.footer-address:hover,
.footer-address:focus-visible,
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  color: var(--red);
}

@media (hover: none) {
  .button:hover:not(:disabled),
  .choice:hover,
  .project-card:hover > img {
    transform: none;
  }
}

@media (max-width: 880px) {
  html {
    scroll-behavior: auto;
  }

  .site-header .brand__image-clip {
    width: 184px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero__left {
    display: contents;
  }

  .hero__copy {
    order: 1;
  }

  .quiz-wrap {
    order: 2;
  }

  .hero-showcase {
    order: 3;
    width: 100%;
    max-width: none;
  }

  .how-it-works__content {
    order: 1;
  }

  .how-it-works__media {
    order: 2;
  }
}

@media (max-width: 620px) {
  .page-width {
    width: calc(100% - 28px);
  }

  .topline__inner {
    min-height: 38px;
    padding-block: 6px;
    text-align: center;
    line-height: 1.25;
  }

  .topline__inner > span:first-child {
    max-width: 100%;
    font-size: 0.68rem;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-header .brand__image-clip {
    width: 166px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding: 30px 0 52px;
  }

  .hero__grid {
    gap: 22px;
  }

  .hero h1 {
    max-width: 100%;
    margin: 15px 0 14px;
    font-size: clamp(2.25rem, 11.5vw, 3.15rem);
    line-height: 1.01;
    letter-spacing: -0.055em;
  }

  .hero__lead {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero__cta {
    width: 100%;
    margin-top: 21px;
  }

  .hero__quick-note {
    text-align: center;
  }

  .hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    width: 100%;
  }

  .hero__proof .proof-pill {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .hero__proof .proof-pill:last-child {
    grid-column: 1 / -1;
  }

  .starting-price {
    width: 100%;
  }

  .quiz-card {
    border-radius: 15px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
    scroll-margin-top: 78px;
  }

  .quiz-card__status {
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .quiz-card__kicker,
  .quiz-card__time {
    white-space: nowrap;
  }

  .choice {
    width: 100%;
  }

  .quiz-actions {
    width: 100%;
  }

  .quiz-actions .button:last-child {
    min-width: 0;
  }

  .hero-showcase {
    margin-top: 8px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .how-it-works h2 {
    font-size: 2.05rem;
  }

  .how-it-works__content {
    gap: 23px;
  }

  .how-it-works__media {
    height: 320px;
  }

  .how-it-works .button {
    width: 100%;
  }

  .site-footer__inner {
    justify-items: center;
    text-align: center;
  }

  .brand--footer,
  .site-footer p {
    justify-self: center;
  }

  .site-footer p {
    line-height: 1.6;
  }

  .mobile-cta {
    bottom: max(13px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .page-width {
    width: calc(100% - 22px);
  }

  .site-header .brand__image-clip {
    width: 154px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .proof-pill {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .quiz-card__top,
  .quiz-content {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* Vitrine otimizada de projetos */
.delivery-proof {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  min-height: 440px;
  margin-bottom: 72px;
  overflow: hidden;
  border: 1px solid rgba(239, 36, 36, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 36, 36, 0.18), transparent 35%),
    #111114;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.delivery-proof__media {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: #09090b;
}

.delivery-proof__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.delivery-proof__content {
  align-self: center;
  max-width: 680px;
  padding: 56px clamp(34px, 6vw, 76px);
}

.delivery-proof__content h3 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.delivery-proof__content p {
  max-width: 590px;
  margin: 0 0 26px;
  color: #a0a0a9;
  line-height: 1.65;
}

.delivery-proof__content .button svg {
  width: 18px;
  height: 18px;
}

.showcase-block + .showcase-block {
  margin-top: 72px;
}

.showcase-block__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.showcase-block__eyebrow {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.showcase-block h3 {
  margin: 7px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #151518;
  color: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-controls button:first-child svg {
  transform: rotate(180deg);
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  border-color: rgba(239, 36, 36, 0.7);
  background: rgba(239, 36, 36, 0.14);
}

.carousel-controls button:active {
  transform: scale(0.94);
}

.carousel-controls svg {
  width: 19px;
  height: 19px;
}

.media-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.media-rail::-webkit-scrollbar {
  display: none;
}

.photo-rail {
  grid-auto-columns: clamp(220px, 24vw, 286px);
  align-items: start;
}

.photo-rail .project-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: #151518;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  grid-column: auto;
  grid-row: auto;
  align-self: start;
}

.photo-rail .project-card:last-child {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100%;
  aspect-ratio: 4 / 5;
}

#galeria-pcs {
  scroll-margin-top: 92px;
}

.photo-rail .project-card::after {
  inset: 48% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(3, 3, 5, 0.92));
}

.photo-rail .project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.photo-rail .project-card:hover img {
  transform: scale(1.035);
}

.photo-rail .project-card figcaption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 14px;
  left: 15px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.video-rail {
  grid-auto-columns: clamp(210px, 21vw, 258px);
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: #111114;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.video-card--featured {
  border-color: rgba(239, 36, 36, 0.7);
  box-shadow: 0 18px 44px rgba(239, 36, 36, 0.12);
}

.video-card::before {
  content: "SEM SOM";
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.72);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.video-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 52% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(2, 2, 4, 0.92));
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a0a0c;
}

.video-card figcaption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: grid;
  gap: 3px;
}

.video-card figcaption strong {
  color: #fff;
  font-size: 0.9rem;
}

.video-card figcaption span {
  color: #c2c2c9;
  font-size: 0.72rem;
}

.showcase-block__hint {
  margin: 10px 2px 0;
  color: #777781;
  font-size: 0.76rem;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.quiz-card {
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.quiz-card:focus-within {
  border-color: rgba(239, 36, 36, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(239, 36, 36, 0.08);
}

.progress__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: progress-shine 2.4s ease-in-out infinite;
}

@keyframes progress-shine {
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 880px) {
  .delivery-proof {
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  }

  .delivery-proof__content {
    padding: 40px 32px;
  }

  .photo-rail {
    grid-auto-columns: min(64vw, 270px);
  }

  .video-rail {
    grid-auto-columns: min(54vw, 240px);
  }
}

@media (max-width: 620px) {
  .delivery-proof {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .delivery-proof__media {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .delivery-proof__content {
    padding: 28px 22px 30px;
  }

  .delivery-proof__content h3 {
    font-size: 2rem;
  }

  .delivery-proof__content .button {
    width: 100%;
  }

  .showcase-block + .showcase-block {
    margin-top: 54px;
  }

  .showcase-block__top {
    align-items: center;
    gap: 12px;
  }

  .showcase-block h3 {
    font-size: 1.48rem;
  }

  .carousel-controls button {
    width: 40px;
    height: 40px;
  }

  .photo-rail {
    grid-auto-columns: min(72vw, 274px);
  }

  .video-rail {
    grid-auto-columns: min(61vw, 235px);
  }

  .hero-showcase__link {
    width: 100%;
    justify-content: center;
    padding: 9px 8px;
    font-size: 0.68rem;
  }

  .footer-contact {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 16px;
  }

  .footer-contact p {
    text-align: center;
  }

  .footer-whatsapp-button {
    width: min(100%, 310px);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal-on-scroll,
  .motion-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .progress__bar::after {
    display: none;
  }

  .media-rail {
    scroll-behavior: auto;
  }
}
