:root {
  --red: #e21d2f;
  --red-dark: #c91627;
  --ink: #171717;
  --muted: #666a70;
  --line: #e5e5e2;
  --soft: #f6f6f3;
  --white: #ffffff;
  --container: 1180px;
  --shadow: 0 20px 60px rgba(22, 22, 22, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.14;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.052em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.038em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #d7d7d3;
}

.button-secondary:hover {
  border-color: var(--ink);
}

.button-text {
  min-height: 52px;
  padding-inline: 8px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.82rem;
}

.button-full {
  width: 100%;
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(226, 29, 47, 0.25);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.045);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 125px;
  height: 34px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  line-height: 1.2;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-instagram {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.header-instagram:hover {
  color: var(--ink);
}

/* Hero */
.hero {
  overflow: hidden;
  padding: 84px 0 92px;
  background: linear-gradient(180deg, #fff 0%, #fbfbf9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(64px, 9vw, 120px);
}

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

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #50545a;
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-reassurance span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-reassurance span::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.hero-person {
  position: relative;
  justify-self: end;
  width: min(100%, 440px);
}

.hero-person::before {
  position: absolute;
  top: -30px;
  right: -36px;
  z-index: 0;
  width: 190px;
  height: 190px;
  content: "";
  background: #f6d8dc;
  border-radius: 50%;
}

.hero-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 0.84;
  background: #ecebe8;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.person-card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 12px;
  box-shadow: 0 15px 38px rgba(22, 22, 22, 0.14);
}

.person-card div {
  display: grid;
  line-height: 1.25;
}

.person-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
}

.person-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.person-status {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: #26a866;
  border: 3px solid #dff4e9;
  border-radius: 50%;
  box-sizing: content-box;
}

/* Proof */
.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.proof-grid > div {
  display: grid;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  line-height: 1.3;
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.proof-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Objective */
.objective-section {
  padding: 108px 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.objective-grid button {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 23px 24px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.objective-grid button:hover {
  border-color: rgba(226, 29, 47, 0.55);
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.07);
  transform: translateY(-2px);
}

.objective-grid button > span {
  grid-row: 1 / span 2;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
}

.objective-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
}

.objective-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.objective-grid .objective-undecided {
  grid-column: 1 / -1;
}

/* How it works */
.how-section {
  padding: 108px 0;
  background: var(--soft);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(440px, 1.13fr);
  align-items: center;
  gap: clamp(60px, 8vw, 105px);
}

.how-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.steps-card {
  padding: 14px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(22, 22, 22, 0.055);
}

.steps-card article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.steps-card article:last-child {
  border-bottom: 0;
}

.steps-card article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--red);
  background: #fff0f2;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 700;
}

.steps-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Trust */
.trust-section {
  padding: 108px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.advisor-card,
.security-card {
  border: 1px solid var(--line);
  border-radius: 16px;
}

.advisor-card {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 32px;
  align-items: center;
  padding: 38px;
}

.advisor-avatar {
  overflow: hidden;
  aspect-ratio: 0.8;
  border-radius: 12px;
}

.advisor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.advisor-card h2 {
  font-size: 2rem;
}

.advisor-card p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.advisor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.advisor-links a,
.security-card a,
.final-actions a {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

.security-card {
  padding: 40px;
  background: #fff7f8;
  border-color: #f3d6da;
}

.security-card img {
  width: 145px;
  margin-bottom: 34px;
}

.security-card h3 {
  font-size: 1.35rem;
}

.security-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.87rem;
}

/* FAQ */
.faq-section {
  padding: 108px 0;
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-whatsapp {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-list details {
  border-bottom: 1px solid #d8d8d4;
}

.faq-list details:first-child {
  border-top: 1px solid #d8d8d4;
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
}

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

.faq-list summary span {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 660px;
  padding: 0 50px 25px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Final CTA */
.final-cta {
  padding: 92px 0;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 58px 64px;
  color: var(--white);
  background: #1b1b1b;
  border-radius: 18px;
}

.final-card h2 {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.final-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: #c5c5c5;
}

.final-actions {
  display: grid;
  justify-items: center;
  gap: 17px;
  min-width: 245px;
}

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

.final-actions a {
  color: #e5e5e5;
  font-weight: 500;
}

/* Footer */
.site-footer {
  padding: 52px 0 28px;
  background: #111;
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid #343434;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 132px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  display: grid;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 1px solid #454545;
  line-height: 1.25;
}

.footer-brand strong {
  font-size: 0.82rem;
}

.footer-brand span {
  color: #9d9d9d;
  font-size: 0.67rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.78rem;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: start;
  padding-top: 27px;
  color: #929292;
  font-size: 0.68rem;
}

.footer-legal p {
  max-width: 880px;
  margin-bottom: 0;
}

.footer-legal div {
  display: flex;
  gap: 15px;
}

.footer-legal button {
  padding: 0;
  color: #aaa;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.68rem;
}

/* Floating actions */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: #24b35a;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(20, 130, 65, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.whatsapp-float svg {
  width: 25px;
  fill: currentColor;
}

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

/* Modal and quiz */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.65);
  backdrop-filter: blur(5px);
}

.quiz-shell,
.privacy-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100dvh - 56px);
  overflow: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.quiz-panel {
  min-height: 620px;
  padding: 38px 56px 48px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
}

.modal-close span {
  font-size: 0.68rem;
}

.quiz-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
}

.quiz-brand img {
  width: 120px;
}

.quiz-brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.quiz-view {
  max-width: 610px;
  margin: 0 auto;
}

.quiz-kicker,
.quiz-question-kicker,
.result-label {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#quizTitle,
.quiz-result h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.quiz-view > p {
  color: var(--muted);
}

.quiz-promises {
  display: flex;
  gap: 8px;
  margin: 28px 0;
}

.quiz-promises span {
  padding: 8px 12px;
  color: #555;
  background: var(--soft);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}

.quiz-view > small,
.quiz-result > small {
  display: block;
  margin-top: 14px;
  color: #858585;
  font-size: 0.68rem;
  text-align: center;
}

.quiz-progress-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}

.quiz-back {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.quiz-progress-track {
  overflow: hidden;
  height: 3px;
  background: #e8e8e5;
  border-radius: 5px;
}

.quiz-progress-track span {
  display: block;
  width: 14%;
  height: 100%;
  background: var(--red);
  transition: width 220ms ease;
}

.quiz-progress-row strong {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.quiz-question-title {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
}

.quiz-question-helper {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.quiz-options {
  display: grid;
  gap: 9px;
}

.quiz-option {
  position: relative;
  width: 100%;
  min-height: 60px;
  padding: 13px 46px 13px 16px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.quiz-option::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1.5px solid var(--red);
  border-right: 1.5px solid var(--red);
  transform: translateY(-50%) rotate(45deg);
}

.quiz-option:hover,
.quiz-option.is-selected {
  background: #fff7f8;
  border-color: rgba(226, 29, 47, 0.55);
}

.quiz-option span {
  display: grid;
}

.quiz-option strong {
  font-size: 0.86rem;
}

.quiz-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 25px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.73rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid #d9d9d5;
  border-radius: 8px;
}

.field input:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 29, 47, 0.1);
}

.phone-control {
  display: flex;
  align-items: center;
  height: 49px;
  overflow: hidden;
  border: 1px solid #d9d9d5;
  border-radius: 8px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.phone-control:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 29, 47, 0.1);
}

.phone-country {
  align-self: stretch;
  width: 66px;
  padding: 0 9px;
  border-right: 1px solid #d9d9d5;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  color: var(--ink);
  background: #f7f7f6;
  cursor: pointer;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.phone-country:focus {
  outline: 0;
}

.phone-control input {
  height: 47px;
  padding-left: 13px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.phone-control input:focus {
  border: 0;
  box-shadow: none;
}

.field-hint {
  color: #8a8f99;
  font-size: 0.68rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.consent-field button {
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: inherit;
}

.form-status {
  min-height: 21px;
  margin-top: 10px;
  color: var(--red);
  font-size: 0.74rem;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.15rem;
}

.result-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.result-summary div {
  display: grid;
  padding: 15px;
  background: var(--soft);
  border-radius: 8px;
}

.result-summary small {
  color: var(--muted);
  font-size: 0.64rem;
}

.result-summary strong {
  margin-top: 5px;
  font-size: 0.8rem;
}

/* Privacy and cookies */
.privacy-shell {
  width: min(100%, 700px);
  padding: 48px 52px;
}

.privacy-shell h2 {
  padding-right: 50px;
  font-size: 2rem;
}

.privacy-shell h3 {
  margin: 25px 0 7px;
  font-size: 1rem;
}

.privacy-shell p {
  color: var(--muted);
  font-size: 0.84rem;
}

.privacy-shell a {
  color: var(--red);
  text-decoration: underline;
}

.privacy-note {
  margin-top: 28px;
  padding: 14px;
  background: var(--soft);
  border-radius: 7px;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: min(calc(100% - 44px), 520px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  font-size: 0.82rem;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-essential {
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-grid,
  .how-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-person {
    justify-self: start;
    width: min(100%, 510px);
  }

  .hero-photo {
    aspect-ratio: 1.05;
  }

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

  .how-grid,
  .faq-grid {
    gap: 48px;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .final-card {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-items: start;
    min-width: 0;
  }

  .final-actions .button {
    width: auto;
  }
}

@media (max-width: 720px) {
  .site-container {
    width: min(calc(100% - 32px), var(--container));
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 104px;
  }

  .brand > span,
  .header-instagram {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions .button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

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

  .button-text {
    justify-self: center;
    width: auto !important;
  }

  .hero-reassurance {
    display: grid;
    gap: 8px;
  }

  .hero-person {
    width: 100%;
  }

  .hero-person::before {
    display: none;
  }

  .hero-photo {
    aspect-ratio: 0.94;
    border-radius: 16px;
  }

  .person-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

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

  .proof-grid > div {
    padding: 20px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:first-child {
    border-left: 0;
  }

  .proof-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .objective-section,
  .how-section,
  .trust-section,
  .faq-section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

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

  .objective-grid .objective-undecided {
    grid-column: auto;
  }

  .objective-grid button {
    padding: 19px 18px;
  }

  .steps-card {
    padding: 4px 20px;
  }

  .steps-card article {
    grid-template-columns: 36px 1fr;
    gap: 13px;
    padding: 22px 0;
  }

  .advisor-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .advisor-avatar {
    width: 108px;
    aspect-ratio: 1;
    border-radius: 50%;
  }

  .advisor-card h2 {
    font-size: 1.75rem;
  }

  .security-card {
    padding: 28px 24px;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 0.88rem;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .final-cta {
    padding: 64px 0 86px;
  }

  .final-card {
    gap: 32px;
    padding: 36px 24px;
    border-radius: 14px;
  }

  .final-actions,
  .final-actions .button {
    width: 100%;
  }

  .final-actions {
    justify-items: center;
  }

  .footer-main,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-main {
    align-items: start;
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }

  .footer-legal {
    gap: 18px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 85;
    display: block;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta .button {
    width: 100%;
  }

  .modal {
    padding: 0;
  }

  .quiz-shell,
  .privacy-shell {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .quiz-panel {
    min-height: 100%;
    padding: 27px 20px 56px;
  }

  .modal-close {
    top: 20px;
    right: 18px;
  }

  .quiz-brand {
    margin-bottom: 54px;
  }

  .quiz-brand img {
    width: 108px;
  }

  .quiz-brand span {
    display: none;
  }

  .quiz-promises {
    flex-wrap: wrap;
  }

  .quiz-progress-row {
    gap: 12px;
    margin-bottom: 35px;
  }

  .quiz-question-title {
    font-size: 1.8rem;
  }

  .contact-fields,
  .result-summary {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .privacy-shell {
    padding: 64px 22px 40px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}

@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;
  }
}
