:root {
  --paper: #f8efe2;
  --paper-light: #fffaf2;
  --ink: #29231d;
  --muted: #6f6254;
  --soft: #e7d9c5;
  --line: rgba(60, 45, 31, 0.16);
  --terracotta: #b45b38;
  --terracotta-dark: #884126;
  --olive: #687052;
  --moss: #d7dbc3;
  --gold: #c89145;
  --wine: #5e2b28;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(70, 48, 25, 0.14);
  --shadow-small: 0 12px 28px rgba(70, 48, 25, 0.10);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(41, 35, 29, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(32, 27, 22, 0.36);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 42px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  line-height: 1.1;
}

.brand-caption {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.35;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.header-nav a,
.header-cta {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 7px;
  background: var(--paper-light);
  color: var(--terracotta-dark);
  font-weight: 800;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #fff2df;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #211a16;
}

.hero-bg,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(24, 18, 14, 0.84) 0%, rgba(24, 18, 14, 0.64) 42%, rgba(24, 18, 14, 0.20) 100%),
    linear-gradient(180deg, rgba(24, 18, 14, 0.15) 0%, rgba(24, 18, 14, 0.34) 58%, rgba(24, 18, 14, 0.92) 100%),
    url("assets/images/hero-airport.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 26%),
    linear-gradient(90deg, rgba(180, 91, 56, 0.18), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 42px;
  align-items: end;
  padding: 148px 0 54px;
}

.hero-copy {
  max-width: 820px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.hero h1,
.section h2,
.quiz-card h3,
.thanks-title,
.privacy-title {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions,
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 24px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(136, 65, 38, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(136, 65, 38, 0.34);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

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

.hero-facts article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(32, 27, 22, 0.38);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-facts span,
.process-line span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.hero-facts strong,
.direction-body h3,
.process-line h3 {
  display: block;
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.hero-facts p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.section {
  padding: 86px 0;
}

.section-warm {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.7), rgba(248, 239, 226, 0.95)),
    linear-gradient(135deg, rgba(104, 112, 82, 0.12), rgba(180, 91, 56, 0.08));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-head p,
.intro-copy p,
.quiz-aside p,
.proof-copy p,
.legal-copy p,
.final-copy p,
.footer p,
.privacy-copy p,
.privacy-copy li {
  color: var(--muted);
  line-height: 1.74;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 17px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.intro-photo {
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-photo img,
.direction-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.intro-photo:hover img,
.direction-card:hover img {
  transform: scale(1.045) translateY(-3px);
}

.intro-copy h2 {
  margin-top: 10px;
}

.intro-copy p {
  margin: 20px 0 0;
  font-size: 17px;
}

.intro-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.intro-list div,
.feedback-list article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.70);
}

.intro-list img,
.feedback-list img {
  width: 28px;
  height: 28px;
}

.intro-list span {
  font-weight: 800;
  line-height: 1.45;
}

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

.direction-card {
  overflow: hidden;
  border: 1px solid rgba(60, 45, 31, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.direction-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 91, 56, 0.26);
  box-shadow: var(--shadow);
}

.direction-card figure {
  height: 238px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.direction-card:nth-child(1) img {
  object-position: center 48%;
}

.direction-card:nth-child(2) img {
  object-position: center 45%;
}

.direction-card:nth-child(4) img {
  object-position: center 52%;
}

.direction-card:nth-child(3) img {
  object-position: center 44%;
}

.direction-card:nth-child(6) img {
  object-position: center 35%;
}

.direction-body {
  padding: 20px;
}

.direction-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 14px;
  font-weight: 800;
}

.direction-body p {
  margin: 12px 0 16px;
  min-height: 78px;
  color: var(--muted);
  line-height: 1.62;
}

.direction-body strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #f4e5d3;
  color: var(--terracotta-dark);
  font-size: 14px;
  line-height: 1.3;
}

.section-disclaimer {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  line-height: 1.7;
}

.quiz-section {
  background: var(--ink);
  color: var(--white);
}

.quiz-section .section-kicker,
.quiz-section h2 {
  color: var(--gold);
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: 34px;
  align-items: start;
}

.quiz-aside {
  position: sticky;
  top: 104px;
}

.quiz-aside h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.quiz-aside p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.mini-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.mini-steps span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.quiz-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: #342a22;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 800;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  transition: width 0.35s ease;
}

.quiz-card {
  min-height: 420px;
  margin-top: 24px;
}

.question-wrap,
.quiz-final,
.loading-wrap {
  display: grid;
  gap: 20px;
}

.quiz-card h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  line-height: 1.45;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.option-button:hover,
.option-button:focus-visible,
.option-button.is-selected {
  transform: translateX(4px);
  border-color: rgba(200, 145, 69, 0.56);
  background: rgba(200, 145, 69, 0.18);
  outline: none;
}

.loading-bar {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loading-bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  animation: loading 1.2s ease-in-out infinite;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-item {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
}

.summary-item span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  font-weight: 800;
  line-height: 1.35;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(60, 45, 31, 0.18);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  min-height: 54px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-panel .lead-form input,
.quiz-panel .lead-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(180, 91, 56, 0.14);
}

.policy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.policy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.policy-check a {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.quiz-panel .policy-check {
  color: rgba(255, 255, 255, 0.72);
}

.quiz-panel .policy-check a {
  color: var(--gold);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.quiz-panel .form-note {
  color: rgba(255, 255, 255, 0.64);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-small);
}

.process-line article {
  min-height: 260px;
  padding: 24px 18px;
  background: var(--paper-light);
}

.process-line article:nth-child(even) {
  background: #f1e4d2;
}

.process-line p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.proof-section {
  background: #efe0cb;
}

.proof-grid,
.legal-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
  align-items: start;
}

.proof-copy {
  max-width: 520px;
}

.proof-copy p,
.legal-copy p,
.final-copy p {
  margin: 18px 0 0;
}

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

.feedback-list article {
  background: rgba(255, 250, 242, 0.74);
}

.feedback-list p {
  margin: 0;
  color: var(--ink);
  line-height: 1.62;
  font-weight: 700;
}

.legal-strip {
  background: var(--wine);
  color: var(--white);
}

.legal-stack {
  display: block;
}

.legal-heading {
  max-width: 980px;
}

.legal-strip h2 {
  color: var(--white);
  max-width: 100%;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 1.08;
  text-wrap: balance;
}

.legal-copy {
  width: min(100%, 760px);
  margin-top: 28px;
  margin-left: auto;
}

.legal-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: 34px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
  box-shadow: 0 8px 20px rgba(70, 48, 25, 0.06);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 19px 20px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--terracotta);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.68;
}

.final-section {
  background:
    linear-gradient(90deg, rgba(41, 35, 29, 0.88), rgba(41, 35, 29, 0.74)),
    url("assets/images/final-consultation.jpg");
  background-size: cover;
  background-position: center 54%;
  color: var(--white);
}

.final-section h2 {
  color: var(--white);
}

.final-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.final-section .lead-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.footer {
  padding: 34px 0;
  background: #211c17;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer a {
  color: #f0c881;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.thanks-page,
.privacy-page {
  background: var(--paper-light);
}

.thanks-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 16px;
  background: linear-gradient(135deg, #211c17 0%, #5e2b28 54%, #b45b38 100%);
}

.thanks-card {
  width: min(100%, 720px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
}

.thanks-brand {
  margin-bottom: 28px;
  color: var(--ink);
}

.thanks-brand .brand-caption {
  color: var(--muted);
}

.thanks-title {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.thanks-card p {
  color: var(--muted);
  line-height: 1.72;
}

.thanks-secondary {
  color: var(--ink);
  border-color: rgba(41, 35, 29, 0.18);
  background: rgba(41, 35, 29, 0.06);
}

.privacy-header {
  padding: 18px 0;
  background: #211c17;
  color: var(--white);
}

.privacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.privacy-main {
  padding: 62px 0 84px;
}

.privacy-copy {
  max-width: 920px;
}

.privacy-title {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.privacy-updated {
  margin-top: 16px;
}

.privacy-copy section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.privacy-copy h2 {
  margin: 0 0 12px;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.privacy-copy ul {
  padding-left: 22px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.privacy-back {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--delay, 0ms);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-1.2%);
  }
}

@keyframes loading {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(230%);
  }
}

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

@media (max-width: 1080px) {
  .hero-content,
  .intro-grid,
  .quiz-layout,
  .proof-grid,
  .legal-grid,
  .final-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero-facts,
  .directions-grid,
  .feedback-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-aside {
    position: static;
  }

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

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .directions-grid,
  .feedback-list,
  .intro-list,
  .summary-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line article {
    min-height: auto;
  }

  .intro-photo {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 22px), var(--shell));
  }

  .site-header {
    padding: 9px 0;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 54px;
  }

  .brand,
  .brand-text {
    overflow: hidden;
  }

  .brand-caption {
    display: none;
  }

  .brand-name {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero-content {
    gap: 26px;
    padding: 118px 0 38px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.4vw, 2.45rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

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

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section h2,
  .quiz-aside h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .intro-photo {
    height: 330px;
  }

  .direction-card figure {
    height: 220px;
  }

  .direction-body p {
    min-height: 0;
  }

  .quiz-panel,
  .final-section .lead-form,
  .thanks-card {
    padding: 18px;
  }

  .quiz-card {
    min-height: 0;
  }

  .quiz-card h3 {
    font-size: clamp(1.72rem, 8vw, 2.3rem);
  }

  .faq-list summary {
    font-size: 16px;
    padding: 17px;
  }

  .faq-list p {
    padding: 0 17px 18px;
  }

  .privacy-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
