:root {
  --ink: #0b0b0b;
  --ink-2: #151515;
  --paper: #f7f3e7;
  --paper-2: #f1e7b1;
  --white: #fff;
  --muted: #5e5948;
  --line: rgba(11, 11, 11, .14);
  --line-light: rgba(255, 255, 255, .18);
  --accent: #f0d44f;
  --accent-dark: #d6ba39;
  --accent-text: #2f2500;
  --green: #75d29b;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .16);
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section { padding: 90px 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 2px; background: var(--accent); }
.eyebrow--light { color: rgba(255, 255, 255, .65); }
.eyebrow--light > span { background: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.018em; }
h1 em, h2 em { color: var(--accent-text); font-family: inherit; font-style: normal; font-weight: inherit; }
h2 { margin-bottom: 18px; font-size: clamp(28px, 2.8vw, 38px); font-weight: 700; }
.section-heading { margin-bottom: 48px; }
.section-heading p, .section-intro > p, .verification-copy > p, .faq-intro > p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}
.section-heading--split { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 100px; }
.section-heading--split h2 { max-width: 760px; margin-bottom: 0; }
.section-heading--split > p { margin: 0 0 4px; }
.section-heading--center { max-width: 830px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { max-width: 680px; margin: 0 auto; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s, background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button--large { min-height: 58px; padding: 16px 27px; font-size: 17px; }
.button--small { min-height: 42px; padding: 10px 18px; }
.button--accent { background: var(--accent); color: var(--ink); box-shadow: 0 14px 34px rgba(240, 212, 79, .34); }
.button--accent:hover { background: var(--accent-dark); box-shadow: 0 18px 42px rgba(240, 212, 79, .42); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: #2a2a2a; }
.button--light { background: var(--white); color: var(--ink); }
.button--plain:hover { border-color: var(--accent); color: var(--ink); }
.button--glass { border-color: rgba(255, 255, 255, .35); background: rgba(255,255,255,.06); color: var(--white); backdrop-filter: blur(10px); }
.button--glass:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255,255,255,.12); }
.button--plain { background: transparent; border-color: var(--line); }
.button--full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

/* header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background .3s, color .3s, box-shadow .3s;
}
.site-header::before { display: none; }
.site-header.scrolled { background: rgba(244, 240, 232, .96); color: var(--ink); box-shadow: 0 1px 0 rgba(18, 18, 18, .08); backdrop-filter: blur(16px); }
.site-header.scrolled::before { opacity: 0; }
.header-shell {
  width: var(--shell);
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; width: 92px; }
.brand img { width: 100%; height: auto; filter: none; }
.site-header.scrolled .brand img { filter: none; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; padding: 12px 0; font-size: 17px; font-weight: 700; color: rgba(255,255,255,.94); }
.site-header.scrolled .desktop-nav a { color: #2f2c27; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; border-radius: 999px; background: currentColor; transition: right .2s; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.phone-link__label { color: rgba(255,255,255,.55); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-header.scrolled .phone-link__label { color: var(--muted); }
.phone-link strong { font-size: 18px; font-weight: 700; }
.header-messengers { display: flex; align-items: center; gap: 8px; }
.header-messenger { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.92); transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; box-shadow: 0 8px 20px rgba(0,0,0,.14); overflow: hidden; }
.header-messenger:hover { transform: translateY(-2px); background: #fff; border-color: rgba(255,255,255,.3); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.site-header.scrolled .header-messenger { border-color: rgba(17,17,17,.10); background: #fff; color: var(--ink); }
.site-header.scrolled .header-messenger:hover { background: #fff; border-color: rgba(17,17,17,.18); }
.header-messenger img { display: block; width: 20px; height: 20px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: absolute; left: 0; right: 0; top: 88px; padding: 28px 24px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 50px rgba(0,0,0,.16); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 700; }
.mobile-menu__actions { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; margin-top: 20px; }

/* hero */
.hero { position: relative; min-height: 780px; overflow: hidden; background: #0e0e0e; color: var(--white); }
.hero-media, .hero-noise { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; transform: scale(1.03); filter: saturate(.8) contrast(1.02) brightness(.58); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.8) 40%, rgba(8,8,8,.28) 72%, rgba(8,8,8,.42) 100%), linear-gradient(180deg, rgba(8,8,8,.58) 0%, rgba(8,8,8,.08) 24%, rgba(8,8,8,.6) 100%); }
.hero-noise { opacity: .07; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.hero-shell { position: relative; z-index: 2; width: var(--shell); min-height: 780px; margin-inline: auto; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; padding: 118px 0 76px; }
.hero-copy { max-width: 700px; }
.hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(36px, 3.7vw, 50px); font-weight: 700; }
.hero h1 em { display: inline; }
.hero-lead { max-width: 860px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.62; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-proof > div { display: flex; gap: 12px; padding: 22px 22px 0 0; }
.hero-proof > div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-proof strong { color: var(--accent); font-size: 14px; }
.hero-proof span { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.45; }
.hero-product { position: relative; width: 100%; max-width: 510px; justify-self: end; }
.deal-card { padding: 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(21,21,21,.76); box-shadow: 0 34px 80px rgba(0,0,0,.4); backdrop-filter: blur(16px); }
.deal-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 7px 4px 15px; }
.deal-card__top > div { display: grid; gap: 4px; }
.deal-card__caption { color: rgba(255,255,255,.48); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.deal-card__top strong { font-size: 19px; letter-spacing: -.02em; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(117,210,155,.35); border-radius: 999px; background: rgba(117,210,155,.08); color: #b7f0ce; font-size: 12px; font-weight: 800; white-space: nowrap; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(117,210,155,.1); }
.deal-card__image { position: relative; height: 265px; overflow: hidden; border-radius: 17px; }
.deal-card__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); }
.auction-mark { position: absolute; left: 12px; bottom: 12px; padding: 7px 9px; border-radius: 8px; background: rgba(0,0,0,.68); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.deal-card__metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 13px 0 0; }
.deal-card__metrics div { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.055); }
.deal-card__metrics span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.43); font-size: 11px; text-transform: uppercase; }
.deal-card__metrics strong { font-size: 18px; }
.accent-text { color: var(--accent); }
.deal-card__footer { display: flex; justify-content: space-between; gap: 16px; padding: 12px 4px 2px; color: rgba(255,255,255,.48); font-size: 12px; }
.deal-card__footer a { color: var(--white); font-weight: 800; }
.floating-note { position: absolute; display: flex; align-items: center; gap: 10px; min-width: 210px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; background: rgba(19,19,19,.86); box-shadow: 0 24px 55px rgba(0,0,0,.3); backdrop-filter: blur(16px); }
.floating-note--one { left: -62px; top: 32%; }
.floating-note--two { right: -42px; bottom: 10%; }
.floating-note__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--accent); color: #111; font-size: 14px; font-weight: 900; flex: 0 0 46px; }
.floating-note div { display: grid; gap: 2px; }
.floating-note strong { font-size: 14px; }
.floating-note small { color: rgba(255,255,255,.75); font-size: 12px; }
.hero-scroll { position: absolute; z-index: 4; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(255,255,255,.45); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-scroll span { position: relative; width: 26px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; }
.hero-scroll span::after { content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; border-radius: 3px; background: var(--white); transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

.trust-strip { overflow: hidden; background: var(--accent); color: var(--ink); }
.trust-strip__track { width: max-content; min-width: 100%; padding: 17px 24px; display: flex; align-items: center; justify-content: center; gap: 30px; font-size: 14px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.trust-strip__track i { width: 4px; height: 4px; border-radius: 50%; background: rgba(11,11,11,.34); }

/* approach */
.approach { background: var(--paper); }
.approach-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 82px; align-items: start; }
.section-intro { position: sticky; top: 130px; }
.section-intro h2 { max-width: 560px; }
.section-intro > p { max-width: 520px; margin-bottom: 30px; }
.decision-system { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.38); }
.decision-system__header { display: flex; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.decision-system__header small { color: var(--muted); }
.decision-list { margin: 0; padding: 0; list-style: none; }
.decision-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 25px 26px; border-bottom: 1px solid var(--line); transition: background .2s, transform .2s; }
.decision-list li:last-child { border-bottom: 0; }
.decision-list li:hover { background: var(--white); transform: translateX(-6px); }
.decision-list > li > span { color: var(--accent); font-size: 14px; font-weight: 900; }
.decision-list strong { display: block; margin-bottom: 7px; font-size: 21px; letter-spacing: -.03em; }
.decision-list p { margin: 0; color: var(--muted); font-size: 16px; }

/* calculator */
.calculator-preview { overflow: hidden; background: var(--ink); color: var(--white); }
.calculator-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.calculator-copy h2 { max-width: 720px; }
.calculator-copy > p { max-width: 720px; color: rgba(255,255,255,.64); font-size: 20px; }
.feature-list { display: grid; gap: 12px; margin: 30px 0 34px; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 16px; }
.feature-list svg { width: 21px; height: 21px; padding: 4px; border-radius: 50%; background: rgba(240,212,79,.18); color: var(--accent); }
.microcopy { margin: 16px 0 0 !important; font-size: 13px !important; color: rgba(255,255,255,.38) !important; }
.calculator-ui { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 24px; background: #f7f3eb; color: var(--ink); box-shadow: 0 40px 100px rgba(0,0,0,.32); transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); }
.calculator-ui__bar { height: 48px; padding: 0 17px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; border-bottom: 1px solid rgba(18,18,18,.11); color: #78746d; font-size: 11px; }
.calculator-ui__bar > span { text-align: center; }
.calculator-ui__bar > small { text-align: right; }
.dots { display: flex; gap: 5px; }
.dots i { width: 7px; height: 7px; border-radius: 50%; background: #d5cfc4; }
.dots i:first-child { background: var(--accent); }
.calculator-ui__body { min-height: 480px; display: grid; grid-template-columns: 150px 1fr; }
.calculator-ui__sidebar { display: grid; align-content: start; gap: 2px; padding: 27px 16px; border-right: 1px solid rgba(18,18,18,.1); background: #ede7dc; }
.calculator-ui__sidebar span { padding: 11px 10px; border-radius: 8px; color: #908b83; font-size: 12px; font-weight: 800; }
.calculator-ui__sidebar .active { background: rgba(255,255,255,.72); color: var(--ink); }
.calculator-ui__content { padding: 30px; }
.ui-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ui-heading span { font-size: 19px; font-weight: 850; }
.ui-heading strong { color: var(--muted); font-size: 12px; }
.ui-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ui-fields div { padding: 13px 14px; border: 1px solid rgba(18,18,18,.1); border-radius: 10px; background: var(--white); }
.ui-fields span { display: block; margin-bottom: 4px; color: #8b867e; font-size: 10px; text-transform: uppercase; }
.ui-fields strong { font-size: 15px; }
.ui-result { margin-top: 14px; padding: 18px; border-radius: 14px; background: var(--ink); color: var(--white); }
.ui-result__title { display: flex; justify-content: space-between; color: rgba(255,255,255,.54); font-size: 11px; }
.ui-result > strong { display: block; margin: 12px 0 14px; font-size: 34px; letter-spacing: -.04em; }
.ui-bars { display: flex; gap: 4px; height: 7px; }
.ui-bars i { width: var(--w); border-radius: 5px; background: var(--accent); }
.ui-bars i:nth-child(2) { background: #f29974; }
.ui-bars i:nth-child(3) { background: #d9c2a6; }
.ui-bars i:nth-child(4) { background: #7d7972; }
.ui-legend { display: flex; justify-content: space-between; margin-top: 8px; color: rgba(255,255,255,.45); font-size: 10px; }
.ui-detail-link { width: 100%; margin-top: 13px; padding: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 11px; background: var(--accent); color: var(--ink); font-size: 13px; font-weight: 700; transition: background .2s, transform .2s; }
.ui-detail-link:hover { background: var(--accent-dark); transform: translateY(-1px); }


/* responsibility comparison */
.responsibility { background: var(--paper); }
.responsibility-table { overflow: hidden; max-width: 1040px; margin: 0 auto; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 20px 50px rgba(0,0,0,.055); }
.responsibility-table__head, .responsibility-table article { display: grid; grid-template-columns: .38fr .62fr; gap: 34px; align-items: start; }
.responsibility-table__head { padding: 17px 24px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.responsibility-table article { padding: 20px 24px; border-bottom: 1px solid var(--line); }
.responsibility-table article:last-child { border-bottom: 0; }
.responsibility-table article > span { font-size: 19px; font-weight: 700; }
.responsibility-table article > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

/* conversion recapture */
.lot-cta { padding: 34px 0; background: var(--ink); color: var(--white); }
.lot-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; }
.lot-cta__inner > div:first-child > span { display: block; margin-bottom: 7px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.lot-cta h2 { max-width: 780px; margin: 0 0 7px; font-size: clamp(24px, 2.4vw, 34px); }
.lot-cta p { margin: 0; color: rgba(255,255,255,.58); font-size: 16px; }
.lot-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.lot-cta .button--plain { border-color: rgba(255,255,255,.3); color: var(--white); }

/* after request */
.after-request { display: grid; gap: 11px; max-width: 650px; margin: 30px 0 0; }
.after-request > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.after-request > div > span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; color: var(--accent); font-size: 13px; font-weight: 700; }
.after-request p { margin: 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.55; }
.after-request strong { display: block; margin-bottom: 2px; color: var(--white); font-size: 16px; }

/* spam trap */
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

/* cost */
.cost-structure { background: var(--paper-2); }
.cost-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cost-flow article { position: relative; min-height: 0; padding: 26px 26px 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 16px 34px rgba(0,0,0,.04); }
.cost-flow article::before { content: ""; position: absolute; left: 26px; top: 0; width: 56px; height: 3px; border-radius: 999px; background: var(--accent); }
.cost-flow article > span { display: inline-flex; margin-bottom: 14px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cost-icon { display: none; }
.cost-flow h3 { margin-bottom: 10px; font-size: 24px; }
.cost-flow p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.cost-flow small { display: block; margin-top: 14px; color: #3c3834; font-size: 15px; line-height: 1.6; }

/* verification */
.verification { background: var(--paper); }
.verification-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.verification-media { position: relative; min-height: 680px; overflow: hidden; border-radius: 24px; background: #222; box-shadow: var(--shadow); }
.verification-media > img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; filter: saturate(.52) contrast(1.05) brightness(.72); }
.verification-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.66), transparent 48%), linear-gradient(90deg, rgba(240,212,79,.10), transparent 45%); }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; top: 24%; height: 1px; background: rgba(255,95,72,.9); box-shadow: 0 0 20px rgba(255,95,72,.8); animation: scan 4.5s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 22%; opacity: .3; } 50% { top: 78%; opacity: 1; } }
.verification-badge { position: absolute; z-index: 3; left: 25px; top: 24px; display: grid; gap: 4px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 12px; background: rgba(0,0,0,.55); color: var(--white); backdrop-filter: blur(12px); }
.verification-badge span { color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.verification-badge strong { font-size: 15px; }
.vin-plate { position: absolute; z-index: 3; right: 22px; bottom: 22px; padding: 12px 14px; border-radius: 10px; background: rgba(244,240,232,.94); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 850; }
.vin-plate span { color: var(--accent); }
.verification-copy h2 { max-width: 640px; }
.verification-copy > p { max-width: 610px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.check-grid > div { min-height: 164px; padding: 21px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-grid span { display: block; margin-bottom: 18px; color: var(--accent); font-size: 12px; font-weight: 900; }
.check-grid strong { display: block; margin-bottom: 8px; font-size: 19px; }
.check-grid p { margin: 0; color: var(--muted); font-size: 14px; }

/* process */
.process { background: var(--white); }
.process-timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 72px; }
.process-line { position: absolute; left: 4%; right: 4%; top: 25px; height: 1px; background: var(--line); }
.process-line i { display: block; width: 19%; height: 1px; background: var(--accent); }
.process-timeline article { position: relative; padding-top: 67px; }
.process-timeline article > span { position: absolute; z-index: 2; top: 0; left: 0; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--muted); font-size: 12px; font-weight: 900; }
.process-timeline article.active > span { border-color: var(--accent); background: var(--accent); color: var(--white); }
.process-timeline small { display: block; margin-bottom: 13px; color: var(--accent-text); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.process-timeline h3 { margin-bottom: 12px; font-size: 21px; }
.process-timeline p { margin: 0; color: var(--muted); font-size: 15px; }
.process-note { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 900px; margin: 42px auto 0; padding: 16px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); color: var(--muted); font-size: 16px; text-align: center; }
.process-note strong { color: var(--ink); }

/* story strip */
.story-strip { background: var(--white); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: 0 18px 38px rgba(0,0,0,.05); transition: transform .25s, box-shadow .25s; }
.story-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.12); }
.story-card__image { height: 240px; overflow: hidden; }
.story-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.story-card:hover .story-card__image img { transform: scale(1.04); }
.story-card__body { padding: 24px; }
.story-card__body span { display: inline-block; margin-bottom: 12px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.story-card__body h3 { margin-bottom: 12px; font-size: 25px; }
.story-card__body p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* examples */
.examples { background: var(--paper-2); }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.example-card { overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: var(--paper); transition: transform .25s, box-shadow .25s; display:flex; flex-direction:column; height:100%; }
.example-card:hover { transform: translateY(-7px); box-shadow: 0 25px 50px rgba(0,0,0,.12); }
.example-card--featured { transform: none; }
.example-card--featured:hover { transform: translateY(-7px); }
.example-card__image { position: relative; height: 280px; overflow: hidden; }
.example-card__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .45s; }
.example-card:hover .example-card__image img { transform: scale(1.045); }
.example-card__image > span { position: absolute; left: 13px; top: 13px; padding: 7px 9px; border-radius: 999px; background: rgba(18,18,18,.78); color: var(--white); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.example-card__body { padding: 24px; }
.example-card__body > div:first-child small { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.example-card__body h3 { margin: 7px 0 20px; font-size: 28px; }
.example-card dl { margin: 0; }
.example-card dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid var(--line); }
.example-card dt { color: var(--muted); font-size: 13px; }
.example-card dd { margin: 0; font-size: 14px; font-weight: 800; text-align: right; }
.example-card button { width: 100%; margin-top: 18px; padding: 13px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; cursor: pointer; font-weight: 850; }
.example-card button:hover { background: var(--ink); color: var(--white); }
.example-card__meta { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.example-card__body { display:flex; flex-direction:column; flex:1 1 auto; min-height:0; }
.example-card__actions { display: grid; gap: 10px; margin-top: auto; }
.example-card__source { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink); font-size: 15px; font-weight: 700; transition: transform .2s, background .2s, border-color .2s; }
.example-card__source:hover { background: var(--white); border-color: rgba(240,212,79,.46); transform: translateY(-1px); }
.example-card button { margin-top: auto; }

.lot-slider { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.96)); box-shadow: 0 22px 46px rgba(0,0,0,.05); }
.lot-slider::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(240,212,79,.24), rgba(255,255,255,0)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.lot-slider__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.lot-slider__hint { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.lot-slider__controls { display: inline-flex; align-items: center; gap: 10px; }
.lot-slider__progress { overflow: hidden; height: 4px; margin-bottom: 18px; border-radius: 999px; background: rgba(16,18,20,.08); }
.lot-slider__progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), #ff9c88); }
.slider-button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; transition: background .2s, color .2s, transform .2s, box-shadow .2s; }
.slider-button:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.slider-button:disabled { opacity: .35; cursor: default; transform: none; box-shadow: none; }
.slider-status { min-width: 62px; text-align: center; color: var(--muted); font-size: 15px; font-weight: 700; }
.lot-slider__viewport { overflow: hidden; }
.lot-slider__track { display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - 40px) / 3); gap:20px; transition:transform .5s ease; will-change:transform; align-items:stretch; }
.examples-note { max-width: 850px; margin: 28px auto 0; color: var(--muted); font-size: 13px; text-align: center; }

/* security */
.security { overflow: hidden; background: var(--ink); color: var(--white); }
.security-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; }
.security-copy h2 { max-width: 580px; }
.security-copy > p { max-width: 540px; margin-bottom: 32px; color: rgba(255,255,255,.62); font-size: 20px; }
.document-stack { position: relative; min-height: 520px; perspective: 1200px; }
.document { position: absolute; left: 50%; top: 50%; width: min(440px, 78%); height: 360px; padding: 32px; border-radius: 20px; color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.document--back { transform: translate(-26%, -56%) rotate(9deg); background: #d8d1c5; }
.document--middle { transform: translate(-48%, -52%) rotate(-5deg); background: #ebe5da; }
.document--front { transform: translate(-50%, -50%) rotate(1deg); background: var(--paper); }
.document > span { color: var(--accent); font-size: 13px; font-weight: 900; }
.document > strong { display: block; margin-top: 80px; font-size: 25px; }
.document > small { color: var(--muted); }
.document__head { display: flex; justify-content: space-between; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.document--front > strong { margin-top: 55px; font-size: 33px; }
.document--front p { color: var(--muted); font-size: 15px; }
.signature { position: absolute; left: 32px; right: 32px; bottom: 33px; }
.signature i { display: block; width: 150px; height: 1px; margin-bottom: 6px; background: var(--ink); }
.signature span { color: var(--muted); font-size: 11px; }

/* company */
.company { background: var(--paper); }
.company-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; margin-bottom: 42px; }
.company-copy > p { max-width: 600px; color: var(--muted); font-size: 20px; line-height: 1.72; }
.company-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.company-points article { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.58); }
.company-points strong { display: block; margin-bottom: 8px; font-size: 20px; }
.company-points p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.company-spotlight { overflow: hidden; border-radius: 22px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 40px rgba(0,0,0,.06); }
.company-spotlight__image { height: 360px; overflow: hidden; }
.company-spotlight__image img { width: 100%; height: 100%; object-fit: cover; }
.company-spotlight__body { padding: 24px; display: grid; gap: 14px; }
.company-spotlight__body div { padding-top: 14px; border-top: 1px solid var(--line); }
.company-spotlight__body div:first-child { padding-top: 0; border-top: 0; }
.company-spotlight__body span { display: block; color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.company-spotlight__body strong { display: block; margin-top: 6px; font-size: 20px; line-height: 1.45; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 18px 36px rgba(0,0,0,.05); }
.team-card__image { height: 230px; overflow: hidden; }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 22px; }
.team-card__body span { display: inline-flex; margin-bottom: 10px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.team-card__body h3 { margin-bottom: 10px; font-size: 22px; }
.team-card__body p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* reviews */
.reviews { background: var(--paper-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: 0 14px 32px rgba(0,0,0,.04); }
.review-stars { margin-bottom: 16px; color: var(--accent); font-size: 18px; letter-spacing: .2em; }
.review-card p { margin: 0 0 18px; color: #36332f; font-size: 18px; line-height: 1.75; }
.review-card strong { display: block; font-size: 19px; }
.review-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 15px; }


/* instagram */
.instagram-section { background: #111111; color: var(--white); }
.instagram-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.instagram-copy p { max-width: 560px; margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: 20px; line-height: 1.75; }
.instagram-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.instagram-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.instagram-cards article { min-height: 180px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.05); backdrop-filter: blur(12px); }
.instagram-cards span { display: inline-flex; margin-bottom: 16px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.instagram-cards strong { display: block; margin-bottom: 10px; color: var(--white); font-size: 20px; }
.instagram-cards p { margin: 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }


/* faq */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { max-width: 580px; }
.faq-contact { display: grid; gap: 7px; margin-top: 45px; padding-top: 25px; border-top: 1px solid var(--line); }
.faq-contact > span { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.faq-contact a { display: flex; justify-content: space-between; align-items: end; }
.faq-contact a strong { font-size: 19px; }
.faq-contact a small { color: var(--accent); font-weight: 850; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px 0; border: 0; background: transparent; cursor: pointer; text-align: left; font-size: 20px; font-weight: 750; }
.accordion-item button i { position: relative; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1px; background: currentColor; transform: translate(-50%,-50%); }
.accordion-item button i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s; }
.accordion-item.open button i { border-color: var(--accent); color: var(--accent); }
.accordion-item.open button i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.open .accordion-panel > p { padding: 0 56px 25px 0; }

/* final */
.final-cta { position: relative; overflow: hidden; padding: 118px 0; background: #101010; color: var(--white); }
.final-cta__media, .final-cta__overlay { position: absolute; inset: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) brightness(.5); }
.final-cta__overlay { background: linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.86) 48%, rgba(8,8,8,.45) 100%); }
.final-cta__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 480px; gap: 95px; align-items: center; }
.final-cta__copy h2 { max-width: 730px; }
.final-cta__copy > p { max-width: 610px; color: rgba(255,255,255,.65); font-size: 20px; }
.contact-details { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 0; margin-top: 45px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-details > * { padding: 20px 18px 0 0; }
.contact-details > * + * { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.18); }
.contact-details small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.44); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.contact-details strong { font-size: 15px; }
.contact-details span { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-details a { font-size: 14px; font-weight: 800; }
.lead-form { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(244,240,232,.97); color: var(--ink); box-shadow: var(--shadow); }
.lead-form__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.lead-form__head span { font-size: 21px; font-weight: 850; }
.lead-form__head small { color: var(--muted); font-size: 11px; }
.lead-form label, .modal-card form > label { display: grid; gap: 8px; margin-bottom: 15px; color: #46433e; font-size: 13px; font-weight: 800; }
.lead-form label > span, .modal-card form label > span { color: var(--accent); }
.lead-form input, .lead-form select, .modal-card input, .modal-card select {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(18,18,18,.16);
  border-radius: 11px;
  outline: none;
  background: rgba(255,255,255,.75);
  color: var(--ink);
  font-size: 15px;
}
.lead-form input:focus, .lead-form select:focus, .modal-card input:focus, .modal-card select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240,212,79,.2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent-row { grid-template-columns: 18px 1fr !important; align-items: start; gap: 9px !important; font-weight: 500 !important; line-height: 1.4; }
.consent-row input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--accent); }
.consent-row span { color: var(--muted) !important; }
.consent-row a { color: var(--ink); text-decoration: underline; }
.form-status { min-height: 19px; margin: 12px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.form-status.success { color: #18804a; }
.form-status.error { color: #b22828; }



/* intro bridge */
.intro-bridge {
  position: relative;
  padding: 76px 0 82px;
  background: linear-gradient(180deg, #f8f3e6 0%, #f4eddb 100%);
  border-top: 1px solid rgba(11,11,11,.06);
  border-bottom: 1px solid rgba(11,11,11,.08);
  overflow: hidden;
}
.intro-bridge::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: rgba(240,212,79,.18);
  filter: blur(4px);
  pointer-events: none;
}
.intro-bridge__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}
.intro-bridge__copy { padding-top: 8px; }
.intro-bridge__copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(31px, 3.2vw, 46px);
}
.intro-bridge__copy p {
  max-width: 620px;
  margin: 0;
  color: #4f493d;
  font-size: 19px;
  line-height: 1.78;
}
.intro-bridge__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.intro-card {
  position: relative;
  min-height: 265px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(11,11,11,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(0,0,0,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.intro-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155,127,14,.34);
  box-shadow: 0 20px 42px rgba(0,0,0,.075);
}
.intro-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(240,212,79,.28);
}
.intro-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.16;
}
.intro-card p {
  margin: 0;
  color: #5a5448;
  font-size: 16px;
  line-height: 1.68;
}

/* conversion entry points */
.entry-points { padding: 72px 0; background: var(--white); }
.entry-points__head { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; margin-bottom: 34px; }
.entry-points__head h2 { margin-bottom: 0; }
.entry-points__head > p { margin: 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.entry-grid article { display: flex; min-height: 300px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); transition: transform .2s, box-shadow .2s, border-color .2s; }
.entry-grid article:hover { transform: translateY(-5px); border-color: rgba(180,150,30,.42); box-shadow: 0 20px 38px rgba(0,0,0,.08); }
.entry-tag { display: inline-flex; width: max-content; margin-bottom: 30px; padding: 8px 12px; border-radius: 999px; background: rgba(240,212,79,.72); color: #111; font-size: 14px; font-weight: 800; }
.entry-grid h3 { margin-bottom: 12px; font-size: 24px; }
.entry-grid p { margin: 0 0 22px; color: var(--muted); font-size: 17px; line-height: 1.68; }
.entry-grid button { width: max-content; margin-top: auto; padding: 0 0 6px; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-weight: 700; }

.hero-messengers { display: flex; align-items: center; gap: 12px; margin-top: 16px; color: rgba(255,255,255,.62); font-size: 14px; }
.hero-messengers a { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* before bidding */
.before-bid { background: var(--white); }
.before-bid__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.before-bid__copy > p { max-width: 540px; margin-bottom: 28px; color: var(--muted); font-size: 20px; line-height: 1.72; }
.before-bid__checklist { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: 0 22px 50px rgba(0,0,0,.06); }
.before-bid__checklist article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.before-bid__checklist article:last-child { border-bottom: 0; }
.before-bid__checklist article > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; }
.before-bid__checklist strong { display: block; margin-bottom: 5px; font-size: 20px; }
.before-bid__checklist p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

/* honest fit check */
.fit-check { background: var(--paper); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1040px; margin: 0 auto; }
.fit-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.fit-card > span { display: inline-flex; margin-bottom: 20px; padding: 7px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.fit-card--yes > span { background: rgba(48,150,96,.12); color: #277d50; }
.fit-card--no > span { background: rgba(240,212,79,.28); color: var(--accent-text); }
.fit-card h3 { margin-bottom: 18px; font-size: 25px; }
.fit-card ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding-left: 24px; color: #4d4944; font-size: 17px; line-height: 1.65; }
.fit-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.fit-card--yes li::before { background: #319660; }

.payment-stages { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.payment-stages article { padding: 23px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.05); }
.payment-stages span { display: block; margin-bottom: 13px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.payment-stages strong { display: block; margin-bottom: 9px; color: var(--white); font-size: 20px; line-height: 1.4; }
.payment-stages p { margin: 0; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.65; }

/* public proof instead of invented testimonials */
.proof-hub { background: #111111; color: var(--white); }
.proof-hub__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; align-items: center; }
.proof-hub__copy h2 { max-width: 600px; }
.proof-hub__copy > p { max-width: 570px; margin-bottom: 28px; color: rgba(255,255,255,.65); font-size: 20px; line-height: 1.72; }
.proof-links { display: flex; flex-wrap: wrap; gap: 12px; }
.proof-hub__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.proof-hub__cards article { min-height: 190px; padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.045); }
.proof-hub__cards span { display: block; margin-bottom: 18px; color: var(--accent); font-size: 13px; font-weight: 700; }
.proof-hub__cards strong { display: block; margin-bottom: 9px; font-size: 19px; }
.proof-hub__cards p { margin: 0; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.65; }

.form-note { margin: 10px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.modal-card textarea { width: 100%; min-height: 96px; padding: 13px 14px; resize: vertical; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); }

.desktop-messengers { display: none !important; }
.desktop-messengers a { display: flex; align-items: center; gap: 9px; min-width: 48px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(244,240,232,.96); box-shadow: 0 12px 30px rgba(0,0,0,.12); color: var(--ink); transition: transform .2s, min-width .2s; overflow: hidden; }
.desktop-messengers a:hover { transform: translateX(-5px); }
.desktop-messengers span { display: grid; width: 31px; height: 31px; flex: 0 0 31px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 700; }
.desktop-messengers small { padding-right: 6px; font-size: 13px; font-weight: 700; white-space: nowrap; }


.calc-contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.calc-placeholder__panel textarea { width: 100%; min-height: 96px; padding: 13px 14px; resize: vertical; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); }
.calc-value { padding: 96px 0; background: var(--white); }
.calc-value__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.calc-value__grid article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.calc-value__grid span { display: block; margin-bottom: 26px; color: var(--accent); font-size: 13px; font-weight: 700; }
.calc-value__grid strong { display: block; margin-bottom: 9px; font-size: 19px; }
.calc-value__grid p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.calc-value__note { margin-top: 18px; padding: 18px 20px; border-left: 3px solid var(--accent); background: var(--paper-2); color: #4f4b45; font-size: 16px; line-height: 1.65; }

/* footer */
.site-footer { padding: 65px 0 25px; background: #090909; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr 1fr; gap: 65px; padding-bottom: 50px; }
.footer-logo { display: inline-flex; width: min(138px, 100%); margin-bottom: 18px; }
.footer-logo img { display: block; width: 100%; height: auto; object-fit: contain; filter: none; }
.footer-brand p { max-width: 310px; color: rgba(255,255,255,.43); font-size: 15px; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column strong { margin-bottom: 7px; color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a, .footer-column span, .footer-column button { padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.48); font-size: 14px; text-align: left; cursor: pointer; }
.footer-column a:hover, .footer-column button:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.32); font-size: 12px; }

/* mobile sticky */
.mobile-sticky { display: none; }

/* modals */
.modal[hidden], .cookie-banner[hidden], .cookie-panel[hidden] { display: none !important; }
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 22px; }
.modal-backdrop, .cookie-panel__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; width: min(500px, 100%); max-height: calc(100vh - 44px); overflow: auto; padding: 34px; border-radius: 24px; background: var(--paper); box-shadow: 0 45px 120px rgba(0,0,0,.45); }
.modal-close { position: absolute; right: 18px; top: 18px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.modal-close span { position: absolute; left: 12px; top: 19px; width: 15px; height: 1px; background: var(--ink); transform: rotate(45deg); }
.modal-close span:last-child { transform: rotate(-45deg); }
.modal-kicker { margin-bottom: 14px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.modal-card h2 { max-width: 430px; margin-bottom: 14px; padding-right: 26px; font-size: 29px; line-height: 1.18; }
.modal-card > p { margin-bottom: 25px; color: var(--muted); font-size: 16px; }

/* cookies */
.cookie-banner { position: fixed; z-index: 250; left: 20px; right: 20px; bottom: 20px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(244,240,232,.97); box-shadow: 0 25px 80px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.cookie-banner__copy strong { display: block; margin-bottom: 4px; font-size: 16px; }
.cookie-banner__copy p { max-width: 720px; margin: 0; color: var(--muted); font-size: 13px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; }
.cookie-banner .button { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.cookie-panel { position: fixed; inset: 0; z-index: 320; display: grid; place-items: center; padding: 22px; }
.cookie-panel__card { position: relative; z-index: 1; width: min(590px, 100%); max-height: calc(100vh - 44px); overflow: auto; padding: 30px; border-radius: 22px; background: var(--paper); box-shadow: 0 40px 100px rgba(0,0,0,.42); }
.cookie-panel__head { display: flex; justify-content: space-between; gap: 20px; }
.cookie-panel__head small { color: var(--accent); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.cookie-panel__head h2 { margin: 5px 0 12px; font-size: 30px; }
.cookie-panel__head button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 25px; }
.cookie-panel__card > p { color: var(--muted); font-size: 15px; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-option > div { display: grid; gap: 4px; }
.cookie-option strong { font-size: 16px; }
.cookie-option span { color: var(--muted); font-size: 13px; }
.switch { position: relative; flex: 0 0 43px; width: 43px; height: 24px; }
.switch input { position: absolute; opacity: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #c7c1b7; cursor: pointer; transition: background .2s; }
.switch span::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); transition: transform .2s; }
.switch input:checked + span { background: var(--accent); }
.switch input:checked + span::after { transform: translateX(19px); }
.switch input:disabled + span { opacity: .6; cursor: not-allowed; }
.cookie-panel__actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 20px; }
.cookie-panel__card > a { display: inline-block; margin-top: 18px; color: var(--muted); font-size: 13px; text-decoration: underline; }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* technical pages */
.legal-page { background: var(--paper); }
.legal-page .site-header { position: sticky; background: var(--paper); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.legal-page .site-header .brand img { filter: none; }
.legal-page .site-header .desktop-nav a { color: var(--muted); }
.legal-hero { padding: 95px 0 55px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 920px; margin: 0; font-size: clamp(34px, 4vw, 52px); }
.legal-content { display: grid; grid-template-columns: 260px 1fr; gap: 80px; padding: 70px 0 110px; }
.legal-aside { position: sticky; top: 120px; align-self: start; }
.legal-aside strong { display: block; margin-bottom: 15px; font-size: 14px; text-transform: uppercase; }
.legal-aside a { display: block; padding: 8px 0; color: var(--muted); font-size: 15px; }
.legal-text { max-width: 840px; }
.legal-text h2 { margin: 55px 0 18px; font-size: 30px; letter-spacing: -.03em; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text h3 { margin: 28px 0 12px; font-size: 20px; }
.legal-text p, .legal-text li { color: #55514b; font-size: 17px; line-height: 1.75; }
.legal-text ul { padding-left: 22px; }
.legal-note { padding: 18px 20px; border-left: 3px solid var(--accent); background: var(--paper-2); }

/* calculator placeholder */
.calc-page { min-height: 100vh; background: var(--paper); }
.calc-page .site-header { position: sticky; background: var(--paper); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.calc-page .site-header .brand img { filter: none; }
.calc-page .site-header .desktop-nav a { color: var(--muted); }
.calc-placeholder { padding: 76px 0 100px; }
.calc-placeholder__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.calc-placeholder h1 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 52px); }
.calc-placeholder__copy > p { max-width: 600px; color: var(--muted); font-size: 20px; }
.calc-progress { margin: 35px 0; display: grid; gap: 12px; }
.calc-progress div { display: flex; align-items: center; gap: 13px; font-size: 15px; font-weight: 750; }
.calc-progress span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--accent); color: var(--white); font-size: 12px; }
.calc-page-photo { position: relative; overflow: hidden; margin: 30px 0 26px; border-radius: 20px; background: var(--ink); }
.calc-page-photo img { width: 100%; height: 230px; object-fit: cover; }
.calc-page-photo span { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 11px 13px; border-radius: 12px; background: rgba(18,18,18,.78); color: var(--white); font-size: 14px; font-weight: 750; backdrop-filter: blur(8px); }
.calc-placeholder__panel { padding: 34px; border-radius: 24px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.calc-placeholder__panel h2 { font-size: 31px; line-height: 1.18; }
.calc-placeholder__panel > p { color: rgba(255,255,255,.56); }
.calc-placeholder__panel .lead-form { margin-top: 25px; box-shadow: none; }

@media (max-width: 1120px) {
  .entry-points__head, .before-bid__grid, .proof-hub__grid { gap: 42px; }
  .intro-bridge__grid { grid-template-columns: 1fr; gap: 34px; }
  .intro-bridge__cards { grid-template-columns: repeat(3, 1fr); }
  .lot-cta__inner { grid-template-columns: 1fr; gap: 22px; }
  .lot-cta__actions { justify-content: flex-start; }
  .calc-value__grid { grid-template-columns: 1fr 1fr; }
  :root { --shell: min(100% - 36px, 1040px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions .button { display: none; }
  .header-messengers { display: none; }
  .hero-shell { grid-template-columns: 1fr .8fr; gap: 45px; }
  .hero-product { max-width: 450px; }
  .floating-note--one { left: -25px; }
  .floating-note--two { right: -12px; }
  .approach-grid, .calculator-grid, .verification-grid, .security-grid, .faq-grid { gap: 60px; }
  .company-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid, .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 50px; }
  .process-line { display: none; }
  .process-timeline article { padding-top: 57px; }
  .final-cta__grid { grid-template-columns: 1fr 440px; gap: 55px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  .section { padding: 78px 0; }
  .header-shell { height: 78px; }
  .brand { width: 84px; }
  .phone-link { display: none; }
  .header-messengers { display: none; }
  .mobile-menu { top: 78px; }
  .hero { min-height: auto; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; padding: 112px 0 88px; }
  .hero-media img { object-position: 50% 22%; }
  .hero-media::after { background: linear-gradient(90deg, rgba(8,8,8,.97), rgba(8,8,8,.7)), linear-gradient(0deg, rgba(8,8,8,.85), transparent); }
  .hero-copy { max-width: 680px; }
  .hero-product { max-width: 520px; justify-self: center; margin-top: 12px; }
  .hero-scroll { display: none; }
  .trust-strip__track { justify-content: flex-start; animation: marquee 18s linear infinite; }
  @keyframes marquee { to { transform: translateX(-25%); } }
  .approach-grid, .calculator-grid, .verification-grid, .security-grid, .faq-grid, .final-cta__grid, .calc-placeholder__grid, .company-grid, .before-bid__grid, .proof-hub__grid { grid-template-columns: 1fr; }
  .responsibility-table__head, .responsibility-table article { grid-template-columns: .34fr .66fr; gap: 24px; }
  .entry-points__head { grid-template-columns: 1fr; gap: 15px; }
  .intro-bridge { padding: 58px 0 62px; }
  .intro-bridge__cards { grid-template-columns: 1fr; }
  .intro-card { min-height: auto; }
  .entry-grid { grid-template-columns: 1fr 1fr; }
  .entry-grid article:last-child { grid-column: 1 / -1; }
  .payment-stages { grid-template-columns: 1fr 1fr; }
  .payment-stages article:last-child { grid-column: 1 / -1; }
  .section-intro, .faq-intro { position: static; }
  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .calculator-ui { transform: none; }
  .cost-flow { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .verification-media { min-height: 570px; }
  .verification-media > img { min-height: 570px; }
  .story-grid, .example-grid { grid-template-columns: 1fr 1fr; }
  .lot-slider__track { grid-auto-columns: calc((100% - 20px) / 2); }
  .lot-slider { padding: 18px; }
  .story-card:last-child, .example-card:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .example-card--featured, .example-card--featured:hover { transform: none; }
  .security-copy { order: 1; }
  .document-stack { order: 2; min-height: 500px; }
  .final-cta__grid { gap: 50px; }
  .contact-details { max-width: 680px; }
  .lead-form { max-width: 600px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-column:last-child { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .footer-column:last-child strong { width: 100%; }
  .legal-content { grid-template-columns: 1fr; gap: 25px; }
  .legal-aside { position: static; display: flex; flex-wrap: wrap; gap: 12px; }
  .legal-aside strong { width: 100%; }
}

@media (max-width: 620px) {
  .footer-logo { width: 220px; margin-bottom: 18px; }
  :root { --shell: calc(100% - 28px); --radius: 18px; }
  .section { padding: 64px 0; }
  h2 { font-size: clamp(27px, 8.5vw, 34px); }
  .header-shell { height: 72px; }
  .brand { width: 76px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-menu { top: 72px; }
  .mobile-menu__actions { grid-template-columns: 1fr; }
  .hero-shell { padding: 96px 0 72px; }
  .hero h1 { font-size: clamp(32px, 10vw, 42px); }
  .hero-lead { font-size: 18px; }
  .hero-buttons { display: grid; }
  .hero-buttons .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div { padding: 15px 0; }
  .hero-proof > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .deal-card { transform: none; padding: 10px; }
  .deal-card__top { align-items: center; }
  .deal-card__top strong { font-size: 15px; }
  .status-pill { font-size: 10px; }
  .deal-card__image { height: 200px; }
  .deal-card__metrics { grid-template-columns: 1fr 1fr; }
  .floating-note { display: none; }
  .trust-strip__track { gap: 20px; font-size: 12px; }
  .decision-list li { grid-template-columns: 36px 1fr; padding: 20px 18px; }
  .decision-list strong { font-size: 20px; }
  .calculator-ui__body { grid-template-columns: 1fr; }
  .calculator-ui__sidebar { grid-template-columns: repeat(4, 1fr); padding: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .calculator-ui__sidebar span { padding: 8px 5px; text-align: center; font-size: 10px; }
  .calculator-ui__content { padding: 18px; }
  .ui-heading { align-items: start; flex-direction: column; gap: 5px; }
  .ui-fields { grid-template-columns: 1fr 1fr; }
  .cost-flow { grid-template-columns: 1fr; }
  .cost-flow article { min-height: auto; }
  .cost-icon { margin: 28px 0 20px; }
  .verification-grid { gap: 45px; }
  .verification-media, .verification-media > img { min-height: 430px; }
  .check-grid { grid-template-columns: 1fr; }
  .check-grid > div { min-height: auto; }
  .process-timeline { grid-template-columns: 1fr; row-gap: 20px; }
  .process-timeline article { min-height: 110px; padding: 5px 0 20px 72px; border-bottom: 1px solid var(--line); }
  .process-timeline article > span { left: 0; top: 0; }
  .process-note { align-items: flex-start; flex-direction: column; text-align: left; }
  .story-grid, .example-grid, .team-grid, .reviews-grid, .entry-grid, .fit-grid, .proof-hub__cards, .payment-stages, .calc-value__grid, .instagram-cards { grid-template-columns: 1fr; }
  .lot-slider__top { flex-direction: column; align-items: stretch; }
  .lot-slider__controls { justify-content: space-between; }
  .lot-slider__track { grid-auto-columns: 100%; }
  .lot-slider { padding: 16px; border-radius: 22px; }
  .calc-contact-links { display: grid; }
  .calc-contact-links .button { width: 100%; }
  .entry-grid article:last-child, .payment-stages article:last-child { grid-column: auto; }
  .entry-grid article { min-height: 0; }
  .before-bid__checklist article { grid-template-columns: 48px 1fr; padding: 18px; }
  .responsibility-table__head { display: none; }
  .responsibility-table article { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .responsibility-table article > span { color: var(--accent); font-size: 17px; }
  .lot-cta { padding: 28px 0; }
  .lot-cta__actions { display: grid; width: 100%; }
  .lot-cta__actions .button { width: 100%; }
  .after-request { margin-top: 24px; }
  .before-bid__checklist article > span { width: 40px; height: 40px; }
  .desktop-messengers { display: none; }
  .hero-messengers { flex-wrap: wrap; }
  .story-card:last-child, .example-card:last-child { grid-column: auto; max-width: none; }
  .story-card__image { height: 220px; }
  .instagram-grid { grid-template-columns: 1fr; }
  .instagram-cards { grid-template-columns: 1fr 1fr; }
  .company-points { grid-template-columns: 1fr; }
  .company-spotlight__image { height: 260px; }
  .team-card__image { height: 220px; }
  .example-card__image { height: 240px; }
  .document-stack { min-height: 410px; }
  .document { width: 82%; height: 300px; padding: 24px; }
  .document--front > strong { margin-top: 35px; font-size: 25px; }
  .document > strong { margin-top: 60px; font-size: 19px; }
  .signature { left: 24px; right: 24px; bottom: 24px; }
  .faq-contact a { align-items: start; flex-direction: column; gap: 5px; }
  .accordion-item button { font-size: 19px; }
  .final-cta { padding: 82px 0 105px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > * { padding: 14px 0; }
  .contact-details > * + * { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .lead-form { padding: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(18,18,18,.93); box-shadow: 0 16px 45px rgba(0,0,0,.28); color: var(--white); backdrop-filter: blur(15px); }
  .mobile-sticky > * { display: grid; justify-items: center; gap: 3px; padding: 7px 4px; border: 0; border-radius: 12px; background: transparent; color: rgba(255,255,255,.72); font-size: 11px; }
  .mobile-sticky svg { width: 18px; height: 18px; }
  .mobile-sticky .active { background: var(--accent); color: var(--white); }
  .site-footer { padding-bottom: 105px; }
  .modal { padding: 10px; }
  .modal-card { padding: 27px 21px; border-radius: 20px; }
  .modal-card h2 { font-size: 31px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 82px; grid-template-columns: 1fr; gap: 15px; }
  .cookie-banner__actions { justify-content: stretch; display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner__actions .button:first-child { grid-column: 1 / -1; }
  .cookie-panel { padding: 10px; }
  .cookie-panel__card { padding: 24px 20px; }
  .cookie-panel__actions { display: grid; }
  .legal-hero { padding: 65px 0 42px; }
  .legal-content { padding: 50px 0 90px; }
  .calc-placeholder { padding: 65px 0 100px; }
}

.hero-product { position: relative; }
.deal-card { animation: heroFloat 6s ease-in-out infinite; }
.floating-note { box-shadow: 0 18px 40px rgba(0,0,0,.16); backdrop-filter: blur(14px); }
.accent-text { color: var(--accent-text); }
.section-heading .eyebrow span { box-shadow: 0 0 16px rgba(240,212,79,.38); }
.example-card, .company-points article, .entry-grid article, .proof-hub__cards article, .lot-cta__card { transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.example-card:hover, .company-points article:hover, .entry-grid article:hover, .proof-hub__cards article:hover, .lot-cta__card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.09); border-color: rgba(240,212,79,.28); }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero h1 em, .calculator-preview h2 em, .security h2 em, .instagram-section h2 em, .final-cta h2 em { color: var(--accent); }

/* contrast on light backgrounds */
.entry-points .entry-tag, .approach .decision-list > li > span, .cost-structure .cost-flow article > span, .verification .vin-plate span, .verification .check-grid span, .story-strip .story-card__body span, .company .team-card__body span, .reviews .review-stars, .faq .faq-contact a small, .modal-kicker, .cookie-panel__head small { color: var(--accent-text); }
.process-timeline article.active > span, .mobile-sticky .active { background: var(--accent); color: var(--ink); }
.lead-form label > span, .modal-card form label > span { color: #7a5e00; }

/* streamlined decision section */
.decision-section { }
.decision-combo { display: grid; grid-template-columns: .88fr 1.12fr; gap: 34px; align-items: stretch; }
.decision-combo .verification-media { min-height: 560px; border-radius: 22px; }
.decision-output { padding: 12px 0; }
.decision-output__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 0 0 18px; border-bottom: 1px solid var(--line); }
.decision-output__head strong { font-size: 24px; }
.decision-output__head span { color: var(--muted); font-size: 15px; }
.decision-output article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.decision-output article > span { display: grid; width: 46px; height: 34px; place-items: center; border-radius: 999px; background: rgba(240,212,79,.32); color: var(--accent-text); font-size: 13px; font-weight: 800; }
.decision-output article strong { display: block; margin-bottom: 6px; font-size: 20px; }
.decision-output article p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.decision-callout { margin-top: 20px; padding: 18px 20px; border-radius: 16px; background: #111; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.65; }
.decision-callout strong { color: var(--accent); }

/* compact cost breakdown inside calculator */
.calc-breakdown { width: var(--shell); margin: 42px auto 0; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; overflow: hidden; }
.calc-breakdown > div { padding: 22px; border-right: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.045); }
.calc-breakdown > div:last-child { border-right: 0; }
.calc-breakdown span { display: block; margin-bottom: 15px; color: var(--accent); font-size: 12px; font-weight: 800; }
.calc-breakdown strong { display: block; margin-bottom: 8px; color: #fff; font-size: 19px; }
.calc-breakdown p { margin: 0; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.6; }

/* compact company */
.company--compact { background: var(--paper); }
.company-compact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items: center; }
.company-compact-copy > p { max-width: 680px; color: var(--muted); font-size: 19px; line-height: 1.75; }
.company-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.company-facts > div { padding: 17px 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.52); }
.company-facts span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.company-facts strong { font-size: 17px; line-height: 1.45; }
.company-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.company-compact-media { position: relative; overflow: hidden; min-height: 440px; border-radius: 22px; }
.company-compact-media img { width: 100%; height: 440px; object-fit: cover; }
.company-compact-media > div { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 18px; border-radius: 16px; background: rgba(10,10,10,.82); color: #fff; backdrop-filter: blur(10px); }
.company-compact-media span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.58); font-size: 13px; }
.company-compact-media strong { font-size: 18px; }

/* compact instagram */
.instagram-grid--compact { grid-template-columns: 1fr 1fr; }
.instagram-mini { display: grid; gap: 12px; }
.instagram-mini > div { padding: 20px 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.05); }
.instagram-mini strong { display: block; margin-bottom: 5px; color: var(--accent); font-size: 18px; }
.instagram-mini span { color: rgba(255,255,255,.62); font-size: 15px; }

/* verified review */
.verified-review-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; }
.verified-review { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 18px 42px rgba(0,0,0,.05); }
.verified-review__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.verified-review__top span { color: var(--muted); font-size: 14px; }
.verified-review blockquote { margin: 0 0 18px; font-size: 23px; line-height: 1.45; font-weight: 700; }
.verified-review > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.verified-review__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.verified-review__footer a { color: var(--accent-text); font-size: 15px; font-weight: 700; text-decoration: underline; }
.review-sources { display: grid; gap: 10px; padding: 26px; border-radius: 22px; background: #111; color: #fff; }
.review-sources > strong { margin-bottom: 8px; font-size: 19px; }
.review-sources a, .review-sources > div { display: block; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.04); }
.review-sources span { display: block; margin-bottom: 4px; color: var(--accent); font-size: 16px; font-weight: 700; }
.review-sources small { color: rgba(255,255,255,.58); font-size: 14px; }

@media (max-width: 1040px) {
  .decision-combo, .company-compact-grid, .instagram-grid--compact, .verified-review-grid { grid-template-columns: 1fr; }
  .calc-breakdown { grid-template-columns: 1fr 1fr; }
  .calc-breakdown > div:nth-child(2) { border-right: 0; }
  .calc-breakdown > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}
@media (max-width: 700px) {
  .decision-combo .verification-media { min-height: 360px; }
  .decision-output article { grid-template-columns: 46px 1fr; gap: 12px; }
  .calc-breakdown { grid-template-columns: 1fr; }
  .calc-breakdown > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .calc-breakdown > div:last-child { border-bottom: 0; }
  .company-facts { grid-template-columns: 1fr; }
  .company-compact-media, .company-compact-media img { min-height: 320px; height: 320px; }
  .verified-review { padding: 22px; }
  .verified-review blockquote { font-size: 19px; }
  .verified-review__footer { align-items: flex-start; flex-direction: column; }
}

.examples .eyebrow + h2 em, .company--compact h2 em, .reviews--verified h2 em, .approach h2 em, .process h2 em { color: var(--accent-text); }

/* extended reviews */
.reviews-showcase { display: grid; grid-template-columns: .95fr 1.25fr; gap: 22px; align-items: stretch; }
.verified-review--featured { height: 100%; display: flex; flex-direction: column; }
.verified-review--featured blockquote { margin-top: 12px; }
.verified-review--featured .verified-review__footer { margin-top: auto; }
.reviews-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review-card--editable { min-height: 250px; display: flex; flex-direction: column; background: #fff; }
.review-card--editable p { flex: 1; }
.review-card--editable .review-stars { color: var(--accent-text); }
@media (max-width: 980px) {
  .reviews-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .reviews-secondary { grid-template-columns: 1fr; }
  .review-card--editable { min-height: auto; }
}

/* v16 cleanup: hero without floating calculation card */
.hero-shell { grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr); gap: 34px; }
.hero-copy { max-width: 960px; }
.calculator-deal-wrap { width: 100%; max-width: 540px; justify-self: end; }
.calculator-deal-wrap .deal-card { width: 100%; animation: none; background: rgba(22,22,22,.96); }
.calculator-deal-wrap .deal-card__image { height: 300px; }
.calculator-deal-wrap .deal-card__metrics div { background: rgba(255,255,255,.07); }
.calculator-deal-wrap .deal-card__footer { font-size: 13px; }
@media (max-width: 980px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .calculator-deal-wrap { justify-self: stretch; max-width: none; }
}
@media (max-width: 640px) {
  .calculator-deal-wrap .deal-card__image { height: 220px; }
}


/* v23 typography scale */
body { font-size: 16px; }
.eyebrow { line-height: 1.35; }
.hero-proof span, .trust-strip__track, .footer-column a, .footer-column span, .footer-column button { line-height: 1.5; }
.entry-grid p, .intro-card p, .story-card__body p, .team-card__body p, .review-card p, .accordion-panel > p { line-height: 1.72; }
.example-card__meta, .examples-note, .company-facts strong, .company-compact-media span { line-height: 1.55; }
.deal-card__metrics div { min-height: 72px; }
.deal-card__metrics strong { line-height: 1.15; }
.desktop-nav { gap: 30px; }
.footer-column { gap: 12px; }
@media (max-width: 760px) {
  body { font-size: 16px; }
  .button { min-height: 54px; }
  .entry-tag { line-height: 1.35; }
}

/* real Yandex reviews */
.reviews-secondary--real { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.review-card--real { min-height: 100%; display: flex; flex-direction: column; background: #fff; }
.review-card--real p { flex: 1; }
.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.review-card__head > span { margin: 0; font-size: 14px; color: var(--muted); white-space: nowrap; }
@media (max-width: 760px) { .reviews-secondary--real { grid-template-columns: 1fr; } .review-card__head { align-items: flex-start; flex-direction: column; gap: 4px; } }

.footer-credit{font-size:11px;color:rgba(255,255,255,.42);text-decoration:none;white-space:nowrap;transition:color .2s ease}.footer-credit:hover{color:rgba(255,255,255,.72)}
@media(max-width:900px){.footer-credit{white-space:normal}}

/* Adaptive hardening */
html,body{overflow-x:clip}
.header-messenger img{object-fit:contain}
.header-messenger--vb img{width:21px;height:21px}
@media(max-width:900px){
  .mobile-menu{max-height:calc(100vh - 78px);overflow-y:auto;overscroll-behavior:contain}
  .footer-grid>*{min-width:0}
}
@media(max-width:620px){
  .mobile-menu{max-height:calc(100vh - 72px)}
  .footer-column,.footer-brand{min-width:0}
  .footer-column a,.footer-column span,.footer-column button{overflow-wrap:anywhere}
}

/* Reviews slider: up to 9 active reviews */
.review-slider{position:relative;padding:22px;border:1px solid var(--line);border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.76),#fff);box-shadow:0 22px 46px rgba(0,0,0,.05)}
.review-slider__top{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:16px}
.review-slider__hint{margin:0;color:var(--muted);font-size:16px}
.review-slider__controls{display:inline-flex;align-items:center;gap:10px}
.review-slider__viewport{overflow:hidden;touch-action:pan-y}
.review-slider__track{display:grid;grid-auto-flow:column;grid-auto-columns:calc((100% - 36px)/3);gap:18px;transition:transform .45s ease;will-change:transform}
.review-slide{min-height:100%;padding:24px;border:1px solid var(--line);border-radius:20px;background:#fff;display:flex;flex-direction:column;box-shadow:0 12px 30px rgba(0,0,0,.035)}
.review-slide--featured{border-color:rgba(240,212,79,.65);box-shadow:0 16px 36px rgba(0,0,0,.055)}
.review-slide h3{margin:12px 0 8px;font-size:19px;line-height:1.4}
.review-slide p{flex:1;margin:0 0 18px;color:var(--muted);font-size:16px;line-height:1.7}
.review-slide__footer{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-top:14px;border-top:1px solid var(--line)}
.review-slide__footer a{font-size:14px;font-weight:700;text-decoration:underline;color:var(--ink)}
.review-slider__empty{margin:0;color:var(--muted)}
@media(max-width:1120px){.review-slider__track{grid-auto-columns:calc((100% - 18px)/2)}}
@media(max-width:760px){.review-slider{padding:16px;border-radius:22px}.review-slider__top{align-items:stretch;flex-direction:column}.review-slider__controls{justify-content:space-between}.review-slider__track{grid-auto-columns:100%}.review-slide{padding:20px}.review-slide__footer{align-items:flex-start;flex-direction:column;gap:8px}}

/* v11: restore complete lot-card content and keep final bid clearly visible */
.example-card dl > div.example-card__final-bid{background:rgba(240,212,79,.12);margin:0 -10px;padding:11px 10px;border-radius:8px;}
.example-card dl > div.example-card__final-bid dt{color:var(--ink);font-weight:800;}
.example-card dl > div.example-card__final-bid dd{color:var(--ink);font-weight:900;}
.example-card__meta{margin-bottom:16px;}
.example-card__actions{margin-top:auto;padding-top:4px;}
