:root {
  --bg: #f4efe8;
  --bg-soft: #fbf8f3;
  --bg-card: rgba(255, 253, 249, 0.92);
  --bg-card-strong: rgba(255, 255, 255, 0.9);
  --text: #182436;
  --text-soft: #586579;
  --text-muted: #7c8798;
  --line: rgba(224, 216, 205, 0.9);
  --white-line: rgba(255, 255, 255, 0.82);
  --accent: #f10008;
  --accent-hover: #ff1b1b;
  --accent-soft: #ffb596;
  --success: #86d35f;
  --shadow-soft: 0 24px 55px -35px rgba(15, 23, 42, 0.24);
  --shadow-panel: 0 32px 80px -48px rgba(15, 23, 42, 0.45);
  --shadow-hero: 0 42px 110px -65px rgba(15, 23, 42, 0.48);
  --shadow-button: 0 18px 35px -20px rgba(241, 0, 8, 0.8);
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 32%),
    linear-gradient(180deg, #f5efe8 0%, #efe8df 100%);
  color: var(--text);
  font: 16px/1.5 "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.deferred-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(15, 23, 42, 0.08));
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

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

[hidden] {
  display: none !important;
}

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

.mobile-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px -24px rgba(15, 23, 42, 0.28);
}

.mobile-topbar__brand {
  min-width: 0;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding-inline: 4px;
}

.mobile-topbar__logo {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 4px;
  box-shadow: 0 8px 16px -12px rgba(241, 0, 8, 0.45);
}

.mobile-topbar__brand span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #334155;
}

.mobile-topbar__button,
.desktop-header__button,
.hero-form__primary,
.section-cta__button,
.quiz-form__submit {
  cursor: pointer;
  color: #fff;
  background: var(--accent);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-topbar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 16px;
  min-height: 44px;
  border-radius: 16px;
  box-shadow: 0 16px 30px -20px rgba(241, 0, 8, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.mobile-topbar__button:hover,
.desktop-header__button:hover,
.hero-form__primary:hover,
.quiz-form__submit:hover,
.section-cta__button:hover {
  background: var(--accent-hover);
}

.desktop-header {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero__background,
.hero__background-image,
.hero__background-overlay,
.hero__background-accent {
  position: absolute;
  inset: 0;
}

.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__background-overlay {
  background: linear-gradient(180deg, rgba(12, 18, 30, 0.82) 0%, rgba(12, 18, 30, 0.64) 34%, rgba(12, 18, 30, 0.18) 72%, rgba(12, 18, 30, 0) 100%);
}

.hero__background-accent {
  background:
    radial-gradient(circle at top right, rgba(241, 0, 8, 0.24), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 140, 105, 0.1), transparent 22%);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__content {
  max-width: 640px;
  color: #fff;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__subtitle {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--accent-soft);
}

.hero__buyout-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.hero__buyout-item,
.hero__buyout-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero__buyout-item span:last-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.hero__buyout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1.5px solid var(--success);
  border-radius: 50%;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  color: var(--success);
}

.hero__offer-cards,
.hero__chips,
.hero__side,
.hero__buyout-panel {
  display: none;
}

.hero-form {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px -36px rgba(15, 23, 42, 0.34);
}

.hero-form__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #ff2a17;
}

.hero-form__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2a17;
  flex: 0 0 10px;
}

.hero-form__label {
  padding-inline: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.hero-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-form__change,
.hero-form__secondary {
  cursor: pointer;
}

.hero-form__change {
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  text-decoration: underline;
  text-decoration-color: #cbd5e1;
  text-underline-offset: 2px;
}

.hero-form__change:hover {
  color: #334155;
}

.method-select {
  position: relative;
  margin-top: 8px;
}

.method-select__trigger,
.hero-form__input,
.quiz-form input,
.quiz-form select {
  width: 100%;
  border: 1px solid #dfd8cd;
  border-radius: 18px;
  background: #fbfaf7;
  color: #0f172a;
}

.method-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
}

.method-select.is-open .method-select__trigger {
  border-color: #ff5b37;
  box-shadow: 0 0 0 1px rgba(255, 91, 55, 0.12);
}

.method-select__arrow {
  color: #64748b;
  transition: transform 0.2s ease;
}

.method-select.is-open .method-select__arrow {
  transform: rotate(180deg);
}

.method-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  overflow: hidden;
  border: 1px solid #dfd8cd;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 40px -24px rgba(15, 23, 42, 0.35);
}

.method-select__option {
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
  color: #475569;
  cursor: pointer;
}

.method-select__option:hover,
.method-select__option.is-active {
  background: #fff4ef;
}

.method-select__option.is-active {
  font-weight: 700;
  color: #ff3f1d;
}

.hero-form__primary {
  width: 100%;
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px 24px;
  box-shadow: var(--shadow-button);
  font-size: 16px;
  font-weight: 800;
}

.hero-form__primary:active,
.quiz-form__submit:active,
.section-cta__button:active,
.desktop-header__button:active,
.mobile-topbar__button:active {
  transform: translateY(1px);
}

.hero-form__input {
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
  color: #0f172a;
}

.hero-form__input::placeholder,
.quiz-form input::placeholder {
  color: #94a3b8;
}

.hero-form__input:focus,
.method-select__trigger:focus,
.quiz-form input:focus,
.quiz-form select:focus {
  outline: 2px solid rgba(255, 140, 105, 0.55);
  outline-offset: 2px;
}

.hero-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
}

.hero-form__agree input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #ef4444;
}

.hero-form__success,
.quiz-form__success {
  text-align: center;
}

.hero-form__success-icon,
.quiz-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 4px auto 14px;
  border-radius: 50%;
  background: rgba(79, 154, 98, 0.14);
  color: #4f9a62;
  font-size: 30px;
  font-weight: 900;
}

.hero-form__success-title,
.quiz-form__success-title {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
}

.hero-form__success-text,
.quiz-form__success-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
}

.hero-form__success-phone {
  margin-top: 16px;
  border: 1px solid #ece5d9;
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #0f172a;
}

.hero-form__secondary {
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
  padding: 14px 22px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: 920px;
}

.section--light {
  background: transparent;
}

.section--warm {
  overflow: hidden;
  border-top: 1px solid #eadfd3;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.84), transparent 38%),
    linear-gradient(180deg, rgba(251, 248, 243, 0.72), rgba(242, 236, 228, 0.88));
}

.section--cta {
  overflow: hidden;
  border-top: 1px solid #eadfd3;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 36%),
    linear-gradient(180deg, rgba(249, 244, 237, 0.78), rgba(243, 236, 227, 0.92));
}

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

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

.section-heading h2,
.section-cta h2 {
  margin: 0;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #152031;
}

.section-heading p,
.section-cta p {
  margin: 16px auto 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.media-strip {
  position: relative;
}

.media-strip + .media-strip {
  margin-top: 28px;
}

.media-strip__controls {
  pointer-events: none;
}

.media-strip__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px -18px rgba(241, 0, 8, 0.8);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.media-strip__nav:first-child {
  left: -8px;
}

.media-strip__nav:last-child {
  right: -8px;
}

.media-strip__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 8px 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.media-strip__track--wide {
  gap: 16px;
}

.video-card,
.photo-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: var(--shadow-soft);
}

.video-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  width: calc(50% - 10px);
  min-width: 150px;
  max-width: 168px;
  min-height: 212px;
  padding: 16px 14px 18px;
  background: linear-gradient(180deg, #172033 0%, #24354f 100%);
  cursor: pointer;
}

.video-card::after {
  content: none;
}

.video-card__eyebrow,
.video-card__title,
.video-card__hint {
  display: block;
  position: relative;
  z-index: 1;
  text-align: left;
}

.video-card__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.video-card__title {
  max-width: 104px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.video-card__hint {
  margin-top: auto;
  padding-right: 54px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.video-card__play {
  position: absolute;
  right: 14px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 36px -22px rgba(241, 0, 8, 0.62);
  font-size: 18px;
}

.photo-card {
  width: calc(50% - 10px);
  min-width: 150px;
  max-width: 168px;
  border-radius: 24px;
}

.photo-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.quiz {
  display: grid;
  gap: 24px;
}

.quiz-form,
.doc-card,
.process-card {
  border: 1px solid #e8dfd4;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 38px 90px -55px rgba(15, 23, 42, 0.28);
}

.quiz-form {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
}

.quiz-form h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}

.quiz-form > p {
  margin: 8px 0 24px;
  color: var(--text-soft);
}

.quiz-form__grid {
  display: grid;
  gap: 16px;
}

.quiz-form__grid + .quiz-form__grid,
.quiz-form__comments {
  margin-top: 16px;
}

.quiz-form label {
  display: block;
}

.quiz-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.quiz-form input,
.quiz-form select {
  padding: 14px 16px;
}

.quiz-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #94a3b8 50%), linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.quiz-form__submit {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
  padding: 14px 24px;
  box-shadow: var(--shadow-button);
  font-size: 17px;
  font-weight: 800;
}

.docs-grid,
.process-grid {
  display: grid;
  gap: 14px;
}

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

.doc-card {
  border-radius: 24px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 24px 55px -40px rgba(15, 23, 42, 0.22);
}

.doc-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ece2d7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 24px -20px rgba(15, 23, 42, 0.32);
  font-size: 24px;
}

.doc-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.doc-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
}

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

.process-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 108px;
  padding: 18px 14px 16px;
  box-shadow: 0 18px 38px -34px rgba(15, 23, 42, 0.2);
}

.process-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #dc2626;
}

.process-card__title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.process-card--wide {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
}

.section-cta {
  text-align: center;
}

.section-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 18px;
  padding: 14px 28px;
  box-shadow: 0 20px 40px -22px rgba(241, 0, 8, 0.48);
  font-size: 18px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #181b20 0%, #12151a 100%);
  color: #fff;
}

.footer__inner {
  display: grid;
  gap: 28px;
  padding: 56px 0 36px;
}

.footer__logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer__logo span {
  color: #ef4444;
}

.footer__brand p,
.footer__meta,
.footer__nav a {
  color: #94a3b8;
}

.footer__nav {
  display: grid;
  gap: 12px;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 12px 32px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 420px);
  margin: 32px auto;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 40px 120px -65px rgba(0, 0, 0, 0.85);
}

.video-modal__dialog video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px -18px rgba(241, 0, 8, 0.62);
  font-size: 18px;
  cursor: pointer;
}

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

  .hero__container {
    padding-top: 96px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    margin-top: 16px;
    font-size: 24px;
  }

  .hero-form {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-form__caption {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .hero-form__label {
    font-size: 14px;
  }

  .hero-form__primary,
  .quiz-form__submit {
    padding-block: 16px;
    font-size: 18px;
  }

  .hero-form__input,
  .method-select__trigger {
    font-size: 16px;
  }

  .video-card {
    min-width: 180px;
    max-width: 220px;
    min-height: 236px;
  }

  .photo-card {
    min-width: 220px;
    max-width: 240px;
  }

  .quiz-form {
    padding: 32px;
  }

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

  .docs-grid {
    gap: 24px;
  }

  .doc-card {
    padding: 24px;
  }

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

  .process-card--wide {
    grid-column: auto;
    max-width: none;
  }

  .footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .mobile-topbar {
    display: none;
  }

  .desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: block;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px -24px rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(14px);
  }

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

  .desktop-header__logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
  }

  .desktop-header__logo span {
    color: #dc2626;
  }

  .desktop-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .desktop-header__nav a {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
  }

  .desktop-header__nav a:hover {
    color: #dc2626;
  }

  .desktop-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 26px -18px rgba(241, 0, 8, 0.62);
    font-size: 15px;
    font-weight: 800;
  }

  .hero__container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding-top: 128px;
    padding-bottom: 96px;
  }

  .hero__content {
    flex: 0 0 52%;
    max-width: none;
  }

  .hero__side {
    display: block;
    flex: 0 0 48%;
    width: 48%;
  }

  .hero__title {
    font-size: 64px;
  }

  .hero__buyout-list--mobile {
    display: none;
  }

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

  .offer-card {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 24px 60px -40px rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(12px);
  }

  .offer-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f9ede8;
    color: #d96540;
    font-size: 22px;
  }

  .offer-card__title {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
  }

  .offer-card__text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
  }

  .hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .hero__chips span {
    border: 1px solid #ded7cc;
    border-radius: 999px;
    padding: 8px 16px;
    background: #fbfaf7;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
  }

  .hero-form {
    max-width: 580px;
    margin-top: 20px;
  }

  .hero__side {
    width: 100%;
  }

  .hero__side-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 24px;
    padding: 14px 16px;
    background: #fbfaf7;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
  }

  .hero__side-intro span {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 12px;
    background: #fff;
    box-shadow: 0 8px 20px -16px rgba(15, 23, 42, 0.28);
    font-size: 12px;
    font-weight: 800;
    color: #d96540;
    white-space: nowrap;
  }

  .hero__side {
    position: relative;
  }

  .hero__side > .hero__side-intro,
  .scenario-grid {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
  }

  .hero__side > .hero__side-intro {
    border-radius: 34px 34px 0 0;
    border-bottom: 0;
    box-shadow: none;
  }

  .scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border-radius: 0 0 34px 34px;
    box-shadow: var(--shadow-hero);
  }

  .scenario-card {
    border: 1px solid #ebe5da;
    border-radius: 24px;
    padding: 16px;
    background: #fbfaf7;
    box-shadow: 0 24px 55px -45px rgba(15, 23, 42, 0.35);
  }

  .scenario-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px -16px rgba(15, 23, 42, 0.28);
    color: #d96540;
    font-size: 20px;
  }

  .scenario-card__title {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
  }

  .scenario-card__text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
  }

  .hero__buyout-panel {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: -32px;
    padding-bottom: 56px;
  }

  .hero__buyout-panel > .hero__buyout-panel-title,
  .hero__buyout-panel-grid {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
  }

  .hero__buyout-panel-title {
    padding: 20px 24px 8px;
    border-radius: 28px 28px 0 0;
    border-bottom: 0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
  }

  .hero__buyout-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 24px 24px;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 30px 85px -55px rgba(15, 23, 42, 0.35);
  }

  .hero__buyout-panel-item {
    gap: 10px;
    border-radius: 16px;
    padding: 12px 14px;
    background: #fbfaf7;
  }

  .hero__buyout-panel-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #475569;
  }

  .section {
    padding: 88px 0;
  }

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

  .section-heading h2,
  .section-cta h2 {
    font-size: 56px;
  }

  .section-heading p,
  .section-cta p {
    font-size: 18px;
  }

  .video-card {
    min-width: 240px;
    max-width: 260px;
    min-height: 260px;
  }

  .photo-card {
    min-width: 240px;
    max-width: 260px;
  }

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

  .doc-card {
    padding: 32px 24px;
  }

  .doc-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .doc-card p {
    font-size: 14px;
  }

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

  .process-card,
  .process-card--wide {
    grid-column: auto;
    max-width: none;
  }

  .section-cta__button {
    padding: 16px 32px;
    font-size: 20px;
  }
}
