*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #f4f7fb;
  --bg-2: #e9eff7;
  --surface: #ffffff;
  --ink: #0f1b2d;
  --ink-2: #1e2d44;
  --slate: #475569;
  --muted: #8a97a8;
  --faint: #c2cbd8;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --blue-soft: #dbe7fe;
  --blue-bright: #3b82f6;
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --amber-soft: #fef1d6;
  --amber-bright: #fbbf24;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --line: #e2e8f2;
  --line-2: #d4deec;
  --fd: "Sora", sans-serif;
  --fb: "Inter", sans-serif;
  --nav-h: 72px;
  --eo: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --es: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r: 14px;
  --r-lg: 20px;
  --sh-s: 0 4px 16px rgba(15, 27, 45, 0.06);
  --sh-m: 0 16px 42px rgba(15, 27, 45, 0.1);
  --sh-l: 0 32px 70px rgba(15, 27, 45, 0.16);
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--slate);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--blue-deep);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 96px 0;
}
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), var(--bg-2) 90%);
}
.ph::after {
  content: "\1F697";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  opacity: 0.4;
}
.ph img {
  position: relative;
  z-index: 1;
  transition: opacity 0.5s, transform 0.9s var(--eo);
}
.ph img.imgfail {
  opacity: 0;
}
.eyebrow {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow svg {
  width: 15px;
  height: 15px;
  fill: var(--amber);
}
.center .eyebrow {
  justify-content: center;
}
.s-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 14px 0 0;
  letter-spacing: -0.02em;
}
.s-title em {
  font-style: normal;
  color: var(--blue);
}
.s-lead {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 14px;
}
.center {
  text-align: center;
}
.center .s-lead {
  margin-left: auto;
  margin-right: auto;
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s,
    border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}
.btn-amber {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.34);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.3);
}
.btn-ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  transform: translateY(-2px);
}
.btn-line {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-line:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-lg {
  padding: 18px 34px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}
/* announce */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 10px 16px;
}
.announce b {
  color: var(--amber-bright);
}
.announce .sep {
  opacity: 0.4;
  margin: 0 10px;
}
/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(244, 247, 251, 0.9);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.nav.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 22px rgba(15, 27, 45, 0.05);
}
.nav-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.brand .blt {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--amber);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand .blt svg {
  width: 19px;
  height: 19px;
  fill: var(--ink);
}
.brand small {
  color: var(--blue);
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate);
  transition: 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.92rem;
}
.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  stroke-width: 2.4;
  fill: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 15px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
/* hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      120% 80% at 80% 0%,
      var(--blue-soft),
      transparent 60%
    ),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 3.5rem;
  align-items: center;
  padding: 64px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-s);
  padding: 7px 14px 7px 8px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-badge .pill {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  font-size: 0.66rem;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 18px 0 0;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
.hero h1 .u {
  background: linear-gradient(transparent 62%, var(--amber-bright) 62%);
}
.hero .lead {
  font-size: 1.12rem;
  color: var(--slate);
  margin: 20px 0 26px;
  max-width: 480px;
}
.hero-ticks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.hero-ticks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.hero-ticks .tk {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-ticks .tk svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.hero-call {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero-call span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-call a {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
}
/* quote widget */
.quote {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-l);
  overflow: hidden;
  border: 1px solid var(--line);
}
.q-head {
  background: var(--ink);
  color: #fff;
  padding: 20px 26px;
}
.q-head-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}
.q-head h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.18rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
}
.q-head h3 svg {
  width: 20px;
  height: 20px;
  fill: var(--amber-bright);
}
.q-step-lab {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.q-prog {
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}
.q-prog span {
  display: block;
  height: 100%;
  background: var(--amber);
  border-radius: 99px;
  width: 33%;
  transition: width 0.4s var(--eo);
}
.q-body {
  padding: 24px 26px 28px;
}
.qstep {
  display: none;
}
.qstep.on {
  display: block;
  animation: fade 0.4s var(--eo);
}
.qf {
  margin-bottom: 15px;
}
.qf label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.qf input,
.qf select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
  transition: 0.18s;
  appearance: none;
}
.qf input:focus,
.qf select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
  background: #fff;
}
.qf select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A97A8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.q-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.q-opt {
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  padding: 13px 12px;
  cursor: pointer;
  transition: 0.18s;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink);
  text-align: center;
}
.q-opt:hover {
  border-color: var(--blue);
}
.q-opt.on {
  background: var(--blue-soft);
  border-color: var(--blue);
  color: var(--blue-deep);
}
.q-opt small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 2px;
}
.q-opt.on small {
  color: var(--blue);
}
.q-toggle {
  display: flex;
  gap: 9px;
}
.q-toggle .q-opt {
  flex: 1;
}
.q-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.q-actions .btn {
  flex: 1;
}
.q-back {
  flex: 0 0 auto !important;
  padding-left: 18px;
  padding-right: 18px;
}
/* offer step */
.offer-box {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  color: #fff;
  margin-bottom: 18px;
}
.offer-box .ol {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-bright);
}
.offer-box .ov {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.1;
  margin: 6px 0;
  letter-spacing: -0.02em;
}
.offer-box .od {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.offer-vehicle {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
}
.offer-vehicle b {
  color: var(--ink);
}
.q-ok {
  display: none;
  text-align: center;
  padding: 8px 0;
}
.q-ok.on {
  display: block;
  animation: fade 0.4s var(--eo);
}
.q-ok .ic {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin: 0 auto 14px;
}
.q-ok h4 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.q-ok p {
  font-size: 0.9rem;
  color: var(--slate);
}
.q-ok .ref {
  font-weight: 800;
  color: var(--blue);
  margin-top: 8px;
  font-size: 0.92rem;
}
.q-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}
.q-trust svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}
/* stats strip */
.stats {
  background: var(--ink);
  color: #fff;
}
.stats-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 34px 0;
}
.stat {
  text-align: center;
  padding: 0 1rem;
}
.stat .n {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--amber-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .l {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}
.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
/* how it works */
.how {
  background: var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: 0.3s;
}
.how-card:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-4px);
  border-color: var(--blue-soft);
}
.how-card .step-n {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--bg-2);
  line-height: 1;
}
.how-card .hi {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.how-card .hi svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.how-card h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
  margin-bottom: 9px;
}
.how-card p {
  font-size: 0.92rem;
  color: var(--slate);
}
/* we buy */
.buy {
  background: var(--surface);
}
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.buy-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 1.6rem;
}
.buy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.94rem;
}
.buy-list .bk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.buy-list .bk svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}
.buy-note {
  margin-top: 1.8rem;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.buy-note em {
  color: var(--blue);
  font-style: normal;
}
/* scrap metal */
.scrap {
  background: var(--amber-soft);
}
.scrap-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 4rem;
  align-items: center;
}
.scrap-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 1.7rem;
}
.scrap-tags li {
  background: var(--surface);
  border: 1px solid var(--line-2);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 99px;
}
.scrap-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 1.9rem;
}
/* image slider (shared: what-we-buy + scrap) */
.buy-img,
.scrap-imgwrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-l);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}
.slider {
  position: absolute;
  inset: 0;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s var(--eo);
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.sl-stamp {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: var(--sh-m);
}
.scrap-imgwrap .sl-stamp {
  background: var(--ink);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.sl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 27, 45, 0.5);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 4;
  transition: background 0.2s;
  backdrop-filter: blur(3px);
}
.sl-arrow:hover {
  background: rgba(15, 27, 45, 0.82);
}
.sl-arrow:active {
  transform: translateY(-50%) scale(0.94);
}
.sl-arrow.prev {
  left: 12px;
}
.sl-arrow.next {
  right: 12px;
}
.sl-arrow i {
  width: 9px;
  height: 9px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  display: block;
}
.sl-arrow.prev i {
  transform: rotate(135deg);
  margin-left: 4px;
}
.sl-arrow.next i {
  transform: rotate(-45deg);
  margin-right: 4px;
}
.sl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 4;
}
.sl-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: 0.25s;
}
.sl-dots button:hover {
  background: rgba(255, 255, 255, 0.85);
}
.sl-dots button.on {
  background: #fff;
  width: 22px;
}
/* why us */
.why {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.9rem;
  transition: 0.3s;
}
.why-card:hover {
  box-shadow: var(--sh-m);
  transform: translateY(-3px);
  border-color: var(--amber-soft);
}
.why-card .wi {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber-deep);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.why-card .wi svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}
.why-card h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--slate);
}
/* cash band */
.cash {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.cash .cbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
}
.cash .cov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, var(--ink) 38%, rgba(15, 27, 45, 0.6));
}
.cash-in {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  text-align: center;
  color: #fff;
}
.cash-in .eyebrow {
  color: var(--amber-bright);
  justify-content: center;
}
.cash-in h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #fff;
  line-height: 1.1;
  margin: 14px 0 12px;
  letter-spacing: -0.02em;
}
.cash-in h2 em {
  color: var(--amber-bright);
  font-style: normal;
}
.cash-in p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 26px;
}
.cash-cta {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}
/* reviews */
.reviews {
  background: var(--surface);
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.rev {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.9rem;
}
.rev .stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 0.92rem;
  margin-bottom: 11px;
}
.rev p {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.rev .who {
  display: flex;
  align-items: center;
  gap: 11px;
}
.rev .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
}
.rev .who b {
  font-family: var(--fb);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.86rem;
  display: block;
}
.rev .who span {
  font-size: 0.76rem;
  color: var(--muted);
}
/* faq */
.faq {
  background: var(--bg);
}
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-it {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: 0.2s;
}
.faq-it.open {
  border-color: var(--blue-soft);
  box-shadow: var(--sh-s);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 19px 22px;
  cursor: pointer;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-q .ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: 0.3s;
  font-size: 1.2rem;
  line-height: 1;
}
.faq-it.open .ico {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--eo);
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--slate);
  font-size: 0.94rem;
}
/* cta band */
.ctaband {
  background: var(--blue);
}
.ctaband-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 54px 0;
  flex-wrap: wrap;
}
.ctaband h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ctaband p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
}
.ctaband .btn-amber:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
/* contact */
.contact {
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: start;
}
.contact h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink);
  line-height: 1.1;
  margin: 14px 0 14px;
  letter-spacing: -0.02em;
}
.contact h2 em {
  color: var(--blue);
  font-style: normal;
}
.ct-info {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-row {
  display: flex;
  gap: 14px;
  align-items: center;
}
.ct-row .ci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ct-row .ci svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.ct-row b {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}
.ct-row span {
  font-size: 0.9rem;
  color: var(--slate);
}
.areas {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.areas h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 11px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tags span {
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 13px;
  border-radius: 99px;
}
.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  position: relative;
}
.form h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.form .fh {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.fg label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 0.94rem;
  padding: 13px 14px;
  outline: none;
  transition: 0.18s;
  width: 100%;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.fg textarea {
  resize: vertical;
  min-height: 72px;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A97A8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.form .btn {
  width: 100%;
  margin-top: 0.3rem;
}
.form-ok {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: var(--r-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 2rem;
}
.form-ok.on {
  display: flex;
  animation: fade 0.5s var(--eo);
}
.form-ok .ic {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}
.form-ok h3 {
  color: var(--ink);
}
.form-ok p {
  color: var(--slate);
}
/* footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .brand {
  color: #fff;
  margin-bottom: 14px;
}
.foot-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.7;
}
.foot-soc {
  display: flex;
  gap: 11px;
  margin-top: 18px;
}
.foot-soc a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  transition: transform 0.2s, box-shadow 0.25s;
}
.foot-soc a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}
.foot-soc a svg {
  width: 40px;
  height: 40px;
  display: block;
}
.foot-col h5 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 15px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a,
.foot-col li {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}
.foot-col a:hover {
  color: var(--amber-bright);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}
/* sticky mobile bar */
.mobar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(15, 27, 45, 0.1);
  padding: 10px 14px;
  gap: 10px;
}
.mobar .btn {
  flex: 1;
  padding: 13px;
}
/* toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 180%);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 0.84rem;
  font-weight: 600;
  z-index: 3000;
  box-shadow: var(--sh-l);
  transition: transform 0.4s var(--es);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast .td {
  color: var(--amber-bright);
}
/* anim */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--eo), transform 0.7s var(--eo);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
/* responsive */
@media (max-width: 960px) {
  .hero-grid,
  .buy-grid,
  .scrap-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .hero-grid {
    padding-top: 40px;
  }
  .stats-in {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
  .stat:nth-child(3) {
    border-left: none;
  }
  .how-grid,
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .rev-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .nav-links,
  .nav-phone {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: calc(var(--nav-h) + 36px);
    left: 0;
    right: 0;
    background: rgba(244, 247, 251, 0.99);
    border-top: 1px solid var(--line);
    padding: 1.6rem 32px;
    gap: 1.3rem;
    box-shadow: var(--sh-m);
  }
  .stats-in {
    grid-template-columns: 1fr 1fr;
  }
  .buy-list,
  .qf-row {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .ctaband-in {
    flex-direction: column;
    text-align: center;
  }
  .mobar {
    display: flex;
  }
  body {
    padding-bottom: 68px;
  }
  .foot-bot {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .wrap,
  .nav-in {
    padding: 0 18px;
  }
  .stats-in {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .q-opts {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
 