:root {
  --bg: #070707;
  --surface: #111111;
  --surface-strong: #151515;
  --text: #f5f3ee;
  --muted: #a6a6a6;
  --gold: #d4af63;
  --gold-dark: #8f6a2b;
  --line: rgba(255, 255, 255, 0.11);
  --gold-line: rgba(212, 175, 99, 0.28);
  --container: 1180px;
  --radius: 22px;
  --header-height: 68px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 175, 99, 0.045), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: #0a0907;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-row {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
}

.brand-crop {
  position: relative;
  display: block;
  width: 132px;
  height: 34px;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 132px;
  max-width: none;
  height: 132px;
  transform: translateY(-50%);
  object-fit: contain;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms ease;
}

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

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

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  border-color: var(--gold-line);
  background: rgba(212, 175, 99, 0.08);
  color: var(--gold);
}

.button--primary {
  border-color: rgba(255, 237, 190, 0.3);
  background: linear-gradient(125deg, #8f6a2b 0%, #d4af63 48%, #f1d99b 100%);
  box-shadow: 0 14px 34px rgba(143, 106, 43, 0.22), inset 0 1px rgba(255, 255, 255, 0.35);
  color: #0b0906;
}

.button--primary:hover {
  box-shadow: 0 18px 42px rgba(143, 106, 43, 0.31), inset 0 1px rgba(255, 255, 255, 0.42);
  filter: saturate(1.06);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--gold-line);
  background: rgba(212, 175, 99, 0.08);
}

.button-arrow {
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 span,
h2 span {
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.18) 0%, rgba(7, 7, 7, 0.58) 47%, #070707 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.2) 74%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 18px;
  width: 76px;
  height: 76px;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #0a0a0a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.72) contrast(1.07) brightness(0.78);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(48px, 10vh, 94px) 42px;
}

.hero-copy {
  width: 100%;
  max-width: 660px;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(44px, 13vw, 76px);
}

.hero-lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(245, 243, 238, 0.83);
  font-size: clamp(16px, 4.4vw, 19px);
  line-height: 1.5;
}

.hero-action {
  margin-top: 26px;
}

.hero-action .button {
  width: 100%;
  max-width: 390px;
}

.microcopy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  position: relative;
  padding-block: 78px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.igor-copy h2,
.final-panel h2 {
  font-size: clamp(36px, 10vw, 68px);
}

.problem {
  background:
    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: 52px 52px;
}

.problem::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg), transparent 22%, transparent 80%, var(--bg));
  content: "";
  pointer-events: none;
}

.problem .container {
  position: relative;
}

.problem-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.problem-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.problem-list span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-list p {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.problem-conclusion {
  margin-top: 32px;
}

.problem-conclusion p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
}

.text-cta span {
  transition: transform 180ms var(--ease);
}

.text-cta:hover span {
  transform: translate(2px, -2px);
}

.value {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0b0b0b;
}

.value::after {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(143, 106, 43, 0.12);
  filter: blur(90px);
  content: "";
  pointer-events: none;
}

.section-heading--wide {
  max-width: 990px;
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.value-card {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  transition: border-color 180ms ease, transform 180ms var(--ease);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-line);
}

.value-mark {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.value-card h3 {
  font-size: 28px;
}

.value-card p {
  max-width: 300px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.igor-grid {
  display: grid;
  gap: 66px;
}

.igor-visual {
  position: relative;
  width: min(100%, 510px);
  min-height: 505px;
  margin-inline: auto;
}

.igor-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--surface);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.igor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.igor-photo--main {
  inset: 0 48px 34px 0;
  border-radius: 28px 4px 28px 4px;
}

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

.igor-photo--detail {
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 4 / 3;
  border: 5px solid var(--bg);
  border-radius: 4px 22px 4px 22px;
}

.visual-caption {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 8px 12px;
  border: 1px solid var(--gold-line);
  background: rgba(7, 7, 7, 0.86);
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.igor-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.igor-copy .button {
  width: 100%;
  margin-top: 28px;
}

.final {
  padding-top: 24px;
  background: linear-gradient(180deg, var(--bg), #0c0b09 55%, var(--bg));
}

.final-panel {
  position: relative;
  overflow: hidden;
  padding: 40px 22px;
  border: 1px solid var(--gold-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 99, 0.16), transparent 35%),
    linear-gradient(145deg, #17140e, #0d0c0a 66%);
  text-align: left;
}

.final-panel::after {
  position: absolute;
  right: -42px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  content: "";
}

.final-panel h2 {
  max-width: 980px;
}

.final-panel > p:not(.eyebrow, .microcopy) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(245, 243, 238, 0.75);
  font-size: 17px;
}

.final-panel .button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 28px;
}

.final-panel .microcopy {
  position: relative;
  z-index: 1;
}

.faq {
  display: grid;
  gap: 24px;
  padding-top: 72px;
}

.faq-heading h2 {
  font-size: 44px;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 0 22px;
  padding-right: 44px;
  color: var(--muted);
}

.site-footer {
  padding-block: 52px 24px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.brand-crop--footer {
  width: 116px;
  height: 30px;
  margin-bottom: 15px;
}

.brand-crop--footer img {
  width: 116px;
  height: 116px;
}

.footer-brand p,
.footer-disclosure p,
.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}

.footer-disclosure strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  color: #a0a0a0;
  font-size: 13px;
}

.footer-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sticky-cta {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.92) 35%);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

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

.sticky-cta .button {
  width: 100%;
  min-height: 52px;
}

body.has-sticky-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 220;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  display: grid;
  width: auto;
  max-width: 900px;
  gap: 18px;
  padding: 20px;
  transform: translateY(calc(100% + 32px));
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  background: rgba(15, 15, 15, 0.97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  opacity: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

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

.consent-banner__copy h2 {
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.consent-banner__copy p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-banner__copy a {
  border-bottom: 1px solid var(--gold-line);
  color: var(--gold);
}

.consent-banner__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.consent-banner__actions .button {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  font-size: 13px;
}

body.has-consent-banner .sticky-cta {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.legal-page {
  min-height: 100vh;
}

.legal-back {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.legal {
  padding-block: 64px 88px;
}

.legal-wrap {
  max-width: 820px;
}

.legal h1 {
  max-width: 760px;
  font-size: clamp(42px, 11vw, 76px);
}

.legal-updated {
  margin: 18px 0 44px;
  color: var(--muted);
  font-size: 13px;
}

.legal section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.legal section:last-of-type {
  border-bottom: 1px solid var(--line);
}

.legal h2 {
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal section p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--text);
}

.legal-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 36px;
}

.legal-actions > a:not(.button) {
  border-bottom: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 14px;
}

.legal section .js-analytics-settings {
  margin-top: 20px;
}

.error-page {
  min-height: 100vh;
}

.error-main {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  overflow: hidden;
  padding-block: 54px;
  background:
    radial-gradient(circle at 72% 36%, rgba(212, 175, 99, 0.12), transparent 26rem),
    linear-gradient(145deg, #080808, #050505);
}

.error-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.error-code {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -58%);
  color: rgba(212, 175, 99, 0.045);
  font-size: clamp(190px, 55vw, 520px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  white-space: nowrap;
}

.error-wrap h1 {
  max-width: 660px;
  font-size: clamp(54px, 15vw, 100px);
}

.error-wrap h1 span {
  color: var(--gold);
}

.error-wrap > p:not(.eyebrow, .error-code) {
  max-width: 550px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.error-wrap .button {
  width: 100%;
  margin-top: 28px;
}

.js [data-reveal] {
  transform: translateY(16px);
  opacity: 0;
  transition: transform 620ms var(--ease), opacity 620ms ease;
}

/* Content remains visible even if JavaScript fails. */
[data-reveal] { opacity: 1; transform: none; }
.hero h1 { font-size: clamp(42px, 6vw, 78px); line-height: 1.04; }
.hero h1 span { display: block; margin-top: 16px; font-size: .68em; }
.section-intro { max-width: 740px; color: var(--muted); margin-top: 24px; font-size: 18px; line-height: 1.6; }
.value-card { min-height: 0; }
.value-mark { margin-bottom: 22px; }
.inside-grid { display: grid; gap: 24px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.inside-card { margin: 0; overflow: hidden; border: 1px solid var(--gold-line); border-radius: 18px; background: var(--surface); }
.inside-card > a { display: block; padding: 12px; background: #17232e; }
.inside-card img { width: 100%; height: 300px; object-fit: contain; }
.inside-card figcaption { padding: 26px; }
.inside-card h3 { font-size: 28px; line-height: 1.15; }
.inside-card p, .start-steps p { color: var(--muted); margin: 14px 0 0; }
.start-section { background: #10100e; border-block: 1px solid var(--gold-line); }
.start-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.start-grid h2 { font-size: clamp(36px,5vw,64px); line-height: 1.05; }
.start-grid .button { margin-top: 18px; }
.start-steps { list-style: none; margin: 0; padding: 0; }
.start-steps li { display: flex; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.start-steps li > span { color: var(--gold); font-weight: 800; }
.start-steps h3 { font-size: 24px; line-height: 1.15; }
@media(max-width:767px) {
  .inside-grid, .start-grid { grid-template-columns: 1fr; gap: 24px; }
  .inside-card img { height: auto; }
  .value-card { padding: 22px; min-height: 0; }
  .value-mark { margin-bottom: 18px; }
  .section { padding-block: 58px; }
  .hero-inner { padding-bottom: 50px; }
  .consent-banner { padding: 14px; gap: 12px; }
  .consent-banner__copy h2 { font-size: 18px; }
  .consent-banner__actions { grid-template-columns: 1fr 1fr; }
  body.has-consent-banner .sticky-cta.is-visible { bottom: var(--consent-offset, 230px); transform: translateY(0); opacity: 1; pointer-events: auto; }
}

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

@media (min-width: 560px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

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

  .igor-copy .button,
  .final-panel .button,
  .error-wrap .button {
    width: auto;
  }

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

@media (min-width: 768px) {
  :root {
    --header-height: 78px;
  }

  .brand-crop {
    width: 162px;
    height: 40px;
  }

  .brand-crop img {
    width: 162px;
    height: 162px;
  }

  .button--small {
    min-height: 44px;
    padding-inline: 22px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.95) 35%, rgba(7, 7, 7, 0.2) 74%, rgba(7, 7, 7, 0.24) 100%),
      linear-gradient(180deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.3));
  }

  .hero-media img {
    width: 76%;
    margin-left: auto;
    object-position: center 27%;
    filter: saturate(0.72) contrast(1.08) brightness(0.82);
  }

  .hero-inner {
    align-items: center;
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(64px, 6.5vw, 94px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .section {
    padding-block: 116px;
  }

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

  .section-heading h2,
  .igor-copy h2,
  .final-panel h2 {
    font-size: clamp(48px, 5vw, 76px);
  }

  .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
  }

  .problem-list li:nth-child(odd) {
    padding-right: 30px;
    border-right: 1px solid var(--line);
  }

  .problem-list p {
    font-size: 21px;
  }

  .problem-conclusion {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .text-cta {
    flex: 0 0 auto;
    margin-top: 0;
  }

  .igor-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 84px;
    align-items: center;
  }

  .igor-visual {
    min-height: 640px;
  }

  .igor-copy > p:not(.eyebrow) {
    font-size: 20px;
  }

  .final {
    padding-top: 48px;
  }

  .final-panel {
    padding: 68px;
  }

  .final-panel > p:not(.eyebrow, .microcopy) {
    font-size: 19px;
  }

  .faq {
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: 70px;
    padding-top: 106px;
  }

  .faq-heading {
    position: sticky;
    top: 110px;
    align-self: start;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.7fr;
    gap: 60px;
  }

  .brand-crop--footer {
    width: 126px;
    height: 32px;
  }

  .brand-crop--footer img {
    width: 126px;
    height: 126px;
  }

  .sticky-cta {
    display: none;
  }

  body.has-sticky-cta {
    padding-bottom: 0;
  }

  .consent-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 22px 24px;
  }

  .consent-banner__actions {
    grid-template-columns: repeat(2, max-content);
  }

  .legal {
    padding-block: 92px 130px;
  }

  .legal-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .value-card {
    min-height: 270px;
    padding: 28px;
  }

  .value-mark {
    margin-bottom: 64px;
  }
}

@media (max-width: 374px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-crop {
    width: 112px;
    height: 30px;
  }

  .brand-crop img {
    width: 112px;
    height: 112px;
  }

  .button--small {
    min-height: 40px;
    padding: 9px 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-action {
    margin-top: 22px;
  }

  .section-heading h2,
  .igor-copy h2,
  .final-panel h2 {
    font-size: 34px;
  }

  .igor-visual {
    min-height: 450px;
  }

  .final-panel {
    padding-inline: 18px;
  }
}

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

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

  .js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
