:root {
  --bg: #d9eefb;
  --bg-top: #eef9ff;
  --ink: #182333;
  --ink-soft: #556174;
  --brand: #0f2742;
  --brand-strong: #081a2f;
  --accent: #b88f54;
  --accent-deep: #8b6938;
  --surface: #ffffff;
  --surface-soft: #f3f6fa;
  --line: rgba(15, 39, 66, 0.13);
  --line-strong: rgba(15, 39, 66, 0.22);
  --success: #0f7a5b;
  --danger: #b03b52;
  --shadow-soft: 0 5px 5px rgba(8, 21, 40, 0.08);
  --shadow-mid: 0 20px 46px rgba(8, 21, 40, 0.12);
  --shadow-hard: 0 30px 62px rgba(8, 21, 40, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --hero-card-height: 385px;
  --section-head-max: 20ch;
  --section-grid-gap: 0.86rem;
  --section-grid-gap-tight: 0.85rem;
  --section-grid-offset: 1.12rem;
  --ribbon-shadow: 0 8px 16px rgba(4, 14, 28, 0.28);
}

* { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(76vw 62vw at -10% -16%, rgba(255, 255, 255, 0.72), transparent 60%),
    radial-gradient(62vw 58vw at 108% -8%, rgba(128, 197, 239, 0.34), transparent 62%),
    radial-gradient(84vw 58vw at 52% 120%, rgba(44, 118, 177, 0.16), transparent 70%),
    linear-gradient(165deg, #f2fbff 0%, #ddf0fb 48%, #c7e3f5 100%);
  overflow-x: hidden;
  line-height: 1.55;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -4;
  background:
    conic-gradient(from 212deg at 16% 12%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 24%, rgba(58, 139, 201, 0.18) 39%, rgba(255, 255, 255, 0) 63%),
    radial-gradient(64vw 42vw at 20% 36%, rgba(74, 153, 212, 0.16), transparent 73%),
    radial-gradient(52vw 38vw at 82% 20%, rgba(184, 143, 84, 0.1), transparent 74%);
  mix-blend-mode: soft-light;
  opacity: 0.92;
}

body::after {
  z-index: -1;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.6) 0.7px, transparent 0.7px),
    radial-gradient(rgba(32, 102, 156, 0.12) 0.6px, transparent 0.6px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
  opacity: 0.1;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 88%);
}

::selection {
  background: rgba(184, 143, 84, 0.24);
  color: var(--brand-strong);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(41, 120, 182, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 120, 182, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(184, 143, 84, 0.035) 1px, transparent 1px);
  background-size: 84px 84px, 84px 84px, 120px 120px;
  opacity: 0.42;
  mask-image: radial-gradient(160% 94% at 50% 0%, rgba(0, 0, 0, 0.78), transparent 96%);
}

.bg-glow {
  position: fixed;
  width: 52vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: blur(74px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
}

.bg-glow--one {
  left: -22vw;
  top: -18vw;
  background:
    radial-gradient(circle at 46% 38%, rgba(67, 152, 216, 0.48), rgba(67, 152, 216, 0.14) 50%, transparent 74%);
}

.bg-glow--two {
  right: -26vw;
  top: 2vw;
  background:
    radial-gradient(circle at 42% 42%, rgba(155, 214, 244, 0.44), rgba(155, 214, 244, 0.16) 54%, transparent 76%);
  opacity: 0.2;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 75px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(241, 250, 255, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--brand-strong);
  text-decoration: none;
}

.brand-mark {
  width: 60px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--brand), #1a3d63);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 24px rgba(10, 26, 45, 0.2);
  position: relative;
}



.brand-mark img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-text__title {
  display: block;
}

.brand-text__tagline {
  display: block;
  width: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.2;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 0.95rem;
}

.site-nav a,
.nav-phone,
.site-footer a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-nav a {
  position: relative;
  padding: 0.2rem 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -2px;
  height: 1px;
  background: rgba(184, 143, 84, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  margin-left: 0.5rem;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.84rem;
  background: rgba(255, 255, 255, 0.86);
}

.nav-phone:hover {
  color: var(--brand-strong);
  border-color: rgba(184, 143, 84, 0.45);
}

.menu-toggle { display: none; }

/* Shared type */
h1,
h2,
.brand-text,
.price {
  font-family: "Unbounded", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h2 {
  min-height: calc(1.14em * 3);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.14rem;
  color: var(--brand);
}

.kicker {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Hero */
.hero {
  min-height: calc(100svh - 78px);
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(0.9rem, 1.7vw, 1.4rem);
  align-items: stretch;
  flex: 1;
}

.hero-main,
.hero-side {
  min-width: 0;
}

.hero-title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  width: 100%;
  max-width: none;
  letter-spacing: -0.012em;
  color: var(--brand-strong);
  text-wrap: pretty;
  line-height: 1.06;
  padding-inline: 10px;
}

.hero-title__line {
  display: block;
}

.hero-title__accent {
  margin-top: 0.1em;
  color: #17385d;
  width: fit-content;
  display: inline;
  padding-right: 0.18em;
}

.hero-fastlead {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-mid);
  padding: 1.24rem;
  color: var(--ink);
  min-height: var(--hero-card-height);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: visible;
}


.hero-fastlead__promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), #173b5f);
  color: #edf3fa;
  padding: 0.72rem 0.96rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(8, 24, 44, 0.2);
}

.hero-fastlead__promo span {
  font-size: 0.86rem;
  letter-spacing: 0.012em;
}

.hero-fastlead__promo strong {
  color: #e4c998;
  font-size: 0.98rem;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-fastlead__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: #22344b;
}

.hero-fastlead__form {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.62rem;
}

.hero-fastlead__form label {
  display: block;
}

.hero-fastlead__form input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 0 0.88rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-fastlead__form input::placeholder {
  color: #7a8798;
}

.hero-fastlead__form input:focus {
  outline: none;
  border-color: rgba(184, 143, 84, 0.62);
  box-shadow: 0 0 0 3px rgba(184, 143, 84, 0.16);
}

.hero-fastlead__submit {
  grid-column: 1 / -1;
  height: 56px;
  border: 1px solid rgba(6, 18, 34, 0.72);
  border-radius: 14px;
  background: linear-gradient(145deg, #123154, #0b2038);
  color: #f4f8fc;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-fastlead__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(8, 23, 43, 0.28);
  filter: saturate(1.08);
}

.hero-fastlead__note {
  grid-column: 1 / -1;
  margin: 0.12rem 0 0;
  color: #66778d;
  font-size: 0.81rem;
}

.hero-fastlead__status {
  grid-column: 1 / -1;
  min-height: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.hero-fastlead__status.ok { color: var(--success); }
.hero-fastlead__status.err { color: var(--danger); }

.btn {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.66rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.24s ease, border-color 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}

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

.btn-primary {
  color: #f2f7fb;
  background: linear-gradient(145deg, #123154, #0a1f37);
  box-shadow: 0 14px 28px rgba(8, 23, 43, 0.25);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-primary:hover {
  filter: brightness(1.2);
}

.btn-soft {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-soft:hover {
  background: #f6f9fd;
  border-color: rgba(184, 143, 84, 0.45);
}

.hero-pills {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.hero-pills span {
  font-size: 0.82rem;
  color: #30425a;
  padding: 0.38rem 0.72rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-connect {
  margin-top: 0.9rem;
}

.hero-connect--inline {
  grid-column: 1 / -1;
  margin-top: 0.1rem;
}

.hero-connect__title {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #31445d;
  padding-inline: 10px;
}

.hero-connect__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
}

.hero-connect__link {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 39, 66, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  width: 100%;
}

.hero-connect__link:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 143, 84, 0.5);
  background: #f8fbff;
}

.hero-side {
  display: grid;
  gap: 0.62rem;
  align-content: start;
}

.hero-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 1px solid var(--line);
  background: #0b1e34;
}

.hero-photo img {
  width: 100%;
  height: var(--hero-card-height);
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.04rem;
  background: linear-gradient(180deg, rgba(8, 24, 44, 0.2), rgba(7, 20, 38, 0.88));
  color: #ecf3fa;
}

.hero-photo figcaption strong {
  display: block;
  margin-bottom: 0.22rem;
}

.hero-photo figcaption small {
  color: #c5d2df;
}

.hero-metric-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-metric {
  padding: 0.5rem;
  border-radius: 13px;
  background: linear-gradient(185deg, #1a334f, #0c2138);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  box-shadow: 0 12px 24px rgba(8, 20, 37, 0.18);
}

.hero-metric strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 1.02rem;
  color: #e3c896;
}

.hero-metric span {
  color: #c9d5e3;
  font-size: 0.78rem;
}

.hero-ribbon {
  margin-top: auto;
  background: linear-gradient(90deg, var(--brand-strong), #0e233c 52%, var(--brand-strong));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-ribbon__marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ribbonMove 26s linear infinite;
  will-change: transform;
}

.hero-ribbon__track {
  display: flex;
  flex-shrink: 0;
  min-width: max(100%, max-content);
  gap: 2.7rem;
  padding: 0.56rem 1.35rem 0.56rem 0;
  white-space: nowrap;
  color: #dbc49d;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-ribbon__track span {
  position: relative;
}

.hero-ribbon__track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.62rem;
  border-radius: 50%;
  background: rgba(219, 196, 157, 0.64);
  vertical-align: middle;
}

@keyframes ribbonMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section heads */
.section-head {
  --section-head-width: var(--section-head-max);
}

.section-head h2 {
  max-width: var(--section-head-width);
  color: var(--brand-strong);
}

.lots .section-head,
.cases .section-head {
  --section-head-width: 28ch;
}

.cases .section-head h2 { min-height: 0; }

.section-head p:last-of-type,
.process-step p,
.trust-main p,
.bento-card p,
.price-panel li,
.lot-card__specs li,
.case-card__story,
.case-card__metrics span,
.accordion p,
.lead-copy p,
.form-note,
.form-status,
.wizard-step-label,
.buyout-intro p,
.buyout-form__note,
.buyout-form__status {
  color: var(--ink-soft);
}

/* Process zigzag */
.process-step,
.bento-card,
.price-panel,
.lot-card,
.case-card {
  border-radius: var(--radius-lg);
}

.process-step,
.bento-card,
.price-panel,
.lot-card,
.case-card,
.accordion details {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-zigzag {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.process-step {
  padding: 1.24rem;
  max-width: 78%;
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(184, 143, 84, 0.08));
}

.process-step--offset {
  margin-left: auto;
}

.step-num {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
}

.process-step h3 {
  margin-bottom: 0.35rem;
}

/* Trust bento */
.trust-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.12rem;
  align-items: start;
}

.trust-main h2 {
  max-width: 16ch;
}

.trust-main p {
  max-width: 60ch;
}

.trust-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.78rem;
}

.bento-card {
  padding: 1rem;
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card h3 {
  margin-bottom: 0.34rem;
}

/* Pricing deck */
.pricing-deck,
.lots-grid,
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--section-grid-offset);
}

.pricing-deck {
  gap: var(--section-grid-gap-tight);
}

.lots-grid,
.cases-grid {
  gap: var(--section-grid-gap);
}

.price-panel {
  position: relative;
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-panel--offer {
  overflow: hidden;
}

.price-panel--active {
  transform: translateY(-9px);
  overflow: hidden;
  background: linear-gradient(170deg, #122f50, #091d33);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-hard);
}

.price-panel--active h3,
.price-panel--active li {
  color: #d6e0eb;
}

.price-panel--active .price {
  color: #e4c898;
}

.price-panel--active .btn-primary {
  background: linear-gradient(145deg, #193e66, #102a46);
  border-color: rgba(255, 255, 255, 0.22);
}

.tag {
  display: inline-block;
  align-self: start;
  font-size: 0.7rem;
  color: #f0dcc0;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 220, 192, 0.38);
  background: rgba(184, 143, 84, 0.16);
}

.tag--side,
.price-panel--active 
.tag {
  position: absolute;
  transform: rotate(45deg);
  transform-origin: 100% 0;
  z-index: 2;
}

.tag--side {
  top: 5.5rem;
  color: var(--accent-deep);
  right: -0.8rem;
}

.price-panel--active .tag {
  top: 4.4rem;
  right: -0.8rem;
}

.price-panel--active h3 {
  padding-right: 6.5rem;
}

.price {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: var(--brand);
  font-size: 1.56rem;
  line-height: 1.08;
}

.price__current {
  font-size: 1.56rem;
  font-weight: 800;
}

.price__old {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: 0.8;
}

.price-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
  flex: 1 1 auto;
}

.price-panel .btn {
  margin-top: auto;
  width: 100%;
  line-height: 1.2;
}

.price-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: rgba(184, 143, 84, 0.92);
}

.price-panel--active li::before {
  background: #e4c898;
}

/* Pricing modal */
body.modal-open {
  overflow: hidden;
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 38, 0.58);
  backdrop-filter: blur(12px);
}

.pricing-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92svh, 760px);
  border-radius: 28px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 252, 0.98));
  box-shadow: 0 34px 80px rgba(6, 19, 35, 0.3);
}

.pricing-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 100%;
}

.pricing-modal__content,
.pricing-modal__form {
  padding: clamp(1.25rem, 3.3vw, 2.3rem);
}

.pricing-modal__content {
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(184, 143, 84, 0.12), transparent 70%),
    radial-gradient(64% 84% at 100% 100%, rgba(18, 49, 84, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.96));
}

.pricing-modal__kicker,
.pricing-modal__form-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-modal__kicker {
  color: var(--brand);
}

.pricing-modal__badge {
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 143, 84, 0.34);
  background: rgba(184, 143, 84, 0.12);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-modal__content h2 {
  min-height: 0;
  max-width: 12ch;
  margin-bottom: 0.9rem;
}

.pricing-modal__intro {
  margin: 0 0 1.15rem;
  max-width: 44ch;
  color: #304159;
  font-size: 1rem;
}

.pricing-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.pricing-modal__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.78rem;
  align-items: start;
  color: #24344a;
  font-size: 1rem;
  line-height: 1.45;
}

.pricing-modal__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #c69b58, #a67b45);
  box-shadow: 0 0 0 6px rgba(184, 143, 84, 0.12);
}

.pricing-modal__form {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  background:
    radial-gradient(82% 88% at 100% 0%, rgba(184, 143, 84, 0.18), transparent 62%),
    linear-gradient(165deg, #133357 0%, #0b223b 100%);
  color: #eef4fa;
}

.pricing-modal__form-kicker {
  color: rgba(228, 245, 255, 0.72);
}

.pricing-modal__form h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.04;
}

.pricing-modal__form h3 span {
  color: #e3c896;
}

.pricing-modal__form-text {
  margin: 0 0 0.2rem;
  max-width: 24ch;
  color: rgba(233, 241, 248, 0.82);
  font-size: 1rem;
}

.pricing-modal__form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  padding: 0.9rem 1rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-modal__form input::placeholder {
  color: #78869a;
}

.pricing-modal__form input:focus {
  outline: none;
  border-color: rgba(227, 200, 150, 0.72);
  box-shadow: 0 0 0 3px rgba(227, 200, 150, 0.18);
}

.pricing-modal__submit {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 235, 199, 0.28);
  background: linear-gradient(180deg, #e3c896 0%, #c49a5b 100%);
  color: #091d33;
  box-shadow: 0 16px 30px rgba(4, 12, 23, 0.24);
}

.pricing-modal__submit:hover {
  filter: brightness(1.04);
}

.pricing-modal__note,
.pricing-modal__status {
  margin: 0;
}

.pricing-modal__note {
  color: rgba(233, 241, 248, 0.7);
  font-size: 0.82rem;
  line-height: 1.35;
}

.pricing-modal__status {
  min-height: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-modal__status.ok {
  color: #a7ebcb;
}

.pricing-modal__status.err {
  color: #ffc4cf;
}

.pricing-modal__success {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: min(72svh, 620px);
  padding: clamp(1.6rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(60% 75% at 50% 0%, rgba(169, 217, 190, 0.24), transparent 68%),
    radial-gradient(46% 58% at 100% 100%, rgba(184, 143, 84, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 246, 0.98));
}

.pricing-modal__success[hidden] {
  display: none;
}

.pricing-modal__success-icon {
  width: clamp(92px, 10vw, 116px);
  height: clamp(92px, 10vw, 116px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, #34b56a 0%, #239453 100%);
  box-shadow:
    0 20px 38px rgba(34, 123, 74, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.pricing-modal__success-icon svg {
  width: 58%;
  height: 58%;
}

.pricing-modal__success-icon circle {
  fill: transparent;
}

.pricing-modal__success-icon path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-modal__success-kicker {
  margin: 0;
  color: #2d8a56;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-modal__success h2 {
  margin: 0;
  min-height: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.pricing-modal__success-text {
  margin: 0;
  max-width: 28ch;
  color: #38506a;
  font-size: 1.02rem;
  line-height: 1.5;
}

.pricing-modal__success-button {
  min-width: min(280px, 100%);
  min-height: 56px;
  border: 1px solid rgba(18, 49, 84, 0.12);
  background: linear-gradient(180deg, #133357 0%, #0b223b 100%);
  color: #f5f8fc;
  box-shadow: 0 18px 34px rgba(10, 27, 47, 0.16);
}

.pricing-modal__success-button:hover {
  filter: brightness(1.04);
}

.pricing-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 39, 66, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
  box-shadow: var(--shadow-soft);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.pricing-modal__close:hover {
  transform: scale(1.04);
  border-color: rgba(184, 143, 84, 0.4);
  background: #ffffff;
}

/* Reviews */
.avito-reviews {
  margin-top: 1.6rem;
  padding: 0;
  overflow: visible;
}

.avito-reviews__carousel {
  position: relative;
  padding: 0;
}

.avito-reviews__track {
  --avito-review-gap: 0.72rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--avito-review-gap) * 2)) / 3);
  gap: var(--avito-review-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  padding: 0.08rem 0.1rem 1.25rem;
  margin-inline: -0.1rem;
  scrollbar-width: none;
}

.avito-reviews__track::-webkit-scrollbar {
  display: none;
}

.avito-reviews__arrow {
  position: absolute;
  top: calc(50% - 0.58rem);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 39, 66, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  box-shadow: var(--shadow-soft);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.avito-reviews__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(184, 143, 84, 0.5);
  background: #ffffff;
}

.avito-reviews__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

.avito-reviews__arrow--prev {
  left: -3.2rem;
}

.avito-reviews__arrow--next {
  right: -3.2rem;
}

.avito-reviews__action {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
}

.avito-review-card {
  min-height: 230px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.66rem;
  scroll-snap-align: start;
}

.avito-review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.avito-review-card__top strong {
  color: var(--brand);
  font-size: 1rem;
}

.avito-review-card__top span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.avito-review-card__rating {
  color: var(--accent-deep);
  letter-spacing: 0.08em;
  font-size: 0.96rem;
}

.avito-review-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Extra lead */
.lead--mid {
  padding-top: 86px;
  padding-bottom: 86px;
}

/* Buyout form */
.buyout {
  background: linear-gradient(180deg, rgba(234, 240, 248, 0.55), rgba(219, 228, 239, 0));
}

.buyout-wrap {
  margin-top: 0.9rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 250, 0.9));
  box-shadow: var(--shadow-mid);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.buyout-intro {
  height: 100%;
  min-height: 0;
}

.buyout-intro h3 {
  margin: 0;
}

.buyout-intro p {
  margin: 0;
  max-width: 44ch;
  line-height: 1.34;
}

.buyout-intro__media {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #e8edf4;
}

.buyout-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.buyout-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.buyout-form label {
  display: grid;
  gap: 0.22rem;
  font-size: 0.85rem;
  line-height: 1.2;
  color: #24344a;
  font-weight: 600;
}

.buyout-form input,
.buyout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 0.6rem 0.72rem;
  font-size: 0.94rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.buyout-form input:focus,
.buyout-form textarea:focus {
  outline: none;
  border-color: rgba(184, 143, 84, 0.64);
  box-shadow: 0 0 0 3px rgba(184, 143, 84, 0.16);
}

.buyout-form textarea {
  resize: vertical;
  min-height: 74px;
}

.buyout-form__wide,
.buyout-form__status {
  grid-column: 1 / -1;
}

.buyout-form__submit {
  grid-column: 1 / span 1;
  min-height: 46px;
}

.buyout-form__note {
  grid-column: 2 / -1;
  margin: 0;
  align-self: center;
  font-size: 0.76rem;
  line-height: 1.24;
}

.buyout-form__status {
  margin: 0;
  min-height: 1.05rem;
  font-weight: 700;
  font-size: 0.84rem;
}

.buyout-form__status.ok { color: var(--success); }
.buyout-form__status.err { color: var(--danger); }

/* Lots */
.lot-card {
  overflow: hidden;
}

.lot-card__media {
  min-height: 124px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.7rem;
  color: #edf3fb;
  font-family: "Unbounded", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lot-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 17, 31, 0.12), rgba(5, 17, 31, 0.74));
  z-index: 1;
}

.lot-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lot-card__media span {
  position: relative;
  z-index: 2;
}

.lot-card__media--one {
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.18), rgba(8, 24, 43, 0.78)),
    radial-gradient(92% 120% at 100% 0%, rgba(184, 143, 84, 0.48), transparent 60%),
    linear-gradient(130deg, #19385a, #0b2038);
}

.lot-card__media--two {
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.18), rgba(8, 24, 43, 0.78)),
    radial-gradient(82% 130% at 0% 20%, rgba(184, 143, 84, 0.45), transparent 58%),
    linear-gradient(130deg, #15334f, #091c33);
}

.lot-card__media--three {
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.18), rgba(8, 24, 43, 0.78)),
    radial-gradient(84% 120% at 100% 100%, rgba(184, 143, 84, 0.45), transparent 55%),
    linear-gradient(130deg, #1b3f63, #0d2540);
}

.lot-card__body {
  padding: 0.9rem;
  display: grid;
  gap: 0.62rem;
}

.lot-card__price {
  margin: 0;
  color: var(--brand);
  font-family: "Unbounded", sans-serif;
  font-size: 1.28rem;
  line-height: 1.14;
}

.lot-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.36rem;
}

.lot-card__specs li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(184, 143, 84, 0.9);
  margin-right: 0.44rem;
}

/* Cases */
.cases-grid {
  align-items: stretch;
}

.case-card {
  padding: 0.92rem;
  display: grid;
  grid-template-rows: 4.4em 8.2em auto 1fr;
  gap: 0.68rem;
  height: 100%;
}

.case-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 4.4em;
  line-height: 1.18;
  text-wrap: balance;
}

.case-card__tag {
  width: fit-content;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid rgba(184, 143, 84, 0.36);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  background: rgba(184, 143, 84, 0.1);
}

.case-card__story {
  margin: 0;
  min-height: 8.2em;
  text-wrap: pretty;
}

.case-card__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(4.2em, auto));
  gap: 0.46rem;
}

.case-card__metrics li {
  border: 1px solid rgba(15, 39, 66, 0.12);
  background: #f8fafd;
  border-radius: 11px;
  padding: 0.5rem 0.56rem;
  display: grid;
  gap: 0.12rem;
  min-height: 4.2em;
  align-content: start;
}

.case-card__metrics strong {
  color: var(--brand);
  font-family: "Unbounded", sans-serif;
  font-size: 0.88rem;
}

.case-card__video {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b2038;
  aspect-ratio: 16 / 9;
}

.case-card__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ */
.faq {
  padding-top: 120px;
  padding-bottom: 120px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.accordion {
  display: grid;
  gap: 0.64rem;
}

.accordion details {
  border-radius: 15px;
  padding: 0.92rem 1rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--brand);
}

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

.accordion summary::after {
  content: "+";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(184, 143, 84, 0.44);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.accordion details[open] summary::after {
  content: "-";
  background: rgba(184, 143, 84, 0.12);
  transform: rotate(180deg);
}

.accordion__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease;
}

.accordion details[open] .accordion__content {
  opacity: 1;
}

.accordion__content > p {
  min-height: 0;
}

.accordion p {
  margin: 0.66rem 0 0;
}

/* Lead wizard */
.lead-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.lead-copy h2 {
  max-width: 18ch;
}

.wizard {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-mid);
  padding: 1.2rem;
}

.wizard-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(184, 143, 84, 0.18);
  overflow: hidden;
}

.wizard-progress__bar {
  width: 33.33%;
  height: 100%;
  background: linear-gradient(90deg, #14375d, #b88f54);
  transition: width 0.25s ease;
}

.wizard-step-label {
  margin: 0.58rem 0 0.82rem;
  font-weight: 700;
}

.wizard-step { display: none; }
.wizard-step.is-active { display: grid; gap: 0.72rem; }

.wizard-step label {
  display: grid;
  gap: 0.38rem;
  color: #24344a;
  font-weight: 600;
}

.wizard input,
.wizard select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 0.75rem 0.82rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard input:focus,
.wizard select:focus {
  outline: none;
  border-color: rgba(184, 143, 84, 0.64);
  box-shadow: 0 0 0 3px rgba(184, 143, 84, 0.16);
}

.wizard-actions {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
}

.form-status {
  margin: 0.56rem 0 0;
  min-height: 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-status.ok { color: var(--success); }
.form-status.err { color: var(--danger); }

.back-top-wrap {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 1.4rem;
}

/* Footer */
.site-footer {
  margin-top: 30px;
  padding: 1.35rem 0 1.45rem;
  border-top: 1px solid var(--line);
  background: rgba(247, 249, 252, 0.66);
}

.footer-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.55fr);
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-legal {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

.footer-links a {
  white-space: nowrap;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  margin: 0 0.36rem;
  color: rgba(85, 97, 116, 0.7);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 1120px) {
  .trust-layout,
  .faq-layout,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .pricing-deck,
  .lots-grid,
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .buyout-wrap {
    grid-template-columns: 1fr;
  }

  .buyout-intro {
    height: auto;
    min-height: auto;
  }

  .buyout-intro__media {
    min-height: 0;
    height: clamp(190px, 34vw, 260px);
  }

  .reviews-widget-grid {
    grid-template-columns: 1fr;
  }

  .avito-reviews__track {
    grid-auto-columns: calc((100% - var(--avito-review-gap)) / 2);
  }

  .avito-reviews__arrow--prev {
    left: -0.35rem;
  }

  .avito-reviews__arrow--next {
    right: -0.35rem;
  }

  .price-panel--active {
    transform: none;
  }

  .process-step {
    max-width: 100%;
  }
}

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

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .buyout-form {
    grid-template-columns: 1fr 1fr;
  }

  .buyout-form__submit,
  .buyout-form__note {
    grid-column: 1 / -1;
  }

  .hero-photo img {
    height: 330px;
  }

  .pricing-modal__layout {
    grid-template-columns: 1fr;
  }

  .pricing-modal__content h2,
  .pricing-modal__intro,
  .pricing-modal__form-text {
    max-width: none;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 76px;
    flex-direction: column;
    min-width: 235px;
    padding: 0.9rem;
    border-radius: 13px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-mid);
  }

  .site-nav a {
    padding: 0.42rem 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-phone { display: none; }

  .hero-metric-wrap,
  .trust-bento,
  .pricing-deck,
  .buyout-form,
  .lots-grid,
  .cases-grid,
  .faq-layout,
  .lead-layout {
    grid-template-columns: 1fr;
  }

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

  .bento-card--wide {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 0;
  }

  .hero-title {
    font-size: clamp(2rem, 8.2vw, 3rem);
    max-width: 100%;
    margin-bottom: 0.72rem;
  }

  .hero-title__accent {
    width: auto;
  }

  .hero-fastlead {
    height: auto;
    min-height: auto;
  }

  .hero-photo img {
    height: 282px;
  }

  .hero-ribbon__marquee {
    animation-duration: 34s;
  }

  .hero-connect__links {
    gap: 0.45rem;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1180px, calc(100% - 2rem));
  }

  h2 {
    min-height: 0;
  }

  .section {
    padding: 72px 0;
  }

  .lots .section-head h2 br {
    display: none;
  }

  .site-header {
    backdrop-filter: blur(9px);
  }

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

  .hero-fastlead__gift {
    display: none;
  }

  .hero-fastlead,
  .hero-photo,
  .wizard,
  .price-panel,
  .pricing-modal__dialog,
  .avito-reviews,
  .bento-card,
  .lot-card,
  .case-card,
  .accordion details {
    border-radius: 16px;
  }

  .avito-reviews__carousel {
    padding: 0 2.6rem;
  }

  .avito-reviews__arrow--prev {
    left: 0;
  }

  .avito-reviews__arrow--next {
    right: 0;
  }

  .avito-reviews__track {
    grid-auto-columns: 100%;
  }

  .avito-reviews__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .footer-links a {
    white-space: normal;
  }

  .pricing-modal {
    padding: 0.6rem;
  }

  .pricing-modal__dialog {
    max-height: calc(100svh - 1.2rem);
  }

  .pricing-modal__content,
  .pricing-modal__form {
    padding: 1.1rem;
  }

  .pricing-modal__list {
    gap: 0.7rem;
  }

  .pricing-modal__list li {
    gap: 0.65rem;
    font-size: 0.96rem;
  }

  .pricing-modal__close {
    top: 0.6rem;
    right: 0.6rem;
    width: 38px;
    height: 38px;
  }
}

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

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
