:root {
  --bg: #f5f7f5;
  --paper: #ffffff;
  --ink: #13201a;
  --muted: #617066;
  --line: #dce3dc;
  --green: #116149;
  --green-2: #0b4536;
  --gold: #c6922e;
  --red: #9d2d2d;
  --shadow: 0 18px 50px rgba(21, 37, 29, .12);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 10px clamp(14px, 4vw, 54px);
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand,
.footer-brand {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.brand img,
.footer-brand img {
  width: 92px;
  height: auto;
  display: block;
}
.brand span,
.footer-brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.brand strong,
.footer-brand strong {
  color: var(--green-2);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}
.brand small,
.footer-brand small {
  color: var(--red);
  font-size: 13px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-brand {
  grid-template-columns: 120px 1fr;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 120px;
}
nav { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
nav a:hover, .text-link:hover { color: var(--green); }
.top-actions { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.phone { color: var(--green); font-weight: 800; }
.menu-btn { display: none; border: 0; background: var(--green); color: #fff; width: 40px; height: 40px; border-radius: 6px; }
.global-offer {
  position: sticky;
  top: 82px;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(198,146,46,.9), rgba(198,146,46,.22) 22%, transparent 46%),
    radial-gradient(circle at 88% 10%, rgba(255,209,105,.36), transparent 30%),
    linear-gradient(135deg, #061812, #12362a 58%, #061812);
  color: #fff;
  border-top: 1px solid rgba(255,218,134,.72);
  border-bottom: 1px solid rgba(255,218,134,.72);
  box-shadow: 0 14px 34px rgba(6,24,18,.28);
}
.global-offer div {
  display: grid;
  gap: 3px;
}
.global-offer strong {
  font-size: clamp(24px, 2.9vw, 46px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
}
.global-offer span {
  color: rgba(255,255,255,.76);
  font-weight: 700;
}
.global-offer a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--gold);
  color: #17140c;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
main { overflow: hidden; }
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(58px, 8vw, 105px) clamp(18px, 5vw, 74px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8,27,21,.9), rgba(8,27,21,.62)),
    url("../img/illustrations/radio-parts-hero.svg") center / cover,
    linear-gradient(135deg, #0e2e24, #506258);
  color: #fff;
}
.hero.hero-clean {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr) !important;
  gap: clamp(24px, 4vw, 56px) !important;
}
.hero.hero-clean .hero-copy {
  max-width: 1040px !important;
}
.hero-utp-card {
  position: relative !important;
  display: grid !important;
  gap: 16px !important;
  align-self: center !important;
  padding: clamp(20px, 2.5vw, 30px) !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,226,154,.68) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.07)),
    linear-gradient(135deg, rgba(4,35,27,.92), rgba(13,89,65,.88)) !important;
  box-shadow: 0 28px 72px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18) !important;
  backdrop-filter: blur(8px) !important;
}
.hero-utp-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(135deg, rgba(255,216,103,.18), transparent 38%),
    linear-gradient(0deg, transparent, rgba(255,255,255,.04)) !important;
}
.hero-utp-card > * {
  position: relative !important;
  z-index: 1 !important;
}
.hero-utp-card > strong {
  display: block !important;
  color: #fff !important;
  font-size: clamp(24px, 2.3vw, 34px) !important;
  line-height: 1.06 !important;
  max-width: 420px !important;
}
.hero-utp-card .hero-usp-grid {
  margin-top: 2px !important;
}
.hero h1, .page-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 78px); line-height: .98; max-width: 950px; }
.lead, .page-hero p { font-size: clamp(18px, 2vw, 23px); max-width: 780px; color: rgba(255,255,255,.84); }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary { background: var(--gold); color: #16130b; }
.btn.ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.badges span,
.badges a,
.tag-cloud span,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 800;
}
.badges a:hover,
.tag-cloud a:hover {
  transform: translateY(-1px);
  border-color: rgba(198,146,46,.65);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.quote-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote-panel strong { display: block; font-size: 26px; margin-bottom: 12px; }
.quote-panel li { margin-bottom: 10px; }
.section, .split, .contact-layout, .product-page, .page-hero, .cta {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 74px);
}
.section.compact { padding-bottom: 34px; }
.section-head { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; margin-bottom: 28px; }
.section-head h2, .split h2, .cta h2, .contact-card h2 { margin: 0; font-size: clamp(28px, 4vw, 48px); line-height: 1.05; }
.section-head p { margin: 0; color: var(--muted); max-width: 720px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-tile, .product-card, .contact-card, .lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(21, 37, 29, .06);
}
.category-tile { padding: 16px; min-height: 168px; }
.category-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
  background: #e8eee9;
}
.category-tile span { display: block; font-weight: 800; font-size: 20px; }
.category-tile small { color: var(--gold); font-weight: 800; }
.category-tile p { color: var(--muted); margin-bottom: 0; }
.article-tile {
  background: linear-gradient(180deg, #fff, #f4fbf6);
}
.article-tile small {
  color: var(--red);
}
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  background: #fff;
  border: 1px solid rgba(17,97,73,.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(19,32,26,.1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198,146,46,.65);
  box-shadow: 0 22px 46px rgba(19,32,26,.16);
}
.product-card-main {
  display: grid;
  grid-template-rows: 168px auto;
  min-height: 100%;
}
.product-img {
  background:
    radial-gradient(circle at 78% 16%, rgba(198,146,46,.22), transparent 30%),
    linear-gradient(135deg, #10281f, #244f41);
  display: grid;
  place-items: center;
  padding: 20px;
  min-width: 0;
}
.product-img img.generated-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.product-img img.source-thumb {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 112px;
  object-fit: contain;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}
.product-mark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
}
.product-copy {
  display: grid;
  gap: 8px;
  padding: 16px 16px 14px;
  background: #fff;
}
.product-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-copy strong {
  display: block;
  min-height: 43px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}
.price {
  margin: 0;
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
}
.card-more {
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}
.product-offer,
.text-link {
  color: var(--green);
  font-weight: 900;
}
.product-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0 16px 16px;
  border-radius: 6px;
  background: #f5ead5;
  color: #62420d;
  border: 1px solid rgba(198,146,46,.45);
}
.product-offer:hover {
  background: var(--gold);
  color: #17140c;
}
.product-offer-control {
  display: grid;
  margin: 0 16px 16px;
  min-height: 44px;
}
.product-offer-control .product-offer {
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid rgba(198,146,46,.45);
  cursor: pointer;
  font: inherit;
}
.product-offer.added {
  background: var(--green) !important;
  color: #fff !important;
  border-color: var(--green) !important;
}
.buyout-stepper {
  display: grid;
  grid-template-columns: 46px minmax(68px, 1fr) 46px;
  height: 44px;
  min-height: 44px;
  overflow: hidden;
  border: 2px solid rgba(198,146,46,.72);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(22,45,33,.08);
}
.buyout-stepper button,
.buyout-stepper input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-weight: 900;
}
.buyout-stepper button {
  cursor: pointer;
  background: linear-gradient(180deg, #ffd867, #d39a2c);
  color: #17130a;
  font-size: 22px;
}
.buyout-stepper input {
  padding: 0 8px;
  text-align: center;
  color: var(--green-2);
  font-size: 18px;
  background: #fffdf6;
  -moz-appearance: textfield;
}
.buyout-stepper input::-webkit-outer-spin-button,
.buyout-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.buyout-cart {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid rgba(198,146,46,.38);
  background: linear-gradient(180deg, #fffdf6, #fff7df);
}
.buyout-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.buyout-cart-head strong {
  color: var(--green-2);
  font-size: 22px;
  line-height: 1.1;
}
.buyout-cart-head span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.buyout-cart-empty {
  color: var(--muted);
  font-weight: 700;
}
.buyout-price-note {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: #6b5a2f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.38;
  border: 1px solid rgba(198,146,46,.28);
}
.buyout-cart-list {
  display: grid;
  gap: 10px;
}
.buyout-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 180px) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(198,146,46,.24);
}
.buyout-row-title {
  display: grid;
  gap: 3px;
}
.buyout-row-title strong {
  color: var(--ink);
  line-height: 1.2;
}
.buyout-row-title span {
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}
.buyout-row-title em {
  color: #6b5a2f;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}
.buyout-row-title small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.product-category-label {
  display: block !important;
  margin-top: 7px !important;
  color: #68746c !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}
.buyout-row label {
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.lead-form .buyout-row label,
main .lead-form .buyout-row label {
  color: #062f25 !important;
  font-weight: 950 !important;
  letter-spacing: .03em !important;
}
.buyout-row input {
  padding: 10px;
}
.buyout-row button,
.buyout-clear {
  min-height: 40px;
  border: 1px solid rgba(157,45,45,.25);
  border-radius: 6px;
  background: #fff4f2;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.buyout-clear {
  justify-self: start;
  padding: 0 12px;
}
.buyout-quick-panel {
  display: grid !important;
  gap: 12px !important;
}
.buyout-quick-panel p {
  margin: 0 !important;
  color: #26372e !important;
  font-size: 16px !important;
}
.buyout-quick-panel label {
  color: var(--green-2) !important;
}
.buyout-quick-panel textarea {
  min-height: 104px !important;
  resize: vertical !important;
  background: #fff !important;
}
.buyout-quick-panel .btn {
  width: 100% !important;
}
.buyout-quick-panel .btn.added {
  background: var(--green) !important;
  color: #fff !important;
}
.buyout-quick-link {
  text-align: center !important;
  color: var(--green-2) !important;
  font-weight: 900 !important;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 70px); background: #fff; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; }
.tag-cloud { display: flex; gap: 9px; flex-wrap: wrap; }
.tag-cloud span,
.tag-cloud a {
  border-color: var(--line);
  background: #f8faf8;
  color: var(--green-2);
}
.cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--green-2); color: #fff; }
.cta p { color: rgba(255,255,255,.76); }
.trust-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 74px);
  background:
    radial-gradient(circle at 85% 20%, rgba(198,146,46,.22), transparent 28%),
    linear-gradient(135deg, #071d17, #17382d 56%, #0d271f);
  color: #fff;
  border-top: 1px solid rgba(198,146,46,.28);
  border-bottom: 1px solid rgba(198,146,46,.28);
}
.trust-banner h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
}
.trust-banner p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.trust-banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trust-banner li {
  min-height: 108px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.trust-banner li strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.05;
}
.trust-banner li span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.76);
}
.offer-billboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
  margin: 0;
  padding: clamp(34px, 5vw, 66px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(100deg, rgba(198,146,46,.96), rgba(198,146,46,.28) 30%, transparent 58%),
    radial-gradient(circle at 86% 34%, rgba(255,236,179,.34), transparent 28%),
    linear-gradient(135deg, #071d17, #102f25);
  color: #fff;
  border-top: 1px solid rgba(255,226,154,.8);
  border-bottom: 1px solid rgba(255,226,154,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.offer-billboard h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: .96;
  text-transform: uppercase;
}
.offer-billboard p {
  max-width: 820px;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 2vw, 22px);
}
.offer-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.offer-marks span {
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
}
.offer-billboard .btn {
  min-width: 230px;
  background: var(--gold);
  color: #17140c;
  box-shadow: 0 18px 34px rgba(0,0,0,.24);
}
.page-hero {
  background: linear-gradient(135deg, #10281f, #36574a);
  color: #fff;
}
.visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}
.page-visual {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
}
.page-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.toolbar { display: flex; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.toolbar input {
  width: min(520px, 100%);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  font-size: 16px;
}
.product-page { display: grid; grid-template-columns: minmax(280px, 520px) 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; background: #fff; }
.product-photo {
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 30% 20%, rgba(198,146,46,.16), transparent 34%),
    linear-gradient(135deg, #eef3ef, #dfe9e2);
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 44px);
}
.product-photo img.generated-thumb {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
}
.product-photo img.source-thumb {
  width: auto;
  height: auto;
  max-width: min(300px, 82%);
  max-height: 240px;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(19,32,26,.14);
  box-shadow: 0 18px 42px rgba(19,32,26,.16);
}
.product-detail h1 { margin: 0; font-size: clamp(34px, 5vw, 60px); line-height: 1; }
.product-detail .lead { color: var(--muted); }
dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 18px; margin: 24px 0; }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 800; }
.rich-section,
.detail-band,
.steps-section {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 74px);
  background: #fff;
}
.rich-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f8faf8);
}
.info-panel strong {
  display: block;
  color: var(--red);
  font-size: 19px;
  line-height: 1.15;
}
.info-panel p {
  color: var(--muted);
  margin-bottom: 0;
}
.detail-band {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  background: #fffdf7;
}
.detail-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}
.detail-band p {
  color: var(--muted);
  font-size: 18px;
}
.steps-section {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: clamp(22px, 4vw, 50px);
  background: #f9f6ef;
}
.steps-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  counter-reset: steps;
}
.steps li {
  position: relative;
  min-height: 126px;
  padding: 20px 18px 18px 62px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  counter-increment: steps;
}
.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.steps strong {
  display: block;
  font-size: 18px;
}
.steps span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}
.contact-layout { display: grid; grid-template-columns: .75fr 1fr; gap: 24px; align-items: start; }
.contact-card, .lead-form { padding: 24px; }
.lead-form { display: grid; gap: 14px; }
.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.form-badges span,
.form-badges a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--gold);
  color: #17140c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.form-badges a:hover {
  filter: brightness(.96);
  transform: translateY(-1px);
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-hero {
  background:
    linear-gradient(135deg, rgba(17,97,73,.96), rgba(9,37,29,.92)),
    url("../img/illustrations/radio-parts-hero.svg") center / cover;
}
.contact-hotline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact-hotline a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--gold);
  color: #17140c;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
}
.contact-hotline a + a {
  background: #fff;
  color: var(--green-2);
}
.hero-quote-utp {
  align-self: center !important;
  max-width: 560px !important;
  justify-self: end !important;
}
.hero-quote-utp ul {
  margin: 0 0 18px !important;
  padding-left: 20px !important;
}
.hero-quote-utp li {
  color: rgba(255,255,255,.9) !important;
  font-size: 16px !important;
  line-height: 1.38 !important;
}
.hero-quote-utp a {
  display: inline-flex !important;
  min-height: 46px !important;
  align-items: center !important;
  padding: 0 16px !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: var(--green-2) !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 35px rgba(0,0,0,.18) !important;
}
.contact-card.accent {
  border: 2px solid rgba(198,146,46,.5);
  background: linear-gradient(180deg, #fff, #fff8e8);
}
.contact-note {
  margin-top: 24px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 8px;
  background: var(--green-2);
  color: #fff;
}
.contact-note strong { font-size: 24px; }
.contact-note span { color: rgba(255,255,255,.78); }
label { display: grid; gap: 7px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
}
.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600;
  color: var(--muted);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.consent a,
.legal a,
.legal-links a {
  color: var(--green);
  font-weight: 800;
}
.legal {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
}
.legal h2 {
  margin-top: 28px;
}
.article-body {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 74px);
  background: #fff;
}
.article-body p {
  margin: 0 0 18px;
  font-size: 18px;
  color: #26372e;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.fz-banner {
  position: fixed;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid rgba(198,146,46,.55);
  box-shadow: var(--shadow);
}
.fz-banner[hidden] { display: none; }
.fz-banner p { margin: 3px 0 0; color: var(--muted); }
.fz-banner a { color: var(--green); font-weight: 800; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.footer a { display: block; color: var(--green); font-weight: 800; }
@media (max-width: 1050px) {
  .hero, .split, .contact-layout, .product-page, .visual-hero, .detail-band, .steps-section, .trust-banner { grid-template-columns: 1fr; }
  .category-grid, .product-grid, .rich-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .top-actions { display: none; }
  .topbar { grid-template-columns: minmax(240px, 1fr) auto; }
  .topbar nav { grid-column: 1 / -1; }
  .global-offer { top: 102px; }
}
@media (max-width: 720px) {
  .topbar { grid-template-columns: 1fr auto; }
  .brand { grid-template-columns: 74px 1fr; }
  .brand img { width: 74px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 11px; }
  .menu-btn { display: block; }
  nav { display: none; grid-column: 1 / -1; justify-content: start; }
  nav.open { display: flex; }
  .global-offer {
    position: static;
    display: grid;
  }
  .global-offer a { width: 100%; }
  .offer-billboard { grid-template-columns: 1fr; }
  .offer-billboard .btn { width: 100%; }
  .hero { min-height: auto; }
  .category-grid, .product-grid, .rich-grid, .steps { grid-template-columns: 1fr; }
  .product-card-main { grid-template-rows: 168px auto; }
  .trust-banner ul { grid-template-columns: 1fr; }
  .section-head, .toolbar, .cta, .footer { display: block; }
  .hero h1, .page-hero h1 { font-size: 38px; }
  dl { grid-template-columns: 1fr; }
  .fz-banner { display: block; }
  .fz-banner .btn { margin-top: 12px; width: 100%; }
}

/* Premium visual refresh */
:root {
  --bg: #f3f5f1;
  --paper: #ffffff;
  --ink: #101814;
  --muted: #5f6f66;
  --line: #d7ded6;
  --green: #006b4f;
  --green-2: #062f25;
  --gold: #d4a23a;
  --gold-2: #f0cf7a;
  --red: #9f2d2d;
  --graphite: #16211c;
  --shadow: 0 22px 60px rgba(12, 27, 20, .15);
  --shadow-strong: 0 34px 90px rgba(8, 22, 16, .24);
}
* { letter-spacing: 0; }
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(243,245,241,.96) 34%, rgba(238,242,236,.96)),
    repeating-linear-gradient(90deg, rgba(6,47,37,.035) 0, rgba(6,47,37,.035) 1px, transparent 1px, transparent 80px);
  color: var(--ink);
}
.topbar {
  min-height: 82px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(6,47,37,.12);
  box-shadow: 0 10px 32px rgba(6,47,37,.08);
}
.brand img,
.footer-brand img {
  filter: drop-shadow(0 10px 18px rgba(6,47,37,.16));
}
.brand strong,
.footer-brand strong {
  color: #053b2f;
  font-size: 24px;
}
.brand small,
.footer-brand small {
  color: var(--red);
  font-size: 14px;
}
nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #51625a;
  font-weight: 700;
}
nav a:hover {
  background: #eef5ef;
  color: var(--green-2);
}
.top-actions {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f6f8f4;
  border: 1px solid rgba(6,47,37,.08);
}
.phone {
  color: #005f47;
  font-weight: 900;
}
.global-offer {
  top: 82px;
  padding-top: 20px;
  padding-bottom: 20px;
  background:
    linear-gradient(90deg, rgba(212,162,58,.92), rgba(212,162,58,.34) 24%, transparent 50%),
    linear-gradient(135deg, #031711, #08261d 42%, #173d2f 72%, #071c16);
  border-top: 1px solid rgba(240,207,122,.85);
  border-bottom: 1px solid rgba(240,207,122,.85);
}
.global-offer strong {
  max-width: 980px;
  font-size: clamp(28px, 3.2vw, 52px);
}
.global-offer span {
  color: rgba(255,255,255,.84);
}
.global-offer a,
.btn.primary,
.offer-billboard .btn,
.contact-hotline a {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(94,67,12,.18);
  color: #17130a;
  box-shadow: 0 16px 34px rgba(94,67,12,.22), inset 0 1px 0 rgba(255,255,255,.35);
}
.global-offer a:hover,
.btn.primary:hover,
.offer-billboard .btn:hover,
.contact-hotline a:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(94,67,12,.28), inset 0 1px 0 rgba(255,255,255,.42);
}
.btn,
.product-card,
.category-tile,
.contact-card,
.lead-form,
.info-panel,
.steps li,
.page-visual,
.product-photo,
.fz-banner {
  border-radius: 8px;
}
.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3,17,13,.96), rgba(6,47,37,.88) 44%, rgba(20,55,45,.76)),
    linear-gradient(135deg, #061812, #23483b);
}
.hero::before,
.page-hero::before,
.trust-banner::before,
.offer-billboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(240,207,122,.18), transparent 16%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 28px);
  z-index: -1;
}
.hero {
  min-height: 720px;
  border-bottom: 1px solid rgba(212,162,58,.42);
}
.hero h1,
.page-hero h1 {
  text-wrap: balance;
  font-weight: 900;
  font-size: clamp(42px, 6.3vw, 86px);
  line-height: .95;
  text-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.lead,
.page-hero p {
  color: rgba(255,255,255,.9);
}
.eyebrow {
  color: var(--gold-2);
  font-weight: 900;
}
.quote-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08)),
    rgba(6,47,37,.28);
  border: 1px solid rgba(240,207,122,.38);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}
.section,
.rich-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,247,.95));
}
.section-head h2,
.split h2,
.cta h2,
.contact-card h2,
.detail-band h2,
.steps-section h2 {
  color: var(--ink);
  font-weight: 900;
  text-wrap: balance;
}
.category-grid,
.rich-grid {
  gap: 22px;
}
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #f7faf7);
  border: 1px solid rgba(6,47,37,.1);
  box-shadow: 0 14px 42px rgba(12,27,20,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(212,162,58,.65);
  box-shadow: var(--shadow);
}
.category-tile img {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
  background: #0b2b22;
}
.category-tile span {
  color: var(--green-2);
  font-size: 21px;
  line-height: 1.1;
}
.product-card {
  background:
    linear-gradient(180deg, #ffffff, #f9fbf8);
  border: 1px solid rgba(6,47,37,.11);
  box-shadow: 0 18px 45px rgba(12,27,20,.1);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(212,162,58,.18), var(--green));
  opacity: .95;
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(12,27,20,.18);
}
.product-card-main {
  grid-template-rows: 228px auto;
}
.product-img {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(240,207,122,.16), transparent 36%),
    linear-gradient(135deg, #061812, #0f362b 52%, #1d4b3d);
}
.product-img::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240,207,122,.2);
  border-radius: 8px;
  pointer-events: none;
}
.product-img img.source-thumb {
  max-width: 84%;
  max-height: 164px;
  padding: 14px;
  border: 1px solid rgba(240,207,122,.5);
  box-shadow: 0 22px 44px rgba(0,0,0,.32);
}
.product-copy {
  padding: 20px 20px 18px;
}
.product-kicker {
  color: #997022;
}
.product-copy strong {
  min-height: 52px;
  font-size: 20px;
}
.price {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 6px;
  background: #fff1f0;
  color: #9f2d2d;
  border: 1px solid rgba(159,45,45,.12);
}
.card-more {
  color: #006b4f;
}
.product-offer {
  min-height: 48px;
  margin: 0 20px 20px;
  background: linear-gradient(180deg, #fff8e7, #efd9a8);
  border-color: rgba(212,162,58,.5);
  color: #4e370d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.trust-banner,
.offer-billboard,
.cta {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(212,162,58,.16), transparent 22%),
    linear-gradient(135deg, #031711, #08261d 48%, #14382d);
  border-top: 1px solid rgba(240,207,122,.45);
  border-bottom: 1px solid rgba(240,207,122,.45);
}
.trust-banner h2,
.offer-billboard h2 {
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.trust-banner li,
.offer-marks span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(240,207,122,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.trust-banner li strong {
  color: var(--gold-2);
}
.offer-billboard {
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: clamp(44px, 6vw, 82px);
}
.offer-billboard h2 {
  font-size: clamp(38px, 5.4vw, 84px);
}
.info-panel,
.steps li,
.contact-card,
.lead-form {
  border: 1px solid rgba(6,47,37,.1);
  box-shadow: 0 16px 44px rgba(12,27,20,.08);
}
.info-panel {
  background:
    linear-gradient(180deg, #ffffff, #f7faf7);
}
.info-panel strong {
  color: var(--green-2);
  font-size: 21px;
}
.detail-band,
.steps-section {
  background:
    linear-gradient(180deg, #fbfaf5, #f4f0e5);
}
.steps li::before {
  background: linear-gradient(180deg, var(--gold), #aa781f);
  color: #15110a;
}
.contact-card.accent,
.lead-form {
  background:
    linear-gradient(180deg, #fff, #fbf8ee);
  border-color: rgba(212,162,58,.36);
}
input,
textarea {
  border-color: rgba(6,47,37,.16);
  background: #fff;
}
input:focus,
textarea:focus {
  outline: 2px solid rgba(212,162,58,.32);
  border-color: rgba(212,162,58,.7);
}
.footer {
  background:
    linear-gradient(135deg, #061812, #0b2a21);
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(240,207,122,.36);
}
.footer a {
  color: var(--gold-2);
}
.footer .footer-brand strong {
  color: #fff;
}
.footer .footer-brand small {
  color: var(--gold-2);
}
@media (max-width: 1050px) {
  .global-offer { top: 103px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .topbar { min-height: auto; }
  .global-offer strong { font-size: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-main { grid-template-rows: 210px auto; }
}
@media (min-width: 1740px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Hard visibility lock for product cards */
.product-grid .product-card {
  min-height: 390px !important;
  background: #fff !important;
}
.product-grid .product-card-main {
  display: grid !important;
  grid-template-rows: 230px auto !important;
  color: var(--ink) !important;
}
.product-grid .product-img {
  min-height: 230px !important;
  background:
    linear-gradient(150deg, rgba(240,207,122,.18), transparent 38%),
    linear-gradient(135deg, #061812, #103d30 54%, #1d4b3d) !important;
}
.product-grid .product-img img,
.product-grid .product-card > img {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 86% !important;
  max-height: 168px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
}
.product-grid .product-copy {
  position: static !important;
  z-index: 2 !important;
  display: grid !important;
  gap: 10px !important;
  min-height: 150px !important;
  padding: 20px !important;
  background: #fff !important;
  color: var(--ink) !important;
}
.product-grid .product-copy strong,
.product-grid .product-card strong {
  color: var(--ink) !important;
  text-shadow: none !important;
}
.product-grid .price {
  color: var(--red) !important;
  background: #fff1f0 !important;
}
.product-grid .product-offer {
  position: static !important;
  z-index: 2 !important;
  color: #3e2a08 !important;
  background: linear-gradient(180deg, #fff6dc, #e9c46c) !important;
}
.product-grid .product-card a {
  text-shadow: none !important;
}
.fz-banner {
  left: 22px !important;
  right: auto !important;
  bottom: 18px !important;
  width: min(560px, calc(100vw - 44px)) !important;
  align-items: start !important;
  padding: 18px !important;
  border-color: rgba(212,162,58,.72) !important;
  box-shadow: 0 24px 70px rgba(8,22,16,.2) !important;
}
.fz-banner p {
  font-size: 14px !important;
  line-height: 1.45 !important;
}
.fz-banner .btn {
  min-width: 116px !important;
}
@media (max-width: 720px) {
  .fz-banner {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }
}

/* Compact informative header and hero */
.global-offer {
  display: none !important;
}
.topbar {
  min-height: 58px !important;
  padding: 7px clamp(14px, 4vw, 54px) !important;
  grid-template-columns: minmax(230px, 360px) 1fr auto auto !important;
}
.brand,
.footer-brand {
  grid-template-columns: 68px 1fr !important;
  gap: 10px !important;
}
.brand img {
  width: 68px !important;
}
.brand strong {
  font-size: 20px !important;
}
.brand small {
  font-size: 12px !important;
  line-height: 1.1 !important;
}
nav {
  gap: 10px !important;
  font-size: 13px !important;
}
nav a {
  padding: 6px 8px !important;
}
.top-actions {
  padding: 5px 8px !important;
  gap: 9px !important;
  font-size: 13px !important;
}
.header-cta {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
  color: #17130a !important;
  font-weight: 900 !important;
}
.hero,
.page-hero {
  min-height: 0 !important;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 74px) !important;
}
.hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr) !important;
}
.hero h1,
.page-hero h1,
.product-detail h1 {
  font-size: clamp(34px, 4.8vw, 60px) !important;
  line-height: .98 !important;
}
.lead,
.page-hero p {
  font-size: clamp(16px, 1.5vw, 20px) !important;
}
.page-visual img {
  aspect-ratio: 16 / 8.8 !important;
}
.section,
.split,
.contact-layout,
.product-page,
.cta,
.rich-section,
.detail-band,
.steps-section,
.trust-banner,
.offer-billboard {
  padding: clamp(30px, 4.6vw, 58px) clamp(18px, 5vw, 74px) !important;
}
.section-head {
  margin-bottom: 18px !important;
}
.section-head h2,
.split h2,
.cta h2,
.contact-card h2,
.detail-band h2,
.steps-section h2,
.trust-banner h2,
.offer-billboard h2 {
  font-size: clamp(26px, 3.2vw, 44px) !important;
}
.cta h2 {
  color: #ffffff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.34) !important;
}
.cta p {
  color: rgba(255,255,255,.88) !important;
}
.cta .btn.primary {
  box-shadow: 0 16px 34px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.18) inset !important;
}
.trust-banner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr) !important;
}
.trust-banner li {
  min-height: 82px !important;
  padding: 14px !important;
}
.trust-banner li strong {
  font-size: 20px !important;
}
.rich-grid,
.steps {
  gap: 12px !important;
}
.info-panel,
.steps li {
  padding: 16px !important;
}
.offer-billboard .btn {
  min-width: 210px !important;
}
.product-grid .product-card-main {
  grid-template-rows: 206px auto !important;
}
.product-grid .product-img,
.product-grid .product-card-main > .product-img {
  min-height: 206px !important;
}
.product-grid .product-img img,
.product-grid .product-card > img {
  max-height: 146px !important;
}
.product-grid .product-card {
  min-height: 350px !important;
}
.product-grid .product-copy {
  min-height: 126px !important;
  padding: 16px !important;
}
.product-copy strong,
.product-grid .product-copy strong {
  min-height: 40px !important;
  font-size: 18px !important;
}
.product-offer,
.product-grid .product-offer {
  min-height: 42px !important;
  margin: 0 16px 16px !important;
}
.product-list-section .section-head {
  display: block !important;
  max-width: 980px !important;
}
.product-list-section .section-head h2 {
  margin: 6px 0 10px !important;
}
.product-list-section .section-head p:last-child {
  max-width: 760px !important;
}
@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: minmax(220px, 1fr) auto !important;
  }
  .hero,
  .visual-hero,
  .trust-banner {
    grid-template-columns: 1fr !important;
  }
}

/* Article conversion blocks */
.article-body {
  display: grid !important;
  gap: 18px !important;
}
.article-leadout,
.article-block,
.article-cta-strip {
  border-radius: 8px !important;
  border: 1px solid rgba(6,47,37,.11) !important;
  box-shadow: 0 16px 42px rgba(12,27,20,.08) !important;
}
.article-leadout {
  padding: clamp(22px, 3.4vw, 34px) !important;
  background:
    linear-gradient(90deg, rgba(212,162,58,.12), transparent 42%),
    linear-gradient(180deg, #fff, #faf8ef) !important;
}
.article-leadout h2 {
  margin: 0 0 10px !important;
  font-size: clamp(28px, 3.2vw, 42px) !important;
}
.article-phone-line {
  margin: 16px 0 0 !important;
  color: var(--green-2) !important;
  font-weight: 900 !important;
}
.article-phone-line a {
  display: inline-block !important;
  margin-top: 6px !important;
  color: var(--red) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}
.article-block {
  padding: clamp(20px, 3vw, 30px) !important;
  background: #fff !important;
}
.article-block h2 {
  margin: 0 0 8px !important;
  color: var(--green-2) !important;
  font-size: clamp(24px, 2.4vw, 34px) !important;
}
.article-block h3 {
  margin: 0 0 14px !important;
  color: var(--gold) !important;
  font-size: 18px !important;
}
.article-cta-strip {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 18px !important;
  background: linear-gradient(135deg, #061812, #133b30) !important;
  color: #fff !important;
}
.article-cta-strip strong {
  display: block !important;
  color: var(--gold-2) !important;
  font-size: 22px !important;
}
.article-cta-strip span {
  color: rgba(255,255,255,.82) !important;
}
@media (max-width: 720px) {
  .article-cta-strip {
    grid-template-columns: 1fr !important;
  }
}

/* Final logo, FZ-152 and footer navigation polish */
.topbar {
  grid-template-columns: minmax(330px, 430px) 1fr auto auto !important;
}
.brand,
.footer-brand {
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 12px !important;
}
.brand img,
.footer-brand img {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(6,47,37,.22)) !important;
}
.brand strong,
.footer-brand strong {
  font-size: 23px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}
.brand small,
.footer-brand small {
  display: block !important;
  margin-top: 4px !important;
  color: #a92b2b !important;
  font-size: 13px !important;
  line-height: 1.05 !important;
  max-width: 260px !important;
}
.footer .footer-brand small {
  color: var(--gold-2) !important;
}
.trust-banner li {
  padding: 0 !important;
  transition: transform .18s ease, border-color .18s ease, background .18s ease !important;
}
.trust-banner li:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(240,207,122,.68) !important;
  background: rgba(255,255,255,.15) !important;
}
.trust-banner li a {
  display: block !important;
  min-height: 82px !important;
  padding: 14px !important;
  color: inherit !important;
}
.footer {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, .9fr) minmax(220px, .7fr) !important;
  align-items: start !important;
  gap: 28px !important;
}
.footer-main p {
  max-width: 620px !important;
}
.footer-catalog {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px 14px !important;
}
.footer-catalog strong,
.footer-contacts strong {
  grid-column: 1 / -1 !important;
  display: block !important;
  margin-bottom: 6px !important;
  color: #fff !important;
  font-size: 17px !important;
}
.footer-catalog a,
.footer-contacts a,
.legal-links a {
  color: var(--gold-2) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}
.footer-contacts {
  display: grid !important;
  gap: 10px !important;
  justify-items: start !important;
}
.consent {
  padding: 12px !important;
  border: 1px solid rgba(6,107,79,.18) !important;
  border-radius: 8px !important;
  background: #f7fbf8 !important;
}
.consent input {
  accent-color: var(--green) !important;
}
@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: minmax(280px, 1fr) auto !important;
  }
  .footer {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 720px) {
  .brand {
    grid-template-columns: 50px minmax(0, 1fr) !important;
  }
  .brand img {
    width: 50px !important;
    height: 50px !important;
  }
  .brand strong {
    font-size: 19px !important;
  }
  .brand small {
    font-size: 11px !important;
  }
  .footer-catalog {
    grid-template-columns: 1fr !important;
  }
}

/* Hero USP merge */
.hero-with-usp {
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .72fr) !important;
  align-items: center !important;
  gap: clamp(26px, 5vw, 70px) !important;
}
.compact-hero {
  padding-top: clamp(30px, 4vw, 50px) !important;
  padding-bottom: clamp(30px, 4vw, 50px) !important;
}
.compact-hero .hero-quote-utp {
  margin: 0 !important;
}
.hero-side {
  display: grid !important;
  gap: 14px !important;
}
.hero-side .page-visual {
  margin: 0 !important;
  max-width: none !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.24) !important;
}
.hero-usp-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
.hero-usp-grid a {
  position: relative !important;
  display: block !important;
  min-height: 104px !important;
  padding: 18px 16px 16px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid rgba(240,207,122,.72) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08)),
    linear-gradient(135deg, #164d3e, #08271f) !important;
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.14) !important;
  transition: transform .18s ease, border-color .18s ease, background .18s ease !important;
}
.hero-utp-card .hero-usp-grid a {
  min-height: 118px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08)),
    linear-gradient(135deg, #0c4838, #061f19) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.hero-usp-grid a::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 5px !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
}
.hero-usp-grid a::after {
  content: "К заявке" !important;
  display: inline-flex !important;
  margin-top: 12px !important;
  color: #17130a !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
  border-radius: 999px !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.hero-usp-grid a:hover {
  transform: translateY(-3px) !important;
  border-color: #ffe29a !important;
  background:
    linear-gradient(135deg, rgba(240,207,122,.24), rgba(255,255,255,.08)),
    linear-gradient(135deg, #1b604d, #0a2d24) !important;
}
.hero-usp-grid strong {
  display: block !important;
  color: var(--gold-2) !important;
  font-size: 20px !important;
  line-height: 1.05 !important;
}
.hero-usp-grid span {
  display: block !important;
  margin-top: 8px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}
@media (max-width: 1050px) {
  .hero-with-usp {
    grid-template-columns: 1fr !important;
  }
  .hero.hero-clean {
    grid-template-columns: 1fr !important;
  }
  .hero-utp-card {
    width: 100% !important;
    align-self: stretch !important;
  }
}
@media (max-width: 720px) {
  .hero-usp-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-usp-grid a {
    min-height: 82px !important;
  }
}

/* Full-site conversion system */
.quote-panel .hero-usp-grid {
  margin: 18px 0 !important;
}
.quote-panel .hero-usp-grid a {
  min-height: 78px !important;
  padding: 14px 12px !important;
}
.quote-panel .hero-usp-grid a::after {
  display: none !important;
}
.lead-capture {
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .64fr) !important;
  gap: clamp(22px, 4vw, 54px) !important;
  align-items: start !important;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 74px) !important;
  background:
    linear-gradient(90deg, rgba(212,162,58,.08), transparent 46%),
    linear-gradient(180deg, #fff, #f7faf7) !important;
  border-top: 1px solid rgba(6,47,37,.08) !important;
  border-bottom: 1px solid rgba(6,47,37,.08) !important;
  scroll-margin-top: 120px !important;
}
.lead-capture-copy {
  max-width: 760px !important;
}
.home-buyout-note {
  padding: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 74px) 0 !important;
  background: #fff !important;
}
.home-buyout-note .quote-panel-wide {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: clamp(18px, 3vw, 34px) !important;
  align-items: center !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  background:
    linear-gradient(135deg, rgba(255,216,103,.14), rgba(255,253,246,.96)),
    #fffdf6 !important;
  color: #08291f !important;
  border: 2px solid rgba(212,162,58,.32) !important;
  box-shadow: 0 18px 42px rgba(6,47,37,.08) !important;
}
.home-buyout-note .quote-panel-wide::before {
  display: none !important;
}
.home-buyout-note .quote-panel-wide strong {
  color: #063426 !important;
}
.home-buyout-note .quote-panel-wide ul {
  margin: 0 !important;
  color: #283b31 !important;
}
.home-buyout-note .quote-panel-wide > a {
  align-self: center !important;
  justify-self: end !important;
  color: #063426 !important;
  font-weight: 950 !important;
}
.lead-capture h2 {
  margin: 0 0 14px !important;
  color: var(--ink) !important;
  font-size: clamp(30px, 4vw, 52px) !important;
  line-height: 1.02 !important;
  text-wrap: balance !important;
}
.lead-capture p {
  color: var(--muted) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}
.mini-proof {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.mini-proof li {
  padding: 0 !important;
}
.mini-proof li a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  background: #eef6f1 !important;
  border: 1px solid rgba(6,107,79,.14) !important;
  color: var(--green-2) !important;
  font-weight: 900 !important;
}
.mini-proof li a:hover {
  background: #e4f1e9 !important;
  border-color: rgba(6,107,79,.28) !important;
  transform: translateY(-1px);
}
.product-conversion {
  background:
    linear-gradient(90deg, rgba(6,47,37,.04), transparent 44%),
    #fff !important;
}
.product-detail .hero-usp-grid {
  margin-top: 18px !important;
}
.product-detail .hero-usp-grid a {
  min-height: 84px !important;
  background:
    linear-gradient(135deg, rgba(240,207,122,.12), rgba(255,255,255,.96)),
    #fff !important;
  color: var(--ink) !important;
}
.product-detail .hero-usp-grid span {
  color: var(--muted) !important;
}
.floating-cta {
  position: fixed !important;
  right: 22px !important;
  bottom: 18px !important;
  z-index: 49 !important;
  display: flex !important;
  gap: 10px !important;
  padding: 8px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(6,47,37,.12) !important;
  box-shadow: 0 20px 54px rgba(8,22,16,.18) !important;
  backdrop-filter: blur(10px) !important;
}
.floating-cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  font-weight: 900 !important;
}
.floating-phone {
  color: var(--green-2) !important;
  background: #eef6f1 !important;
}
.floating-form {
  color: #17130a !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
}
@media (max-width: 1050px) {
  .lead-capture {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 720px) {
  .floating-cta {
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
  }
  .floating-cta a {
    flex: 1 1 0 !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }
  .fz-banner {
    bottom: 72px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
    padding: 12px !important;
    max-height: 148px !important;
    overflow: auto !important;
  }
  .fz-banner p {
    font-size: 12px !important;
    line-height: 1.32 !important;
  }
  .fz-banner .btn {
    width: auto !important;
    min-width: 92px !important;
    min-height: 44px !important;
    margin-top: 0 !important;
    padding: 0 12px !important;
  }
}

/* Premium payout steps */
.steps-section {
  position: relative !important;
  overflow: hidden !important;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  background:
    linear-gradient(90deg, rgba(6,47,37,.96), rgba(6,47,37,.84) 42%, rgba(212,162,58,.13)),
    linear-gradient(135deg, #061812, #173d31) !important;
  color: #fff !important;
  border-top: 1px solid rgba(240,207,122,.34) !important;
  border-bottom: 1px solid rgba(240,207,122,.34) !important;
}
.steps-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(240,207,122,.18), transparent 18%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 28px) !important;
}
.steps-section > * {
  position: relative !important;
  z-index: 1 !important;
}
.steps-section .eyebrow {
  color: var(--gold-2) !important;
}
.steps-section h2 {
  color: #fff !important;
  font-size: clamp(34px, 4.4vw, 58px) !important;
  max-width: 420px !important;
  text-shadow: 0 18px 42px rgba(0,0,0,.24) !important;
}
.steps-section h2::after {
  content: "Заявка, оценка, передача, оплата" !important;
  display: block !important;
  margin-top: 18px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}
.steps {
  gap: 16px !important;
}
.steps li {
  min-height: 156px !important;
  padding: 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(251,248,238,.96)) !important;
  border: 1px solid rgba(240,207,122,.42) !important;
  box-shadow: 0 22px 54px rgba(0,0,0,.2) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}
.steps li:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(255,226,154,.9) !important;
  box-shadow: 0 30px 68px rgba(0,0,0,.24) !important;
}
.steps li a {
  display: flex !important;
  flex-direction: column !important;
  min-height: 156px !important;
  padding: 26px 22px 22px 96px !important;
  color: inherit !important;
}
.steps li::before {
  left: 22px !important;
  top: 24px !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
  color: #17130a !important;
  font-size: 26px !important;
  box-shadow: 0 14px 30px rgba(94,67,12,.24), inset 0 1px 0 rgba(255,255,255,.36) !important;
}
.steps strong {
  color: var(--ink) !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
}
.steps span {
  color: #58665d !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}
.steps li a::after {
  content: "Продать дороже" !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  margin-top: auto !important;
  color: var(--green-2) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
@media (max-width: 1050px) {
  .steps-section {
    grid-template-columns: 1fr !important;
  }
  .steps-section h2 {
    max-width: none !important;
  }
}
@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr !important;
  }
  .steps li {
    min-height: 0 !important;
  }
  .steps li a {
    min-height: 0 !important;
    padding: 22px 18px 20px 86px !important;
  }
  .steps li::before {
    left: 18px !important;
    width: 48px !important;
    height: 48px !important;
  }
}
@media (max-width: 720px) {
  .buyout-row {
    grid-template-columns: 1fr;
  }
  .top-actions {
    display: none !important;
  }
  .brand {
    grid-template-columns: 58px 1fr !important;
  }
  .brand img {
    width: 58px !important;
  }
  .hero,
  .page-hero {
    padding-top: 28px !important;
    padding-bottom: 34px !important;
  }
}

/* Brighter, simpler conversion pass */
body {
  background: #fbfcf8 !important;
}
.topbar {
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid rgba(198,146,46,.25) !important;
  box-shadow: 0 10px 28px rgba(17,36,27,.08) !important;
}
.hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(3,20,15,.94), rgba(8,95,70,.9) 54%, rgba(23,124,91,.82)),
    linear-gradient(135deg, #063223, #17825f) !important;
}
.compact-hero {
  padding-top: clamp(26px, 3.4vw, 44px) !important;
  padding-bottom: clamp(26px, 3.4vw, 44px) !important;
}
.compact-hero h1 {
  font-size: clamp(32px, 4.2vw, 54px) !important;
  max-width: 820px !important;
}
.compact-hero p {
  max-width: 720px !important;
}
.hero-with-usp {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px) !important;
}
.quote-panel.hero-quote-utp {
  background: linear-gradient(180deg, #fffdf6, #fff5dc) !important;
  border: 2px solid rgba(240,190,76,.85) !important;
  color: var(--ink) !important;
  box-shadow: 0 22px 54px rgba(10,40,27,.22) !important;
}
.hero-quote-utp strong {
  color: var(--green-2) !important;
  font-size: clamp(22px, 2vw, 30px) !important;
}
.hero-quote-utp li {
  color: #26372e !important;
  font-size: 15px !important;
}
.hero-quote-utp li::marker {
  color: var(--gold) !important;
}
.hero-quote-utp a,
.contact-hotline a,
.header-cta,
.btn.primary,
.floating-form {
  background: linear-gradient(180deg, #ffd867, #d39a2c) !important;
  color: #17130a !important;
  border: 1px solid rgba(129,85,12,.2) !important;
  box-shadow: 0 12px 26px rgba(161,111,24,.25) !important;
}
.contact-hotline a + a,
.hero-quote-utp a {
  background: #ffffff !important;
  color: var(--green-2) !important;
}
.category-tile,
.product-card,
.contact-card,
.lead-form,
.article-block,
.article-leadout {
  background: #ffffff !important;
  border: 1px solid rgba(198,146,46,.18) !important;
  box-shadow: 0 12px 32px rgba(22,45,33,.08) !important;
}
.category-tile:hover,
.product-card:hover {
  border-color: rgba(198,146,46,.55) !important;
  box-shadow: 0 18px 42px rgba(22,45,33,.13) !important;
}
.product-img,
.category-tile img,
.page-visual {
  background: #fffaf0 !important;
}
.price,
.product-kicker,
.category-tile small,
.eyebrow {
  color: #b98018 !important;
}
.lead-capture {
  background: linear-gradient(180deg, #fff, #fbf7ec) !important;
}
.form-badges a,
.mini-proof a,
.badges a,
.tag-cloud a {
  background: #fff7df !important;
  border-color: rgba(198,146,46,.38) !important;
  color: var(--green-2) !important;
}

/* Quantity control must replace the offer button in the exact same slot */
.product-card .product-offer-control {
  display: grid !important;
  margin: 0 16px 16px !important;
  min-height: 44px !important;
}
.product-card .product-offer-control .product-offer,
.product-card .product-offer-control .buyout-stepper {
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
}
.product-card .product-offer-control .product-offer {
  display: flex !important;
  padding: 0 12px !important;
}
.product-card .product-offer-control .buyout-stepper[hidden],
.product-card .product-offer-control .product-offer[hidden] {
  display: none !important;
}
.product-main-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 24px !important;
}
.product-main-offer-control {
  display: grid !important;
  width: min(100%, 320px) !important;
  min-height: 52px !important;
}
.product-main-offer-control .product-offer,
.product-main-offer-control .buyout-stepper {
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  border-radius: 8px !important;
}
.product-main-offer-control .product-offer {
  display: flex !important;
  justify-content: center !important;
  padding: 0 18px !important;
  font-size: 16px !important;
  background: linear-gradient(180deg, #ffe18a, #d39a2c) !important;
  color: #17130a !important;
  border: 1px solid rgba(129,85,12,.22) !important;
  box-shadow: 0 16px 34px rgba(161,111,24,.24) !important;
}
.product-main-offer-control .buyout-stepper {
  grid-template-columns: 54px minmax(76px, 1fr) 54px !important;
  overflow: hidden !important;
  border: 1px solid rgba(198,146,46,.45) !important;
}
.product-main-offer-control .buyout-stepper[hidden],
.product-main-offer-control .product-offer[hidden] {
  display: none !important;
}
@media (max-width: 720px) {
  .product-main-actions,
  .product-main-actions > *,
  .product-main-offer-control {
    width: 100% !important;
  }
}

/* High-contrast lead form: the request form must read as the main action */
.lead-capture .lead-form,
.contact-layout .lead-form,
main .lead-form {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,216,103,.18), transparent 34%),
    linear-gradient(135deg, #06251d 0%, #0a4f3b 58%, #083426 100%) !important;
  border: 2px solid rgba(255,216,103,.78) !important;
  color: #ffffff !important;
  box-shadow: 0 26px 70px rgba(3,31,22,.32), inset 0 1px 0 rgba(255,255,255,.12) !important;
}
.lead-capture .lead-form::before,
.contact-layout .lead-form::before,
main .lead-form::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(115deg, rgba(255,255,255,.08), transparent 32%, rgba(255,216,103,.08)) !important;
}
.lead-capture .lead-form > *,
.contact-layout .lead-form > *,
main .lead-form > * {
  position: relative !important;
  z-index: 1 !important;
}
.lead-capture .lead-form label,
.contact-layout .lead-form label,
main .lead-form label {
  color: #fff9e8 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}
.lead-capture .lead-form .file-stack,
.contact-layout .lead-form .file-stack,
main .lead-form .file-stack {
  display: grid !important;
  gap: 10px !important;
}
.lead-capture .lead-form .file-add,
.contact-layout .lead-form .file-add,
main .lead-form .file-add {
  width: fit-content !important;
  min-height: 40px !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,216,103,.7) !important;
  background: rgba(255,216,103,.16) !important;
  color: #ffd867 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}
.lead-capture .lead-form .file-note,
.contact-layout .lead-form .file-note,
main .lead-form .file-note {
  color: rgba(255,247,223,.82) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}
.lead-capture .lead-form input,
.lead-capture .lead-form textarea,
.contact-layout .lead-form input,
.contact-layout .lead-form textarea,
main .lead-form input,
main .lead-form textarea {
  min-height: 42px !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255,216,103,.52) !important;
  color: #061c16 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.16) !important;
}
main .lead-form textarea,
.lead-capture .lead-form textarea,
.contact-layout .lead-form textarea {
  min-height: 104px !important;
}
.lead-capture .lead-form input:focus,
.lead-capture .lead-form textarea:focus,
.contact-layout .lead-form input:focus,
.contact-layout .lead-form textarea:focus,
main .lead-form input:focus,
main .lead-form textarea:focus {
  border-color: #ffd867 !important;
  box-shadow: 0 0 0 3px rgba(255,216,103,.22), 0 8px 20px rgba(0,0,0,.16) !important;
}
.lead-capture .lead-form .form-badges a,
.contact-layout .lead-form .form-badges a,
main .lead-form .form-badges a {
  background: rgba(255,248,225,.98) !important;
  border-color: rgba(255,216,103,.8) !important;
  color: #06251d !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.14) !important;
}
.lead-capture .lead-form .buyout-cart,
.contact-layout .lead-form .buyout-cart,
main .lead-form .buyout-cart {
  background: linear-gradient(180deg, #fffdf6, #fff5dc) !important;
  border-color: rgba(255,216,103,.9) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.22) !important;
  color: #061c16 !important;
}
.lead-capture .lead-form .buyout-cart-empty,
.contact-layout .lead-form .buyout-cart-empty,
main .lead-form .buyout-cart-empty {
  color: #576158 !important;
}
.lead-capture .lead-form .consent,
.contact-layout .lead-form .consent,
main .lead-form .consent {
  align-items: flex-start !important;
  padding: 12px !important;
  background: #fffdf6 !important;
  border: 1px solid rgba(255,216,103,.72) !important;
  border-radius: 8px !important;
  color: #10231c !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}
.lead-capture .lead-form .consent input,
.contact-layout .lead-form .consent input,
main .lead-form .consent input {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  box-shadow: none !important;
}
.lead-capture .lead-form .consent a,
.contact-layout .lead-form .consent a,
main .lead-form .consent a {
  color: #075f45 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
.lead-capture .lead-form .btn.primary,
.contact-layout .lead-form .btn.primary,
main .lead-form .btn.primary {
  width: 100% !important;
  min-height: 56px !important;
  font-size: 16px !important;
  background: linear-gradient(180deg, #ffe18a, #d39a2c) !important;
  color: #17130a !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.24) !important;
}

/* Visible buyout list window */
.buyout-dock {
  position: fixed !important;
  right: 18px !important;
  bottom: 104px !important;
  z-index: 70 !important;
  width: min(430px, calc(100vw - 28px)) !important;
}
.buyout-dock-card {
  overflow: hidden !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,216,103,.2), transparent 32%),
    linear-gradient(135deg, #06251d, #0b563f) !important;
  border: 2px solid rgba(255,216,103,.78) !important;
  box-shadow: 0 26px 72px rgba(0,0,0,.34) !important;
  color: #fff !important;
}
.buyout-dock-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 16px 16px 12px !important;
}
.buyout-dock-head span {
  display: block !important;
  color: #ffd867 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.buyout-dock-head strong {
  display: block !important;
  margin-top: 4px !important;
  color: #ffffff !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
}
.buyout-dock-head button,
.buyout-dock-actions button {
  cursor: pointer !important;
  min-height: 36px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,216,103,.5) !important;
  background: rgba(255,255,255,.1) !important;
  color: #fff7df !important;
  font-weight: 900 !important;
}
.buyout-dock-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding: 0 14px 12px !important;
}
.buyout-dock-tabs button {
  cursor: pointer !important;
  min-height: 38px !important;
  border-radius: 9px !important;
  border: 1px solid rgba(255,216,103,.42) !important;
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}
.buyout-dock-tabs button.active {
  background: linear-gradient(180deg, #fff8df, #ffd867) !important;
  color: #10231c !important;
  border-color: rgba(255,216,103,.9) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.18) !important;
}
.buyout-dock-list {
  display: grid !important;
  gap: 8px !important;
  max-height: min(42vh, 360px) !important;
  overflow: auto !important;
  padding: 0 14px 12px !important;
}
.buyout-dock-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 92px 36px !important;
  gap: 8px !important;
  align-items: end !important;
  padding: 10px !important;
  border-radius: 8px !important;
  background: rgba(255,253,246,.97) !important;
  border: 1px solid rgba(255,216,103,.62) !important;
  color: #061c16 !important;
}
.buyout-dock-row strong {
  display: block !important;
  font-size: 15px !important;
  line-height: 1.18 !important;
}
.buyout-dock-row small {
  display: block !important;
  margin-top: 3px !important;
  color: #6b5a2f !important;
  font-weight: 800 !important;
}
.buyout-dock-row label {
  gap: 4px !important;
  color: #6b5a2f !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.buyout-dock-row input {
  min-height: 36px !important;
  padding: 7px 8px !important;
  border-radius: 7px !important;
  border: 1px solid rgba(198,146,46,.34) !important;
  color: #061c16 !important;
  font-weight: 900 !important;
}
.buyout-dock-row button {
  cursor: pointer !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(155,47,47,.22) !important;
  background: #fff2f2 !important;
  color: #9b2f2f !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}
.buyout-dock-actions {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 10px !important;
  padding: 12px 14px 14px !important;
  border-top: 1px solid rgba(255,216,103,.2) !important;
}
.buyout-dock-actions .btn.primary {
  min-height: 44px !important;
  width: 100% !important;
  color: #17130a !important;
  background: linear-gradient(180deg, #ffe18a, #d39a2c) !important;
}
.buyout-dock-form {
  display: grid !important;
  gap: 10px !important;
  padding: 0 14px 14px !important;
}
.buyout-dock-form label {
  gap: 5px !important;
  color: #fff7df !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
.buyout-dock-form input,
.buyout-dock-form textarea {
  min-height: 36px !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(255,216,103,.56) !important;
  border-radius: 8px !important;
  background: #fffdf6 !important;
  color: #061c16 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.buyout-dock-form textarea {
  min-height: 84px !important;
  resize: vertical !important;
}
.buyout-dock-form .consent {
  background: #fffdf6 !important;
  border: 1px solid rgba(255,216,103,.72) !important;
  color: #10231c !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}
.buyout-dock-form .consent a {
  color: #075f45 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
.dock-files {
  display: grid !important;
  gap: 8px !important;
}
.dock-add-file {
  min-height: 38px !important;
  cursor: pointer !important;
  border-radius: 8px !important;
  border: 1px dashed rgba(255,216,103,.66) !important;
  background: rgba(255,255,255,.08) !important;
  color: #ffd867 !important;
  font-weight: 900 !important;
}
.buyout-dock-actions.form-actions {
  padding: 4px 0 0 !important;
  border-top: 0 !important;
}
.buyout-dock-actions.form-actions button:first-child {
  border-radius: 8px !important;
  min-height: 44px !important;
  background: #ffffff !important;
  color: #063426 !important;
  border: 2px solid #ffd867 !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
  font-size: 14px !important;
  text-transform: none !important;
}
.buyout-dock-actions.form-actions button:first-child:hover {
  background: #fff8df !important;
  color: #021b13 !important;
}
.dock-status {
  min-height: 22px !important;
  margin: 0 !important;
  color: #ffd867 !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}
.buyout-dock[hidden],
.buyout-bubble[hidden],
.buyout-dock-form[hidden],
.buyout-dock-screen[hidden] {
  display: none !important;
}
.buyout-bubble {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 70 !important;
  display: grid !important;
  place-items: center !important;
  width: 72px !important;
  height: 72px !important;
  cursor: pointer !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #06251d, #0b563f) !important;
  border: 2px solid rgba(255,216,103,.85) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.34) !important;
  animation: truck-glow 1.55s ease-in-out infinite !important;
}
.buyout-bubble::after {
  content: "+1 в корзину" !important;
  position: absolute !important;
  right: -4px !important;
  top: -44px !important;
  min-width: 118px !important;
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #fffb88, #ff2f2f) !important;
  color: #fff !important;
  border: 3px solid #ffffff !important;
  box-shadow: 0 18px 36px rgba(255,47,47,.48), 0 0 0 8px rgba(255,216,103,.22) !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(.72) rotate(-4deg) !important;
}
.buyout-bubble::before {
  content: "Оформить" !important;
  position: absolute !important;
  right: calc(100% + 10px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: #ff2f2f !important;
  color: #fff !important;
  border: 2px solid #fff7df !important;
  box-shadow: 0 12px 26px rgba(155,47,47,.32) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  animation: cart-label-pop 1.9s ease-in-out infinite !important;
}
.buyout-bubble svg {
  width: 54px !important;
  height: 38px !important;
  animation: truck-drive 1.8s ease-in-out infinite !important;
}
.buyout-bubble span {
  position: absolute !important;
  right: -7px !important;
  top: -8px !important;
  min-width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #ff2f2f !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  border: 3px solid #fff7df !important;
  box-shadow: 0 10px 24px rgba(255,47,47,.56), 0 0 0 5px rgba(255,216,103,.22) !important;
  animation: cart-count-pulse 1.25s ease-in-out infinite !important;
}
.buyout-bubble.is-popping {
  animation: truck-added-pop 1.25s cubic-bezier(.2, 1.55, .35, 1), truck-added-ring 1.25s ease-out, truck-glow 1.2s ease-in-out infinite !important;
}
.buyout-bubble.is-popping::before {
  content: "ЖМИ: оформить" !important;
  animation: cart-label-shout 1.25s cubic-bezier(.18, 1.75, .32, 1) !important;
}
.buyout-bubble.is-popping::after {
  animation: cart-added-fly 1.25s cubic-bezier(.18, 1.75, .32, 1) !important;
}
.buyout-bubble span.is-popping {
  animation: cart-count-jump 1.25s cubic-bezier(.18, 1.75, .32, 1) !important;
}
@keyframes truck-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes truck-glow {
  0%, 100% { box-shadow: 0 18px 48px rgba(0,0,0,.34), 0 0 0 0 rgba(255,47,47,.28); }
  50% { box-shadow: 0 20px 54px rgba(0,0,0,.38), 0 0 0 9px rgba(255,47,47,.12); }
}
@keyframes truck-drive {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(3px); }
  70% { transform: translateX(-2px); }
}
@keyframes cart-count-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes cart-count-jump {
  0% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-34px) scale(2.35) rotate(-10deg); background: #ff0000; box-shadow: 0 18px 42px rgba(255,0,0,.7), 0 0 0 11px rgba(255,216,103,.32); }
  55% { transform: translateY(4px) scale(.88) rotate(7deg); }
  76% { transform: translateY(-9px) scale(1.25) rotate(-3deg); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes truck-added-pop {
  0% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-10px) scale(1.24) rotate(-4deg); }
  55% { transform: translateY(2px) scale(.96) rotate(3deg); }
  76% { transform: translateY(-4px) scale(1.08) rotate(-1deg); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes truck-added-ring {
  0% { box-shadow: 0 18px 48px rgba(0,0,0,.34), 0 0 0 0 rgba(255,47,47,.65), 0 0 0 0 rgba(255,216,103,.56); }
  42% { box-shadow: 0 22px 58px rgba(0,0,0,.42), 0 0 0 12px rgba(255,47,47,.34), 0 0 0 24px rgba(255,216,103,.22); }
  100% { box-shadow: 0 18px 48px rgba(0,0,0,.34), 0 0 0 0 rgba(255,47,47,0), 0 0 0 0 rgba(255,216,103,0); }
}
@keyframes cart-added-fly {
  0% { opacity: 0; transform: translateY(12px) scale(.72) rotate(-5deg); }
  16% { opacity: 1; transform: translateY(-12px) scale(1.12) rotate(-2deg); }
  64% { opacity: 1; transform: translateY(-26px) scale(1) rotate(2deg); }
  100% { opacity: 0; transform: translateY(-42px) scale(.82) rotate(5deg); }
}
@keyframes cart-label-shout {
  0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
  28% { transform: translateY(-50%) translateX(-12px) scale(1.14); background: #ff0000; }
  58% { transform: translateY(-50%) translateX(-4px) scale(1.04); }
}
@keyframes cart-label-pop {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-5px); }
}
@media (max-width: 720px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px !important;
  }

  .buyout-dock {
    right: 10px !important;
    bottom: 94px !important;
    width: calc(100vw - 20px) !important;
  }
  .buyout-dock-row {
    grid-template-columns: minmax(0, 1fr) 82px 34px !important;
  }
  .buyout-bubble::before {
    right: auto !important;
    left: 50% !important;
    top: -18px !important;
    transform: translate(-50%, -100%) !important;
    animation: none !important;
  }
}

html,
body {
  touch-action: pan-x pan-y !important;
  overscroll-behavior-x: none !important;
}

.fz-banner {
  z-index: 90 !important;
}

.fz-banner[hidden],
.buyout-bubble[hidden],
.buyout-dock[hidden] {
  display: none !important;
}

/* Final visibility lock: every hero block must fit on desktop and mobile. */
.hero h1,
.page-hero h1,
.product-detail h1 {
  line-height: 1.06 !important;
}
.hero-with-usp > *,
.quote-panel.hero-quote-utp,
.buyout-quick-panel {
  min-width: 0 !important;
  max-width: 100% !important;
}
@media (max-width: 1050px) {
  .hero,
  .page-hero,
  .hero-with-usp,
  .visual-hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .quote-panel.hero-quote-utp,
  .buyout-quick-panel {
    width: 100% !important;
    margin: 0 !important;
  }
  .home-buyout-note .quote-panel-wide {
    grid-template-columns: 1fr !important;
  }
  .home-buyout-note .quote-panel-wide > a {
    justify-self: start !important;
  }
}
@media (max-width: 720px) {
  .hero,
  .page-hero {
    width: 100% !important;
    overflow: hidden !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero h1,
  .page-hero h1,
  .compact-hero h1,
  .product-detail h1 {
    font-size: clamp(30px, 8.9vw, 38px) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
  .hero .lead,
  .page-hero p,
  .compact-hero p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  .eyebrow {
    line-height: 1.35 !important;
    overflow-wrap: anywhere !important;
  }
  .quote-panel.hero-quote-utp,
  .buyout-quick-panel {
    padding: 20px !important;
    border-radius: 8px !important;
    transform: none !important;
  }
  .quote-panel.hero-quote-utp strong {
    font-size: 24px !important;
    line-height: 1.14 !important;
  }
}
.article-cta-strip {
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto !important;
}
.article-cta-strip strong {
  min-width: 0 !important;
  overflow-wrap: normal !important;
}
@media (max-width: 1050px) {
  .article-cta-strip {
    grid-template-columns: 1fr !important;
  }
}

/* Product lead capture accent */
.lead-capture.popup-only-cta {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(3, 31, 22, .97), rgba(7, 92, 68, .93) 56%, rgba(20, 128, 93, .9)),
    linear-gradient(135deg, #06251d, #12825f) !important;
  color: #fff !important;
  border-top: 1px solid rgba(255, 216, 103, .48) !important;
  border-bottom: 1px solid rgba(255, 216, 103, .48) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 70px rgba(5, 35, 25, .18) !important;
}

.lead-capture.popup-only-cta::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 28px) !important;
}

.lead-capture.popup-only-cta > * {
  position: relative !important;
  z-index: 1 !important;
}

.lead-capture.popup-only-cta .eyebrow {
  color: #ffd867 !important;
}

.lead-capture.popup-only-cta h2 {
  color: #fff !important;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .22) !important;
}

.lead-capture.popup-only-cta p {
  color: rgba(255, 255, 255, .87) !important;
}

.lead-capture.popup-only-cta .popup-only-card {
  display: grid !important;
  gap: 16px !important;
  align-content: center !important;
  padding: 30px 32px !important;
  background: linear-gradient(180deg, #fffdf6, #fff2cf) !important;
  border: 2px solid rgba(255, 216, 103, .88) !important;
  border-radius: 8px !important;
  color: #09291f !important;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .24) !important;
}

.lead-capture.popup-only-cta .popup-only-card strong {
  display: block !important;
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  color: #063426 !important;
}

.lead-capture.popup-only-cta .popup-only-card p {
  margin: 0 !important;
  color: #405147 !important;
  line-height: 1.6 !important;
}

.lead-capture.popup-only-cta .popup-only-card .btn {
  justify-self: start !important;
  margin-top: 4px !important;
  min-height: 48px !important;
  padding: 0 24px !important;
}

.lead-capture.popup-only-cta .mini-proof a {
  background: rgba(255, 248, 225, .98) !important;
  border-color: rgba(255, 216, 103, .78) !important;
  color: #063426 !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .16) !important;
}

.lead-capture.cart-checkout {
  background:
    linear-gradient(90deg, rgba(6, 47, 37, .04), rgba(212, 162, 58, .1) 58%, rgba(255, 255, 255, .96)),
    #fffdf6 !important;
  border-top: 2px solid rgba(212, 162, 58, .36) !important;
  border-bottom: 2px solid rgba(212, 162, 58, .36) !important;
}

.lead-capture.cart-checkout-swapped {
  grid-template-columns: minmax(480px, 1.08fr) minmax(320px, .72fr) !important;
  align-items: start !important;
}

.cart-checkout-swapped .checkout-primary {
  display: grid !important;
  gap: 18px !important;
  min-width: 0 !important;
}

.cart-checkout-swapped .checkout-primary .lead-capture-copy {
  max-width: 720px !important;
}

.cart-checkout-swapped .checkout-primary .lead-capture-copy h2 {
  margin-bottom: 0 !important;
  font-size: clamp(32px, 3vw, 44px) !important;
  line-height: 1.05 !important;
}

.cart-checkout-swapped .checkout-side {
  max-width: 620px !important;
  padding: clamp(18px, 3vw, 28px) !important;
  border: 1px solid rgba(212, 162, 58, .34) !important;
  border-radius: 18px !important;
  background: rgba(255, 253, 246, .82) !important;
  box-shadow: 0 18px 42px rgba(6, 47, 37, .08) !important;
}

.lead-capture.cart-checkout .lead-form {
  align-self: start !important;
  box-shadow: 0 22px 58px rgba(6, 47, 37, .18) !important;
}

.lead-capture.cart-checkout .buyout-cart-head span {
  background: #ff2f2f !important;
  color: #fff !important;
  border: 2px solid #fff7df !important;
  box-shadow: 0 8px 18px rgba(155,47,47,.3) !important;
}

.lead-capture.cart-checkout .lead-form .btn.primary {
  font-size: 17px !important;
  min-height: 60px !important;
}

.buyout-dock-actions.form-actions.single-action {
  grid-template-columns: 1fr !important;
}

.buyout-dock-actions.form-actions.single-action .btn.primary {
  width: 100% !important;
  background: linear-gradient(180deg, #ffd867, #d99a24) !important;
  color: #071d15 !important;
  border: 0 !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24) !important;
}

.buyout-dock-actions.form-actions.single-action .btn.primary:hover {
  background: linear-gradient(180deg, #ffe38a, #e0a52f) !important;
  color: #071d15 !important;
}

@media (max-width: 720px) {
  .lead-capture.cart-checkout-swapped {
    grid-template-columns: 1fr !important;
    padding-bottom: 128px !important;
  }
  .cart-checkout-swapped .checkout-side {
    padding: 16px !important;
  }
  .lead-capture.popup-only-cta .popup-only-card {
    padding: 24px 20px !important;
    gap: 14px !important;
  }

  .lead-capture.popup-only-cta .popup-only-card .btn {
    width: 100% !important;
    justify-self: stretch !important;
  }
}

.product-grid .product-img img.source-thumb[src*="/exact/products/"],
.product-grid .product-img img.source-thumb[src*="../assets/img/exact/products/"] {
  width: 94% !important;
  height: 204px !important;
  max-width: 94% !important;
  max-height: 204px !important;
  padding: 0 !important;
  object-fit: cover !important;
  border: 1px solid rgba(240, 207, 122, .62) !important;
  border-radius: 8px !important;
  background: transparent !important;
}

.product-photo img.source-thumb[src*="/exact/products/"],
.product-photo img.source-thumb[src*="../assets/img/exact/products/"] {
  width: min(100%, 760px) !important;
  max-width: 100% !important;
  max-height: none !important;
  padding: 0 !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

/* Admin-managed font sizes and price navigation */
.brand strong,
.footer-brand strong {
  font-size: var(--fs-brand-title, 23px) !important;
}
.brand small,
.footer-brand small {
  font-size: var(--fs-brand-subtitle, 26px) !important;
  line-height: 1.02 !important;
  text-transform: none !important;
}
nav,
nav a,
.nav-dropdown-trigger {
  font-size: var(--fs-nav, 14px) !important;
}
.hero .eyebrow,
.page-hero .eyebrow {
  font-size: var(--fs-hero-eyebrow, 12px) !important;
}
.hero h1,
.page-hero h1,
.compact-hero h1 {
  font-size: clamp(30px, 5vw, var(--fs-hero-title, 60px)) !important;
}
.hero .lead,
.page-hero p,
.compact-hero p {
  font-size: var(--fs-hero-text, 20px) !important;
}
.hero-utp-card > strong,
.quote-panel.hero-quote-utp strong {
  font-size: var(--fs-hero-utp-title, 30px) !important;
}
.hero-usp-grid strong {
  font-size: var(--fs-hero-utp-item-title, 20px) !important;
}
.hero-usp-grid span,
.hero-quote-utp li {
  font-size: var(--fs-hero-utp-item-text, 14px) !important;
}
.section-head h2,
.split h2,
.cta h2,
.contact-card h2,
.lead-capture h2 {
  font-size: clamp(24px, 3.2vw, var(--fs-section-title, 40px)) !important;
}
.section-head p,
.split p,
.check-list,
.tag-cloud a,
.tag-cloud span,
.info-panel p,
.lead-capture p {
  font-size: var(--fs-section-text, 16px) !important;
}
.category-tile span,
.price-category-chip strong {
  font-size: var(--fs-category-title, 20px) !important;
}
.category-tile p,
.category-tile small,
.price-category-chip span {
  font-size: var(--fs-category-text, 14px) !important;
}
.product-grid .product-copy strong,
.product-grid .product-card strong,
.product-detail h1 {
  font-size: var(--fs-product-title, 18px) !important;
}
.product-grid .product-copy,
.product-grid .price,
.product-grid .product-offer,
.product-detail p,
.product-detail dl {
  font-size: var(--fs-product-text, 14px) !important;
}
.lead-form,
.lead-form input,
.lead-form textarea,
.lead-form button {
  font-size: var(--fs-form-text, 16px) !important;
}
.footer,
.footer a,
.footer p {
  font-size: var(--fs-footer-text, 15px) !important;
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: none;
  min-width: 280px;
  max-height: min(70vh, 560px);
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(198,146,46,.42);
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: 0 24px 54px rgba(6,47,37,.18);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  display: grid;
  gap: 6px;
}
.price-menu-all,
.price-menu-category {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--green-2) !important;
  font-weight: 900;
}
.price-menu-category {
  border: 1px solid rgba(198,146,46,.28);
  background: linear-gradient(90deg, rgba(198,146,46,.16), rgba(255,255,255,.86));
}
.price-menu-category:hover,
.price-menu-all:hover {
  background: #0b5b43;
  color: #fff !important;
}
.price-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.price-category-chip {
  display: grid;
  gap: 4px;
  min-height: 86px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(198,146,46,.32);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf6, #eef6f1);
  color: var(--green-2);
}
.price-category-chip:hover {
  border-color: var(--green);
  box-shadow: 0 16px 34px rgba(6,47,37,.12);
}
.hero-utp-card .hero-usp-grid {
  grid-template-columns: 1fr !important;
}
.hero-utp-card .hero-usp-grid a {
  min-height: 76px !important;
}
.home-hero-no-utp {
  grid-template-columns: minmax(0, 1fr) !important;
}
.home-hero-no-utp .hero-copy {
  max-width: 1120px !important;
}
.home-hero-no-utp .eyebrow {
  max-width: 980px !important;
  line-height: 1.08 !important;
  letter-spacing: .02em !important;
}
.form-side-utp {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(198,146,46,.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,216,103,.16), rgba(255,253,246,.94)),
    #fffdf6;
  color: #08291f;
  box-shadow: 0 18px 42px rgba(6,47,37,.08);
}
.form-side-utp > .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px !important;
  letter-spacing: .02em;
}
.form-side-utp > strong {
  color: var(--green-2);
  font-size: var(--fs-hero-utp-title, 30px) !important;
  line-height: 1.06;
}
.form-side-utp .hero-usp-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}
.form-side-utp .hero-usp-grid a {
  min-height: 72px !important;
  padding: 14px !important;
  border: 1px solid rgba(198,146,46,.32) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #10231c !important;
}
.form-side-utp .hero-usp-grid a::after {
  display: none !important;
}
.form-side-utp .hero-usp-grid strong {
  color: var(--green-2) !important;
}
.form-side-utp .hero-usp-grid span {
  color: var(--muted) !important;
}
@media (max-width: 980px) {
  .price-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-dropdown {
    display: grid;
    width: 100%;
  }
  .nav-dropdown-panel {
    position: static;
    transform: none;
    box-shadow: none;
    width: 100%;
    margin-top: 8px;
  }
}
@media (max-width: 620px) {
  .price-category-grid {
    grid-template-columns: 1fr;
  }
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }
  .brand,
  .footer-brand {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 10px !important;
  }
  .brand img,
  .footer-brand img {
    width: 64px !important;
  }
  .brand strong {
    font-size: 22px !important;
  }
  .brand small {
    font-size: 19px !important;
    line-height: 1.03 !important;
    overflow-wrap: anywhere !important;
  }
}
