@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');
/* ============================================================================
   APEX AUTO — design system (v300, clean rewrite from scratch)
   Replaces the legacy v48–v105 stylesheet. Reproduces the modern look.
   Keeps every class/id hook used by script.js / auctions.js / i18n.js /
   site-content.js so all logic (calculator, multilang, admin content) works.
   Structure: tokens → base → layout → header → hero → buttons → calculator →
   bands → process → why → lead → check → hot lots → reviews → faq →
   inner pages (about/contacts/hot) → footer → responsive.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --red: #ed0012;
  --red-600: #cc0010;
  --red-700: #a8000d;
  --red-soft: #ffe9ea;
  --red-line: rgba(237, 0, 18, 0.28);

  --ink: #14181f;        /* primary text / dark cards */
  --ink-2: #3a414d;
  --muted: #79828f;
  --line: #e6e8ec;
  --line-2: #eef0f3;
  --field: #f1f4f8;      /* input fill */
  --field-line: #ccd2db;

  --surface: #ffffff;
  --dark: #1b2029;       /* dark accent card top */
  --dark-2: #12151b;     /* dark accent card bottom */

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16, 20, 28, 0.04), 0 12px 30px rgba(16, 20, 28, 0.07);
  --shadow: 0 1px 2px rgba(16, 20, 28, 0.05), 0 18px 44px rgba(16, 20, 28, 0.10);
  --shadow-red: 0 8px 22px rgba(237, 0, 18, 0.25);

  --maxw: 1292px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Onest", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---- Base -------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  background-color: #eef1f6;
  background-image: linear-gradient(180deg, #f6f8fb 0%, #eaeef3 55%, #e4e9f0 100%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(24px, 3.1vw, 38px); line-height: 1.06; }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 18px; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: rgba(237, 0, 18, 0.16); }
:focus-visible { outline: 2px solid rgba(237, 0, 18, 0.5); outline-offset: 2px; }
.hidden, [hidden] { display: none !important; }

.sectionKicker, .sideLabelV45 {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.sectionKicker::before {
  content: ""; width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---- Layout ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.homeMainV201 { display: block; width: 100%; }
.heroV45, #calculator.layout, .calcInfoPlainV52, .apexProcessV205, .apexWhyV212,
.apexReviewsV212, .apexFaqV205, .hotSectionIntroV89, .hotLots, .seaDeliveryV305,
.leadSection, .checkSection,
.pageHeroV82, .aboutPageV82, .hotPageV101, .contactsHeroV110, .contactsPageV110 {
  width: calc(100% - 48px); max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
section { position: relative; }

/* ---- Header ------------------------------------------------------------ */
.siteHeader.apexHdrV201 {
  position: sticky; top: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap;
  width: 100%; margin: 0;
  padding: 0 max(24px, calc((100% - var(--maxw)) / 2));
  min-height: 60px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(17, 20, 26, 0.08);
  box-shadow: 0 6px 22px rgba(16, 20, 28, 0.08);
}
.apexBrandV201 { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.apexBrandV201 img { width: auto; height: 40px; border-radius: 9px; object-fit: contain; box-shadow: 0 4px 14px rgba(17, 20, 26, 0.12); }
.apexBrandTextV201 { display: block; }
.brandTextV77 { display: block; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; line-height: 1; }
.brandApexV77 { color: var(--ink); }
.brandAutoV77 { color: var(--red); }
.apexBrandV201 small { display: block; margin-top: 2px; font-size: 11px; color: var(--muted); font-weight: 500; }

.mainNavV82.apexNavV201 { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; margin: 0 auto; }
.mainNavV82 > a {
  padding: 7px 10px; border-radius: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap; transition: background 0.18s, color 0.18s;
}
.mainNavV82 > a:hover { background: rgba(17, 20, 26, 0.05); color: var(--ink); }
.mainNavV82 > a.active { color: var(--red); background: var(--red-soft); }

/* Dropdown nav */
.navDropV420 { position: relative; }
.navDropBtnV420 {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 10px; border-radius: 9px; border: none; background: none; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap; transition: background 0.18s, color 0.18s;
  font-family: inherit;
}
.navDropBtnV420:hover,
.navDropV420.open .navDropBtnV420 { background: rgba(17,20,26,0.05); color: var(--ink); }
.navDropBtnV420 svg { transition: transform 0.2s; flex-shrink: 0; }
.navDropV420.open .navDropBtnV420 svg { transform: rotate(180deg); }
.navDropMenuV420 {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 8px 32px rgba(16,20,28,0.12); min-width: 180px;
  padding: 10px 6px 6px; z-index: 200; flex-direction: column; gap: 2px;
}
.navDropV420:hover .navDropMenuV420,
.navDropV420.open .navDropMenuV420 { display: flex; }
.navDropMenuV420 a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  text-decoration: none; transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.navDropMenuV420 a:hover { background: var(--field); color: var(--ink); }
.navDropMenuV420 a.active { color: var(--red); background: var(--red-soft); }

.langSwitcherV165 { display: inline-flex; gap: 4px; margin-left: 10px; padding-left: 12px; border-left: 1px solid var(--line); }
.langSwitcherV165 button {
  min-width: 40px; height: 30px; padding: 0 10px; border: 1px solid var(--field-line);
  background: var(--field); border-radius: 9px; font-size: 12px; font-weight: 700; color: var(--ink-2); transition: all 0.18s;
}
.langSwitcherV165 button:hover { border-color: var(--muted); }
.langSwitcherV165 button.active, .langSwitcherV165 button[aria-pressed="true"] { background: var(--red); color: #fff; border-color: var(--red); }

/* burger (mobile) */
.navToggleV210, .burgerV210 { display: none; }

/* ---- Buttons ----------------------------------------------------------- */
.primary, #calcForm button[type="submit"], .miniForm button, .checkForm button,
#parseLotBtn, .lotImportCheckBtnV120, .contactFormV110 button, #copyBtn,
.heroBtnPrimaryV207, .primaryContactV110, .requestBtnV101 {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border: none; border-radius: 12px;
  background: var(--red); color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-red); transition: transform 0.18s var(--ease), background 0.18s, box-shadow 0.18s;
}
.primary:hover, #calcForm button[type="submit"]:hover, .miniForm button:hover, .checkForm button:hover,
#parseLotBtn:hover, .contactFormV110 button:hover, #copyBtn:hover, .heroBtnPrimaryV207:hover,
.primaryContactV110:hover, .requestBtnV101:hover { background: var(--red-600); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(237, 0, 18, 0.32); }

/* ---- Hero -------------------------------------------------------------- */
.heroV45 { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 28px; align-items: stretch; padding: 34px 0 22px; }
.heroMainV45 { align-self: center; }
.heroEyebrowV207 {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid #e2e5ea; box-shadow: 0 4px 14px rgba(16, 20, 28, 0.06);
  font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 14px;
}
.heroEyebrowV207::before {
  content: ""; width: 14px; height: 14px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E") no-repeat center / contain;
}
.heroMainV45 h1 { text-wrap: balance; }
.heroMainV45 h1::after { content: ""; display: block; width: 64px; height: 4px; margin-top: 16px; border-radius: 4px; background: linear-gradient(90deg, var(--red), #ff7a44); }
.heroMainV45 p { margin-top: 16px; font-size: 15.5px; color: var(--ink-2); max-width: 44ch; }
.heroCtasV207 { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.heroBtnGhostV207 { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; border-radius: 12px; background: #fff; color: var(--ink); border: 1px solid var(--field-line); font-weight: 700; font-size: 15px; transition: transform 0.18s, border-color 0.18s; }
.heroBtnGhostV207:hover { transform: translateY(-1px); border-color: var(--muted); }
.heroTrustV207 { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.heroTrustV207 li { position: relative; padding-left: 24px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.heroTrustV207 li::before { content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain; }

.heroSideV45 { position: relative; background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #e8eaee; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); overflow: hidden; }
.heroSideV45::before { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(237, 0, 18, 0.22), transparent 70%); pointer-events: none; }
.sideLabelV45 { position: relative; color: #ff5a64; }
.heroSideV45 h2 { color: #fff; font-size: 22px; margin: 4px 0 12px; position: relative; }
.heroSideV45 p { color: rgba(255, 255, 255, 0.66); font-size: 15px; position: relative; }
.heroContactsV45 { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; position: relative; }
.heroContactsV45 a { padding: 9px 16px; border-radius: 10px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); color: #fff; font-weight: 600; font-size: 14px; transition: background 0.2s; }
.heroContactsV45 a:hover { background: rgba(255, 255, 255, 0.14); }

/* ---- Hero showcase (v301): real car photo on the first screen ---------- */
.heroShowcaseV301 { padding: 0; min-height: 360px; display: flex; }
.heroShowcaseV301::before { display: none; }
.heroShowcaseImgV301 {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}
.heroShowcaseV301:hover .heroShowcaseImgV301 { transform: scale(1.06); }
.heroShowcaseOverlayV301 {
  position: relative; z-index: 1; margin-top: auto; width: 100%;
  padding: 26px 24px 22px;
  background: linear-gradient(0deg, rgba(11, 14, 19, 0.92) 0%, rgba(11, 14, 19, 0.74) 45%, rgba(11, 14, 19, 0) 100%);
}
.heroShowcaseTagV301 {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 10px;
  padding: 5px 12px; border-radius: 999px; color: #fff;
  background: var(--red); box-shadow: var(--shadow-red);
}
.heroShowcaseTagV301::before { content: ""; width: 13px; height: 13px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14M6 17l1.5-5A2 2 0 0 1 9.4 10.6h5.2a2 2 0 0 1 1.9 1.4L18 17M7 17v2M17 17v2'/%3E%3Ccircle cx='7.5' cy='14.5' r='.6'/%3E%3Ccircle cx='16.5' cy='14.5' r='.6'/%3E%3C/svg%3E") no-repeat center / contain; }
.heroShowcaseOverlayV301 h2 { color: #fff; font-size: 23px; line-height: 1.12; margin: 0 0 8px; }
.heroShowcaseOverlayV301 p { color: rgba(255, 255, 255, 0.78); font-size: 14.5px; margin: 0 0 16px; max-width: 42ch; }

/* ---- Hero wide (v302): full-bleed photo, text left, stats bottom ------- */
.heroV45.heroWideV302 {
  display: flex; flex-direction: column; justify-content: space-between; gap: 0;
  position: relative; overflow: hidden;
  min-height: 400px; padding: 0; margin-top: 10px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.heroWideBgV302 {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 96%;
}

/* ---- Hero Slider (v410) ---- */
.heroSliderV410 {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  border-radius: inherit;
}
.heroSlideV410 {
  position: absolute; inset: 0;
  animation: heroXfadeV410 24s infinite;
}
.heroSlideV410 img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
/* 2 слайда × 12s = 24s цикл */
.heroSlideV410:nth-child(1) { animation-delay: 0s; }
.heroSlideV410:nth-child(1) img { object-position: 68% center; animation: heroKB1V410 12s ease-in-out infinite; animation-delay: 0s; }
.heroSlideV410:nth-child(2) { animation-delay: -12s; }
.heroSlideV410:nth-child(2) img { object-position: 38% center; animation: heroKB2V410 12s ease-in-out infinite; animation-delay: -12s; }

@keyframes heroXfadeV410 {
  0%   { opacity: 1; }
  46%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroKB1V410 { 0% { transform: scale(1) translate(0, 0); }     100% { transform: scale(1.07) translate(-1.5%, 0.5%); } }
@keyframes heroKB2V410 { 0% { transform: scale(1.05) translate(1%, 0); } 100% { transform: scale(1) translate(0, 0.5%); } }

/* Progress bar */
.heroProgressV410 {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  height: 3px; background: rgba(255,255,255,0.12);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.heroProgressBarV410 {
  height: 100%; width: 0%;
  background: var(--red);
  animation: heroProgressV410 12s linear infinite;
  border-radius: 0 2px 2px 0;
}
@keyframes heroProgressV410 {
  0%   { width: 0%; }
  100% { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .heroSlideV410 { animation: none; opacity: 0; }
  .heroSlideV410:first-child { opacity: 1; }
  .heroSlideV410 img { animation: none; }
  .heroProgressBarV410 { animation: none; }
}

.heroWideOverlayV302 {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,16,22,0.92) 0%, rgba(13,16,22,0.78) 28%, rgba(13,16,22,0.42) 55%, rgba(13,16,22,0.08) 100%),
    linear-gradient(0deg, rgba(13,16,22,0.84) 0%, rgba(13,16,22,0.34) 18%, rgba(13,16,22,0) 46%);
}
.heroWideContentV302 { position: relative; z-index: 2; padding: 28px 48px 8px; max-width: 660px; }
.heroV45.heroWideV302 .heroMainV45 { align-self: auto; }
.heroV45.heroWideV302 .heroMainV45 h1 { color: #fff; }
.heroV45.heroWideV302 .heroMainV45 p { color: rgba(255,255,255,0.82); }
.heroV45.heroWideV302 .heroTrustV207 li { color: rgba(255,255,255,0.92); }
.heroV45.heroWideV302 .heroBtnGhostV207 {
  background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.30);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.heroV45.heroWideV302 .heroBtnGhostV207:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.55); }
.heroWideStatsV302 {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 14px 40px;
  padding: 12px 48px 16px;
}
.heroWideStatsV302 > div { display: flex; flex-direction: column; gap: 2px; }
.heroWideStatsV302 b { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.heroWideStatsV302 span { font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
@media (max-width: 720px) {
  .heroV45.heroWideV302 { min-height: 500px; }
  .heroWideContentV302 { padding: 30px 22px 6px; max-width: none; }
  .heroWideStatsV302 { padding: 14px 22px 20px; gap: 12px 24px; justify-content: flex-start; }
  .heroWideStatsV302 b { font-size: 15.5px; }
  .heroWideBgV302 { object-position: 66% center; }
}

/* ---- Brand strip (v301): marquee of car brands we import --------------- */
.brandStripV301 {
  width: calc(100% - 48px); max-width: var(--maxw); margin: 6px auto 2px;
  overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.brandStripTrackV301 {
  display: inline-flex; align-items: center; gap: 44px; white-space: nowrap;
  padding: 6px 0; will-change: transform; animation: brandScrollV301 36s linear infinite;
}
.brandStripTrackV301 span {
  font-size: 16px; font-weight: 800; letter-spacing: 0.01em; color: var(--muted);
  opacity: 0.85; transition: color 0.18s, opacity 0.18s; flex: none;
}
.brandStripV301:hover .brandStripTrackV301 { animation-play-state: paused; }
.brandStripTrackV301 span:hover { color: var(--ink); opacity: 1; }
@keyframes brandScrollV301 { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brandStripTrackV301 { animation: none; } }

/* ---- Calculator -------------------------------------------------------- */
.layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; margin: 12px 0 8px; }
.lotImportV118 { grid-column: 1 / -1; background: #f6f7f9; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.lotImportV118 > label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.lotImportControlV118 { display: flex; gap: 10px; align-items: stretch; }
.lotImportControlV118 input { flex: 1; height: 44px; }
.lotImportControlV118 #parseLotBtn { height: 44px; padding: 0 28px; white-space: nowrap; }
.lotImportFooterV118 { margin-top: 10px; }
.lotImportStatusV118 { font-size: 14px; color: var(--muted); }
.lotImportStatusV118 strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.lotImportStatusV118 p { margin: 6px 0 0; font-size: 13px; line-height: 1.45; }
.lotImportChipsV118 { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 4px; }
.lotImportChipsV118 span { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; background: var(--field); border: 1px solid var(--line); font-size: 13px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.lotImportStatusV118.isWarningV120 { background: rgba(237,0,18,0.05); border: 1px solid rgba(237,0,18,0.18); border-radius: 10px; padding: 10px 14px; }
.lotImportCheckBtnV120 { flex: none; height: 36px; padding: 0 14px; font-size: 13px; white-space: nowrap; margin-left: auto; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.formCard { display: flex; flex-direction: column; gap: 10px; }
.formRow { display: flex; flex-direction: column; gap: 4px; }
.formRow.wide { width: 100%; }
.formRow > label, .formCard > label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

input[type="text"], input[type="number"], input[type="url"], input[type="date"], input:not([type]), select, textarea {
  width: 100%; height: 44px; padding: 0 14px; border: 1px solid var(--field-line); border-radius: 11px;
  background: var(--field); color: var(--ink); font-size: 15px; transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
textarea { height: auto; min-height: 96px; padding: 12px 14px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(237, 0, 18, 0.15); }
input[readonly] { background: #e9ecf1; color: var(--ink-2); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2379828f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }

/* custom glass-select built by script.js */
.nativeSelectV152 { display: none !important; }
.glassSelectV152 { position: relative; }
.glassSelectButtonV152 { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; height: 44px; padding: 0 14px; border: 1px solid var(--field-line); border-radius: 11px; background: var(--field); color: var(--ink); font-size: 15px; font-weight: 500; text-align: left; }
.glassSelectButtonV152 span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.glassSelectButtonV152 b { flex: none; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--muted); transition: transform 0.2s; }
.glassSelectV152.isOpenV152 .glassSelectButtonV152 { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(237, 0, 18, 0.15); }
.glassSelectV152.isOpenV152 .glassSelectButtonV152 b { transform: rotate(180deg); }
.glassSelectMenuV152 { position: absolute; z-index: 40; top: calc(100% + 6px); left: 0; right: 0; max-height: 440px; overflow-y: auto; display: none; flex-direction: column; gap: 2px; padding: 6px; background: #fff; border: 1px solid var(--field-line); border-radius: 12px; box-shadow: var(--shadow); }
.glassSelectV152.isOpenV152 .glassSelectMenuV152 { display: flex; }
.glassSelectMenuV152 button { display: flex; align-items: center; gap: 8px; width: 100%; padding: 9px 11px; border: none; border-radius: 9px; background: transparent; font-size: 14.5px; color: var(--ink-2); text-align: left; transition: background 0.14s; }
.glassSelectMenuV152 button:hover { background: var(--field); color: var(--ink); }
.glassSelectMenuV152 button span { width: 14px; color: var(--red); font-weight: 700; }
.glassSelectMenuV152 button.isSelectedV152 { background: var(--red-soft); color: var(--red); font-weight: 600; }
.glassOptGroupV152 { padding: 8px 12px 2px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); pointer-events: none; }
.glassOptV152 { padding-left: 20px !important; }

/* toggle checkboxes (offsite / insurance / export) */
.check { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); cursor: pointer; }
.check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: none; position: relative;
  width: 42px; height: 24px; border-radius: 999px; background: #cfd5de; border: none; cursor: pointer; transition: background 0.2s;
}
.check input[type="checkbox"]::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25); transition: transform 0.2s; }
.check input[type="checkbox"]:checked { background: var(--red); }
.check input[type="checkbox"]:checked::after { transform: translateX(18px); }
.offsiteCheck { background: var(--field); border: 1px solid var(--line); border-radius: 11px; padding: 0 14px; height: 44px; display: flex; align-items: center; }
.locationOffsiteRowV314 { display: grid; grid-template-columns: 1.55fr 1fr; gap: 12px; align-items: end; }
.locationOffsiteRowV314 .offsiteCheck { font-size: 13.5px; gap: 9px; white-space: nowrap; }
@media (max-width: 640px) { .locationOffsiteRowV314 { grid-template-columns: 1fr; } }
.options { display: flex; flex-direction: column; gap: 10px; }
.risk { font-size: 13px; color: var(--red-700); background: var(--red-soft); border: 1px solid var(--red-line); border-radius: 10px; padding: 10px 12px; }
.insuranceFixedV313 { display: flex; align-items: flex-start; gap: 8px; padding: 9px 12px; border-radius: 10px;
  background: rgba(10, 143, 60, 0.07); border: 1px solid rgba(10, 143, 60, 0.22);
  font-size: 12.5px; line-height: 1.4; color: var(--ink-2); }
.insuranceFixedV313 strong { color: var(--ink); }
.insuranceFixedIconV313 { flex: none; width: 19px; height: 19px; margin-top: 1px; border-radius: 50%;
  background: #0a8f3c; color: #fff; font-size: 12px; font-weight: 800; line-height: 19px; text-align: center; }

/* info tooltips */
.infoTipV65 { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: #e7eaee; border: 1px solid var(--line); color: var(--muted); font-size: 11px; font-style: normal; font-weight: 700; cursor: help; position: relative; }
.infoTipV65:hover, .infoTipV65:focus { background: var(--ink); color: #fff; border-color: var(--ink); }
.infoTipV65:hover::after, .infoTipV65:focus::after { content: attr(aria-label); position: absolute; bottom: calc(100% + 8px); right: 0; left: auto; width: 260px; max-width: 260px; padding: 10px 12px; background: #000; color: #fff; font-size: 12.5px; font-weight: 400; line-height: 1.45; border-radius: 10px; box-shadow: var(--shadow); z-index: 20; pointer-events: none; white-space: normal; }

/* export docs + currency buttons inline */
.exportCurrencyRowV374 { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.currencyMiniV374 { display: flex; gap: 5px; flex-shrink: 0; }
.currencyMiniV374 .currency { height: 30px; padding: 0 11px; font-size: 12.5px; border-radius: 8px; }

.currencyBox { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.currency { height: 38px; padding: 0 18px; border: 1px solid var(--field-line); border-radius: 9px; background: var(--field); font-weight: 700; font-size: 14px; color: var(--ink-2); transition: all 0.18s; }
.currency:hover { border-color: var(--muted); color: var(--ink); }
.currency.active { background: var(--red); color: #fff; border-color: var(--red); }

/* курсы валют — компактная строка в верхней части формы */
.ratesTopV375 { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.rateHintV404 { width: 100%; margin: 0; font-size: 11px; color: var(--muted); }
.rateHintV404 #mdlRateSourceV404 { color: #22a35d; font-weight: 600; }
.rateFieldV374 { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.rateFieldV374 label { font-size: 12px; font-weight: 600; color: var(--ink-2); white-space: nowrap; flex: none; }
.rateFieldV374 input { flex: 1; min-width: 0; height: 30px; padding: 0 8px; font-size: 13px; border-radius: 8px; border: 1px solid var(--line); background: var(--field); color: var(--ink); }

details > summary { cursor: pointer; font-weight: 600; font-size: 14px; color: var(--ink-2); padding: 8px 0; list-style: none; }
details > summary::-webkit-details-marker { display: none; }
.extra { margin-top: 10px; }
#calcForm button[type="submit"] { margin-top: 2px; width: 100%; }

/* hybrid guard */
.hybridGuardV125 { grid-column: 1 / -1; background: rgba(255, 196, 0, 0.10); border: 1px solid rgba(255, 196, 0, 0.32); border-radius: 12px; padding: 14px 16px; }
.hybridGuardV125 strong { color: #946800; }
.hybridGuardV125 p { font-size: 14px; color: #7a5a14; margin: 6px 0 10px; }
.hybridGuardV125 button { height: 38px; padding: 0 14px; margin-right: 8px; border: 1px solid rgba(255, 196, 0, 0.45); background: #fff; border-radius: 9px; font-weight: 600; font-size: 14px; color: #7a5a14; }
.hybridGuardV125 button:hover { background: #fff7e0; }
/* inline row badges — Offsite / Опасный груз */
.rowBadgeV374 { display: inline-flex; align-items: center; gap: 4px; margin-left: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.6);
  vertical-align: middle; white-space: nowrap; }
.rowBadgeV374::before { content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none; }
.rowBadgeV374[data-type="offsite"]::before { background: #7eb8f7; box-shadow: 0 0 0 2px rgba(126,184,247,0.2); }
.rowBadgeV374[data-type="danger"]::before { background: #ffb400; box-shadow: 0 0 0 2px rgba(255,180,0,0.2); }
.rowBadgeV374[data-type="docs"]::before { display: none; }

/* hide duplicate calc fields (shown in result panel) + hidden bid advisor */
.formRow:has(#auctionFeeView) { display: none !important; }
.grid:has(#lotPrice) { grid-template-columns: 1fr !important; }
.grid:has(#portView) { display: none !important; }
.bidAdvisorV138, .bidAdvisorWideV156, .smartLotAdviceV129 { display: none !important; }

/* result card */
.resultCard { background: linear-gradient(165deg, var(--dark), var(--dark-2)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); padding: 18px; color: #e8eaee; display: flex; flex-direction: column; box-shadow: var(--shadow); overflow: hidden; }
.resultCard .actions { margin-top: auto; }
.formCard > button[type="submit"] { margin-top: auto; }
.resultHeader { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.route, .topRoute { font-size: 14px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.auctionBadge { padding: 4px 10px; border-radius: 999px; background: rgba(237, 0, 18, 0.16); border: 1px solid var(--red-line); font-size: 12px; font-weight: 700; color: #fff; }
.breakdown { display: flex; flex-direction: column; gap: 8px; padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.breakdown > div, .breakdown > p { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0; font-size: 14.5px; color: rgba(255, 255, 255, 0.72); }
.breakdown b, .breakdown strong { color: #fff; font-variant-numeric: tabular-nums; font-weight: 700; }
.breakdown small { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.totalFooter { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 12px; }
.resultLabel { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #ff5a64; font-weight: 700; }
.total { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1.05; }
.subTotal { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-top: 3px; }
.finalNote { font-size: 12.5px; line-height: 1.45; color: rgba(255, 255, 255, 0.5); text-align: right; max-width: 52%; }
.companyMini { margin-top: 12px; margin-bottom: 8px; padding: 10px 13px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; }
.companyMini strong { display: block; color: #fff; font-size: 14px; margin-bottom: 3px; }
.companyMini span { font-size: 13px; color: rgba(255, 255, 255, 0.55); line-height: 1.4; }
.actions { display: grid; gap: 8px; margin-top: auto; }
.actions #copyBtn, .actions a { width: 100%; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; font-weight: 700; font-size: 15px; }
.actions a { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255, 255, 255, 0.14); transition: background 0.18s; }
.actions a:hover { background: rgba(255, 255, 255, 0.16); }
#calcForm button[type="submit"] { height: 46px; font-size: 15px; margin-top: auto;
  background: #eef1f6; color: var(--ink); border: 1px solid var(--field-line); box-shadow: none; }
#calcForm button[type="submit"]:hover { background: #e2e7ef; color: var(--ink); box-shadow: none; transform: translateY(-1px); }

/* ---- Economy band ------------------------------------------------------ */
.calcInfoPlainV52 { background: rgba(255, 255, 255, 0.62); border: 1px solid var(--line); border-radius: 22px; margin: 52px auto; padding: 40px clamp(22px, 4vw, 52px); box-shadow: var(--shadow-sm); }
.calcInfoPlainV52 .container { padding: 0; max-width: none; width: 100%; }
.calcInfoPlainV52 h2 { max-width: 24ch; }
.calcInfoPlainV52 p { max-width: 90ch; margin-top: 14px; font-size: 15px; position: relative; padding-left: 42px; min-height: 28px; }
.calcInfoPlainV52 p::before { content: ""; position: absolute; left: 0; top: 1px; width: 28px; height: 28px; border-radius: 9px; background-color: var(--red-soft); background-repeat: no-repeat; background-position: center; background-size: 16px; }
.calcInfoPlainV52 p:nth-of-type(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
.calcInfoPlainV52 p:nth-of-type(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E"); }
.calcInfoPlainV52 p:nth-of-type(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E"); }

/* ---- Economy block (v303): two columns, text + savings card --------- */
.econGridV303 { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.econTextV303 .sectionKicker { margin-bottom: 12px; }
.econTextV303 h2 { max-width: 20ch; }
.econTextV303 p:last-child { margin-bottom: 0; }
.econCardV303 {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #fff;
  border-radius: var(--radius-lg); padding: 26px 26px 24px; box-shadow: var(--shadow);
}
.econCardV303::before { content: ""; position: absolute; top: -34%; right: -16%; width: 56%; height: 72%;
  background: radial-gradient(circle, rgba(237,0,18,0.24), transparent 70%); pointer-events: none; }
.econCardHeadV303 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; position: relative; }
.econCardHeadV303 > span { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.econSaveBadgeV303 { font-size: 15px; font-weight: 800; color: #fff; background: var(--red); padding: 4px 13px; border-radius: 999px; box-shadow: var(--shadow-red); }
.econBarsV303 { display: flex; flex-direction: column; gap: 18px; position: relative; }
.econRowTopV303 { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.econRowTopV303 span { font-size: 13.5px; color: rgba(255,255,255,0.72); }
.econRowTopV303 b { font-size: 16px; font-weight: 800; color: #fff; }
.econBarTrackV303 { height: 12px; border-radius: 999px; background: rgba(255,255,255,0.10); overflow: hidden; }
.econBarFillV303 { display: block; height: 100%; border-radius: 999px; transform-origin: left; }
.econBarFillV303.isMarket { width: 100%; background: rgba(255,255,255,0.34); animation: econGrowV303 1s var(--ease) both; }
.econBarFillV303.isApex { width: 75%; background: linear-gradient(90deg, var(--red), #ff6a3d); animation: econGrowV303 1s var(--ease) 0.12s both; }
@keyframes econGrowV303 { from { transform: scaleX(0.04); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .econBarFillV303 { animation: none; } }
.econFootV303 { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14); position: relative; }
.econFootV303 b { display: block; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.econFootV303 span { font-size: 12.5px; color: rgba(255,255,255,0.6); }
.econCtaV303 { display: inline-flex; align-items: center; height: 44px; padding: 0 18px; border-radius: 11px;
  background: #fff; color: var(--ink); font-weight: 700; font-size: 14px; transition: transform .18s, box-shadow .18s; }
.econCtaV303:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.28); }
@media (max-width: 860px) { .econGridV303 { grid-template-columns: 1fr; } .econTextV303 h2 { max-width: 28ch; } }

/* ---- Process timeline -------------------------------------------------- */
.apexProcessV205 { max-width: 1180px; padding: 24px 0; }
.apexProcessLeadV205 { margin-top: 12px; max-width: 62ch; font-size: 15px; color: var(--muted); }
.apexProcessGridV205 { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 30px; }
.apexStepV205 { position: relative; z-index: 1; text-align: center; padding: 6px 14px; }
.apexStepV205::before { content: ""; display: block; width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 16px; background-color: var(--red-soft); background-repeat: no-repeat; background-position: center; background-size: 28px; box-shadow: 0 8px 20px rgba(237, 0, 18, 0.16); transition: transform 0.22s var(--ease); }
.apexStepV205:hover::before { transform: translateY(-3px) scale(1.04); }
.apexStepNumV205 { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--red); margin-bottom: 4px; }
.apexStepV205 h3 { font-size: 15.5px; margin: 6px 0 7px; line-height: 1.25; min-height: 2.4em; display: flex; align-items: flex-start; justify-content: center; }
.apexStepV205 p { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0; min-height: 3.8em; }
.apexProcessGridV205::before { content: ""; position: absolute; top: 36px; left: calc(100% / 12); right: calc(100% / 12); height: 2px; background: #e6dadc; z-index: 0; border-radius: 2px; }
.apexStepV205:nth-of-type(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); }
.apexStepV205:nth-of-type(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E"); }
.apexStepV205:nth-of-type(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
.apexStepV205:nth-of-type(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
.apexStepV205:nth-of-type(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.apexStepV205:nth-of-type(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); }

/* ---- Why us ------------------------------------------------------------ */
.apexWhyV212 { padding: 24px 0; }
.apexWhyGridV212 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.apexWhyCardV212 { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-sm); transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s; }
.apexWhyCardV212:hover { transform: translateY(-4px); border-color: var(--red-line); box-shadow: var(--shadow); }
.apexWhyCardV212::before { content: ""; display: block; width: 50px; height: 50px; border-radius: 14px; margin-bottom: 14px; background-color: var(--red-soft); background-repeat: no-repeat; background-position: center; background-size: 26px; }
.apexWhyCardV212 h3 { font-size: 17px; margin-bottom: 6px; }
.apexWhyCardV212 p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.apexWhyCardV212[data-i="exp"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E"); }
.apexWhyCardV212[data-i="carfax"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
.apexWhyCardV212[data-i="calc"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cline x1='8' y1='6' x2='16' y2='6'/%3E%3Cline x1='8' y1='14' x2='8' y2='14'/%3E%3Cline x1='16' y1='14' x2='16' y2='18'/%3E%3C/svg%3E"); }
.apexWhyCardV212[data-i="auc"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 13l-7.5 7.5a2.12 2.12 0 0 1-3-3L11 10'/%3E%3Cpath d='M14 4l6 6'/%3E%3Cpath d='M3 21h9'/%3E%3C/svg%3E"); }
.apexWhyCardV212[data-i="key"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); }
.apexWhyCardV212[data-i="person"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }

/* ---- Lead section ------------------------------------------------------ */
.leadSection { padding: 24px 0; }
.leadGrid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: stretch; }
.leadText h2 { margin-bottom: 12px; }
.leadText p { font-size: 15px; }
.leadBadgesLinksV48 { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.leadBadgesLinksV48 a { padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--ink); background: #fff; transition: all 0.18s; }
.leadBadgesLinksV48 a:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.auctionHintV48 { margin-top: 12px; font-size: 14px; color: var(--muted); }
.miniForm { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.miniGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.miniForm button { width: 100%; }
.miniForm small { font-size: 12.5px; color: var(--muted); text-align: center; }
.miniFormHeaderV365 { display: flex; flex-direction: column; gap: 3px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.miniFormHeaderV365 strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.miniFormHeaderV365 span { font-size: 13px; color: var(--muted); }
.miniForm select { width: 100%; appearance: none; -webkit-appearance: none; background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2379828f' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center; padding: 0 38px 0 13px; height: 44px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--ink); cursor: pointer; transition: border-color .15s; }
.miniForm select:focus { outline: none; border-color: var(--red); }
.miniForm select option[value=""] { color: var(--muted); }
.miniFormTrustV365 { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.miniFormTrustV365 svg { flex-shrink: 0; opacity: .7; }

/* ---- Check (free VIN) section ------------------------------------------ */
.checkSection { padding: 24px 0; }
.splitCards { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: stretch; }
.leadSection > .container, .checkSection > .container { width: 100%; max-width: none; padding: 0; margin: 0; }
.infoCard { border-radius: var(--radius-lg); padding: 32px; }
.darkInfo { background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #e8eaee; border: 1px solid rgba(255, 255, 255, 0.08); position: relative; overflow: hidden; }
.darkInfo::before { content: ""; position: absolute; top: -30%; right: -10%; width: 50%; height: 70%; background: radial-gradient(circle, rgba(237, 0, 18, 0.18), transparent 70%); }
.darkInfo .sectionKicker { color: #ff5a64; position: relative; }
.darkInfo h2 { color: #fff; margin: 4px 0 12px; position: relative; }
.darkInfo p { color: rgba(255, 255, 255, 0.66); position: relative; }
.checkForm { display: flex; flex-direction: column; gap: 12px; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.checkForm button { width: 100%; }
.checkForm small { font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---- Hot lots ---------------------------------------------------------- */
.hotSectionIntroV89 { text-align: center; max-width: 720px; padding-top: 24px; }
.hotSectionIntroV89 .sectionKicker { justify-content: center; }
.hotSectionIntroV89 p { margin-top: 12px; }
.hotLots { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 32px; }
.telegramHotTileV86 { display: flex; flex-direction: column; background: linear-gradient(150deg, #2b333f, #1a1f27); color: #fff; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-lg); padding: 24px; }
.telegramHotTopV88 { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.telegramHotTileIconV86 { font-size: 1.6rem; }
.telegramHotTileV86 h3 { color: #fff; }
.telegramHotBodyV88 p { color: rgba(255, 255, 255, 0.74); font-size: 14px; }
.telegramHotChecksV88 { display: flex; flex-direction: column; gap: 7px; margin: 12px 0 18px; }
.telegramHotChecksV88 span { position: relative; padding-left: 22px; font-size: 13.5px; color: rgba(255, 255, 255, 0.92); }
.telegramHotChecksV88 span::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.telegramHotTileV86 > a { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; height: 46px; border-radius: 12px; background: var(--red); color: #fff; font-weight: 700; transition: background 0.18s, transform 0.18s; }
.telegramHotTileV86 > a:hover { background: var(--red-600); transform: translateY(-1px); }

.textLotCard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s; }
.textLotCard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red-line); }
.textLotCard.accentLot { border-color: var(--red-line); }
.hotCarImgV202 { display: block; width: 100%; height: 172px; object-fit: cover; border-radius: 14px; margin-bottom: 16px; background: var(--line); transition: transform 0.4s var(--ease), filter 0.4s; }
.textLotCard:hover .hotCarImgV202 { transform: scale(1.03); filter: saturate(1.06); }
.textLotTop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.lotYear { font-weight: 700; color: var(--ink); }
.lotType { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #ff5a64; background: var(--red-soft); padding: 4px 10px; border-radius: 999px; }
.textLotCard h3 { margin-bottom: 12px; }
.textLotPrice { display: flex; flex-direction: column; margin-bottom: 12px; }
.textLotPrice small { font-size: 12.5px; color: var(--muted); }
.textLotPrice b { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.textLotRows { display: flex; flex-direction: column; gap: 6px; padding-top: 12px; border-top: 1px solid var(--line-2); }
.textLotRows p { display: flex; justify-content: space-between; margin: 0; font-size: 14px; color: var(--muted); }
.textLotRows p b { color: var(--ink); }
.textLotRows p.green b { color: #0a8f3c; }
.examplesBtnV89, .examplesBtnV101 { margin-top: 16px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 11px; font-weight: 600; font-size: 14px; color: var(--ink); background: rgba(255, 255, 255, 0.04); transition: all 0.18s; }
.examplesBtnV89:hover, .examplesBtnV101:hover { background: #f6f7f9; border-color: var(--muted); }
.textLotCard > a[href*="t.me"] { margin-top: 10px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: var(--red); color: #fff; border-radius: 11px; font-weight: 700; transition: background 0.18s, transform 0.18s; }
.textLotCard > a[href*="t.me"]:hover { background: var(--red-600); transform: translateY(-1px); }

/* ---- Reviews ----------------------------------------------------------- */
.apexReviewsV212 { padding: 24px 0; }
.apexReviewsGridV212 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.apexReviewCardV212 { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.apexStarsV212 { color: #ffb400; font-size: 16px; letter-spacing: 2px; }
.apexReviewCardV212 blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.apexReviewCardV212 figcaption { display: flex; flex-direction: column; margin-top: auto; }
.apexReviewCardV212 figcaption b { font-size: 15px; color: var(--ink); }
.apexReviewCardV212 figcaption span { font-size: 13px; color: var(--muted); }
.apexReviewsNoteV212 { margin-top: 18px; text-align: center; font-size: 14px; color: var(--ink-2); }
.apexReviewsNoteV212 a { color: var(--red); font-weight: 600; }

/* ---- Reviews → real proof in Telegram (v305) ------------------------- */
.reviewsV305 { text-align: center; }
.reviewsV305 .sectionKicker { justify-content: center; }
.reviewsLeadV305 { max-width: 62ch; margin: 12px auto 0; font-size: 15.5px; color: var(--ink-2); }
.reviewsProofV305 { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 28px auto 0; max-width: 880px; }
.reviewsProofV305 > div { flex: 1 1 230px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.reviewsProofV305 b { display: block; font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.reviewsProofV305 span { display: block; margin-top: 3px; font-size: 13.5px; line-height: 1.4; color: var(--muted); }
.reviewsCtaV305 { display: inline-flex; align-items: center; gap: 8px; height: 50px; padding: 0 26px; margin-top: 26px;
  border-radius: 12px; background: var(--red); color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: var(--shadow-red); transition: background .18s, transform .18s; }
.reviewsCtaV305:hover { background: var(--red-600); transform: translateY(-1px); }

/* ---- Sea delivery band (v305) --------------------------------------- */
.seaDeliveryV305 { position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-lg); margin: 52px auto; min-height: 364px;
  display: flex; align-items: center; box-shadow: var(--shadow); }
.seaBgV305 { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.seaOverlayV305 { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(11,14,20,0.94) 0%, rgba(11,14,20,0.8) 38%, rgba(11,14,20,0.42) 70%, rgba(11,14,20,0.18) 100%); }
.seaInnerV305 { position: relative; z-index: 2; padding: 40px clamp(22px,4vw,52px); max-width: 660px; color: #fff; }
.seaInnerV305 h2 { color: #fff; margin-bottom: 12px; }
.seaInnerV305 > p { color: rgba(255,255,255,0.82); font-size: 15.5px; max-width: 52ch; margin-bottom: 0; }
.seaStatsV305 { display: flex; flex-wrap: wrap; gap: 14px 36px; margin-top: 24px; }
.seaStatsV305 > div { display: flex; flex-direction: column; gap: 2px; }
.seaStatsV305 b { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.seaStatsV305 span { font-size: 12.5px; color: rgba(255,255,255,0.62); }
@media (max-width: 640px) { .seaDeliveryV305 { min-height: 330px; } .seaInnerV305 { padding: 28px 22px; } }

/* ---- FAQ --------------------------------------------------------------- */
.apexFaqV205 { max-width: var(--maxw); padding: 24px 0; }
.apexFaqListV205 { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); overflow: hidden; margin-top: 24px; }
.apexFaqItemV205 { border-bottom: 1px solid var(--line-2); padding: 0 24px; }
.apexFaqItemV205:last-child { border-bottom: 0; }
.apexFaqItemV205[open] { background: #fafbfc; }
.apexFaqItemV205 summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 16px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.apexFaqItemV205 summary::-webkit-details-marker { display: none; }
.apexFaqItemV205 summary::after { content: "+"; color: var(--red); font-size: 24px; font-weight: 400; line-height: 1; flex: none; }
.apexFaqItemV205[open] summary::after { content: "–"; }
.apexFaqItemV205 p { margin: 0 0 18px; color: var(--ink-2); line-height: 1.6; font-size: 15px; }

/* ---- Inner: About ------------------------------------------------------ */
.aboutHeroV344 { width: calc(100% - 48px); max-width: var(--maxw); margin: 10px auto 56px; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 496px; }
.aboutHeroImgV344 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.aboutHeroOverlayV344 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,16,22,0.75) 0%, rgba(13,16,22,0.0) 52%); }
.aboutHeroTextV344 { position: absolute; bottom: 0; left: 0; padding: 32px 40px; color: #fff; max-width: 620px; }
.aboutHeroTextV344 .sectionKicker { color: rgba(255,255,255,0.7); }
.aboutHeroTextV344 h1 { color: #fff; font-size: 30px; margin-top: 8px; text-wrap: balance; text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.aboutHeroTextV344 p { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.55; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.aboutStoryWrapV344 { width: calc(100% - 48px); max-width: 860px; margin: 0 auto; padding: 0 0 72px; }
.aboutStoryV82 p { font-size: 15.5px; line-height: 1.7; margin-bottom: 1.1rem; color: var(--ink-2); }
.aboutFinalV82 { margin-top: 1.4rem; padding-left: 18px; border-left: 3px solid var(--red); font-size: 18px; font-weight: 600; color: var(--ink); }
.aboutBlocksV348 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 52px; margin-top: 44px; }
.aboutBlockV348 { display: flex; flex-direction: column; gap: 10px; }
.aboutBlockIconV348 { width: 42px; height: 42px; background: rgba(237,0,18,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aboutBlockIconV348 svg { width: 20px; height: 20px; color: var(--red); }
.aboutBlockV348 h3 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin: 0; }
.aboutBlockV348 p { font-size: 14.5px; line-height: 1.7; color: var(--ink-2); margin: 0; }
.aboutClosingV348 { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.aboutClosingV348 > p { font-size: 15.5px; line-height: 1.7; margin-bottom: 1rem; color: var(--ink-2); }

/* ---- Inner: Contacts --------------------------------------------------- */
.contactsHeroV110 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; padding-top: 56px; padding-bottom: 8px; }
.contactsHeroTextV110 h1 { margin-top: 6px; text-wrap: balance; }
.contactsHeroTextV110 p { margin-top: 16px; font-size: 16px; }
.contactsHeroActionsV110 { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.contactsHeroActionsV110 a { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 22px; border-radius: 12px; border: 1px solid var(--field-line); background: #fff; color: var(--ink); font-weight: 700; transition: all 0.18s; }
.contactsHeroActionsV110 a:hover { border-color: var(--muted); }
.contactsQuickCardV110 { background: linear-gradient(165deg, var(--dark), var(--dark-2)); border: 1px solid rgba(255, 255, 255, 0.08); color: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.contactsQuickCardV110 > span { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #ff5a64; }
.contactsQuickCardV110 strong { display: block; font-size: 22px; margin: 8px 0 4px; }
.contactsQuickCardV110 p { color: rgba(255, 255, 255, 0.66); font-size: 14px; }
.contactsQuickCardV110 > div { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.contactsQuickCardV110 > div a { height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); color: #fff; font-weight: 600; }
.contactsQuickCardV110 > div a:hover { background: rgba(255, 255, 255, 0.14); }
.contactsPageV110 { display: grid; grid-template-columns: 1fr; gap: 24px; padding-top: 40px; padding-bottom: 72px; }
.contactMethodsV110 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.contactMethodV110 { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s; }
.contactMethodV110:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--red-line); }
.contactMethodV110 span { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); }
.contactMethodV110 strong { font-size: 17px; color: var(--ink); }
.contactMethodV110 small { font-size: 13px; color: var(--muted); }
.contactMethodV110 strong { overflow-wrap: anywhere; }

/* ---- Contacts: address + map (v306) --------------------------------- */
.contactLocationV306 { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 20px; margin-top: 20px; align-items: stretch; }
.contactAddressV306 { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.contactAddressV306 h2 { margin-bottom: 10px; }
.contactAddressV306 > p { color: var(--ink-2); font-size: 15px; margin-bottom: 18px; }
.contactAddressLinksV306 { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.contactAddressLinksV306 a { display: inline-flex; align-items: center; height: 44px; padding: 0 18px; border-radius: 11px; background: var(--red); color: #fff; font-weight: 700; font-size: 14px; transition: background .18s, transform .18s; }
.contactAddressLinksV306 a:hover { background: var(--red-600); transform: translateY(-1px); }
.contactAddressLinksV306 a.ghost { background: #fff; color: var(--ink); border: 1px solid var(--field-line); }
.contactAddressLinksV306 a.ghost:hover { background: #f6f7f9; border-color: var(--muted); }
.contactMapV306 { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 320px; background: var(--field); }
.contactMapV306 iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
@media (max-width: 860px) { .contactLocationV306 { grid-template-columns: 1fr; } }

/* ---- Contacts: social method cards with brand icons (v307) ---------- */
.socialMethodV307 { position: relative; }
.socialMethodV307::after { content: ""; position: absolute; top: 16px; right: 16px; width: 30px; height: 30px;
  border-radius: 9px; background-repeat: no-repeat; background-position: center; background-size: 17px; }
.igMethodV307::after { background-color: #fdeef4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e1306c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5.5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.1' fill='%23e1306c' stroke='none'/%3E%3C/svg%3E"); }
.ttMethodV307::after { background-color: #eef0f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2314181f'%3E%3Cpath d='M16.5 3c.35 2.3 1.7 3.8 3.9 4.05v2.4c-1.45.05-2.8-.4-3.95-1.15V15a5.6 5.6 0 1 1-5.6-5.6c.32 0 .63.03.93.08v2.5a3.15 3.15 0 1 0 2.22 3.02V3h2.5z'/%3E%3C/svg%3E"); }
.fbMethodV307::after { background-color: #eaf1ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%231877f2'%3E%3Cpath d='M14 9V7.2c0-.85.2-1.2 1.25-1.2H17V3h-2.8C11.55 3 10.5 4.3 10.5 6.6V9H8.5v3h2v9h3.5v-9h2.4l.4-3H14z'/%3E%3C/svg%3E"); }
.contactMethodV110[href^="mailto"] strong { font-size: 13px; overflow-wrap: anywhere; }

/* ---- Header phone (v308) -------------------------------------------- */
.headerPhoneV308 { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 15px; border-radius: 10px;
  background: var(--red-soft); color: var(--red); font-weight: 800; font-size: 14.5px; border: 1px solid var(--red-line);
  white-space: nowrap; transition: background .18s, color .18s, transform .18s; }
.headerPhoneV308::before { content: ""; width: 15px; height: 15px; flex: none; transition: filter .18s;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ed0012' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center / contain; }
.headerPhoneV308:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.headerPhoneV308:hover::before { filter: brightness(0) invert(1); }
@media (max-width: 440px) { .headerPhoneV308 { padding: 0 10px; font-size: 13px; height: 36px; } }

/* ---- Footer address line (v308) ------------------------------------- */
.footerAddrV308 { gap: 8px; }
.footerAddrV308::before { content: ""; width: 15px; height: 15px; flex: none; opacity: .7;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center / contain; }
.contactPanelV110 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; background: rgba(255, 255, 255, 0.62); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.contactChecklistV110 h2 { margin: 6px 0 14px; }
.contactChecklistV110 ul { margin: 0; padding-left: 20px; color: var(--ink-2); }
.contactChecklistV110 li { margin-bottom: 8px; }
.contactFormV110 { display: flex; flex-direction: column; gap: 12px; }
.contactFormGridV110 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contactFormV110 button { width: 100%; }
.contactFormV110 small { font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---- Inner: Hot page --------------------------------------------------- */
.hotPageV101 { padding-top: 48px; padding-bottom: 24px; }
.hotHeroV101 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: stretch; }
.hotHeroTextV101 { align-self: center; }
.hotHeroTextV101 h1 { margin-top: 6px; text-wrap: balance; }
.hotHeroTextV101 p { margin-top: 16px; font-size: 15.5px; }
.hotTelegramV101 { background: linear-gradient(150deg, #2b333f, #1a1f27); border: 1px solid rgba(255, 255, 255, 0.12); color: #fff; border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; }
.hotTelegramIconV101 { font-size: 1.8rem; }
.hotTelegramV101 h2 { color: #fff; font-size: 22px; margin: 8px 0; }
.hotTelegramV101 p { color: rgba(255, 255, 255, 0.66); font-size: 14px; }
.hotTelegramV101 a { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; height: 46px; border-radius: 12px; background: var(--red); color: #fff; font-weight: 700; transition: background 0.18s, transform 0.18s; }
.hotTelegramV101 a:hover { background: var(--red-600); transform: translateY(-1px); }
.hotFilterV101 { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 24px; }
.hotFilterV101 button { height: 38px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: all 0.18s; }
.hotFilterV101 button:hover { border-color: var(--muted); color: var(--ink); }
.hotFilterV101 button.active { background: var(--red); color: #fff; border-color: var(--red); }
.hotGridV101 { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.hotOfferCardV101 { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s; }
.hotOfferCardV101:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red-line); }
.hotOfferTopV101 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.hotOfferTopV101 span { font-weight: 700; color: var(--ink); }
.hotOfferTopV101 em { font-style: normal; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: #ff5a64; background: var(--red-soft); padding: 4px 10px; border-radius: 999px; }
.hotOfferCardV101 h3 { margin-bottom: 8px; }
.hotOfferCardV101 > p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.hotOfferPriceV101 { display: flex; flex-direction: column; margin-bottom: 12px; }
.hotOfferPriceV101 small { font-size: 12.5px; color: var(--muted); }
.hotOfferPriceV101 strong { font-size: 1.45rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.hotOfferRowsV101 { display: flex; flex-direction: column; gap: 6px; padding-top: 12px; border-top: 1px solid var(--line-2); }
.hotOfferRowsV101 div { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.hotOfferRowsV101 div b { color: var(--ink); }
.hotOfferRowsV101 div:last-child b { color: #0a8f3c; }
.hotOfferActionsV101 { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.hotNoteV101 { max-width: var(--maxw); margin: 8px auto 0; padding: 0 24px 24px; font-size: 13px; color: var(--muted); text-align: center; }

/* ---- Hot: live lots (v349) --------------------------------------------- */
.hotLiveSectionV349 { margin-bottom: 52px; }
.hotLiveSectionTitleV349 { margin-bottom: 24px; }
.hotLiveSectionTitleV349 h2 { font-size: 24px; font-weight: 800; margin: 6px 0 0; }
.hotLiveSectionTitleV349 p { font-size: 14px; color: var(--ink-2); margin-top: 5px; }
.hotLiveGridV349 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hotLiveCardV349 { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.18s var(--ease), box-shadow 0.18s; }
.hotLiveCardV349:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hotLiveImgV349 { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: var(--field); }
.hotLiveImgEmptyV349 { background: linear-gradient(135deg, var(--field), var(--line)); }
.hotLiveBodyV349 { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hotLiveMetaTopV349 { display: flex; align-items: center; gap: 6px; }
.hotLiveBadgeV349 { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; }
.hotLiveBadgeCopartV349 { background: #1a2e55; color: #fff; }
.hotLiveBadgeIAAIV349 { background: #7a0000; color: #fff; }
.hotLiveFuelV349 { font-size: 12px; color: var(--ink-2); }
.hotLiveTitleTextV349 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.hotLivePriceRowV349 { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.hotLiveBidLabelV349 { font-size: 11.5px; color: var(--ink-2); }
.hotLiveBidAmtV349 { font-size: 20px; font-weight: 800; color: var(--red); letter-spacing: -0.01em; }
.hotLiveBuyNowV349 { font-size: 12px; color: var(--ink-2); padding: 2px 7px; border: 1px solid var(--line); border-radius: 4px; }
.hotLiveDetailsRowV349 { display: flex; flex-wrap: wrap; gap: 3px 10px; font-size: 12.5px; color: var(--ink-2); }
.hotLiveDescV349 { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.hotLiveActionsV349 { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.hotLiveBtnDetailV349, .hotLiveBtnCalcV349 { flex: 1; text-align: center; padding: 9px 0; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity 0.15s; }
.hotLiveBtnDetailV349 { background: var(--dark); color: #fff; }
.hotLiveBtnCalcV349 { background: rgba(237,0,18,0.07); color: var(--red); border: 1px solid rgba(237,0,18,0.15); }
.hotLiveBtnDetailV349:hover, .hotLiveBtnCalcV349:hover { opacity: 0.82; }
@keyframes hotSkeleton349 { 0%,100%{opacity:1} 50%{opacity:0.45} }
.hotLiveSkeletonV349 { animation: hotSkeleton349 1.4s ease-in-out infinite; background: var(--field); }
@media (max-width: 900px) { .hotLiveGridV349 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hotLiveGridV349 { grid-template-columns: 1fr; gap: 14px; } }

/* ---- Hot page: API catalog (v351) -------------------------------------- */
.hotApiWrapV351 { margin-top: 52px; }
.hotApiHeadV351 { margin-bottom: 24px; }
.hotApiHeadV351 h2 { margin: 6px 0 0; }
.hotApiHeadV351 p { font-size: 15px; color: var(--ink-2); margin-top: 8px; }
.hotApiTabsV351 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hotApiTabV351 {
  flex-shrink: 0;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  font: 500 13.5px var(--font);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.hotApiTabV351:hover { border-color: var(--red); color: var(--red); }
.hotApiTabV351.active { background: var(--red); border-color: var(--red); color: #fff; }
.hotApiGridV351 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-height: 200px;
}
.hotApiCardV351 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s var(--ease), box-shadow .18s, border-color .18s;
}
.hotApiCardV351:not(.hotApiSkeletonCardV351):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red-line);
}
.hotApiImgWrapV351 { position: relative; overflow: hidden; }
.hotApiCardImgV351 {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--field);
  transition: transform .4s var(--ease);
}
.hotApiCardV351:not(.hotApiSkeletonCardV351):hover .hotApiCardImgV351 { transform: scale(1.04); }
.hotApiImgEmptyV351 { background: linear-gradient(135deg, var(--field), var(--line-2)); }
.hotApiAucBadgeV351 {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 5px;
  font: 700 10.5px var(--font);
  letter-spacing: .04em;
  color: #fff;
  z-index: 1;
}
.hotApiBadgeCopartV351 { background: rgba(13,16,22,.70); }
.hotApiBadgeIAAIV351 { background: rgba(26,46,85,.80); }
.hotApiBodyV351 {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hotApiCarBodyV351 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hotApiTitleV351 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hotApiSpecsV351 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
}
.hotApiSpecsV351 li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--line-2);
}
.hotApiSpecsV351 li b {
  font-weight: 700;
  color: var(--ink-2);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 72px;
}
.hotApiPriceRowV351 {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}
.hotApiPriceAmtV351 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hotApiPriceLblV351 { font-size: 11.5px; color: var(--muted); }
.hotApiActionsV351 { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.hotApiBtn1V351 {
  display: block;
  text-align: center;
  padding: 10px 12px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  font: 600 13px var(--font);
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.hotApiBtn1V351:hover { background: var(--red-600); transform: translateY(-1px); }
.hotApiBtn2V351 {
  display: block;
  text-align: center;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  border-radius: 10px;
  font: 500 13px var(--font);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.hotApiBtn2V351:hover { border-color: var(--red); color: var(--red); }
.hotApiEmptyV351 {
  grid-column: 1/-1;
  text-align: center;
  padding: 56px 24px;
  color: var(--muted);
  font-size: 15px;
}
.hotApiMoreWrapV351 { text-align: center; margin-top: 32px; }
.hotApiMoreBtnV351 {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 40px;
  border: 2px solid var(--red);
  border-radius: 24px;
  background: transparent;
  color: var(--red);
  font: 600 15px var(--font);
  cursor: pointer;
  transition: all .15s;
}
.hotApiMoreBtnV351:hover { background: var(--red); color: #fff; }
/* Fuel type badge (v352) */
.hotApiFuelBadgeV352 {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 9px;
  border-radius: 6px;
  font: 700 10.5px var(--font);
  letter-spacing: .06em;
  color: #fff;
  z-index: 1;
}
.hotApiFuelElecV352 { background: rgba(22,163,74,.88); }
.hotApiFuelHybV352  { background: rgba(2,132,199,.88); }
.hotApiSkelBgV351, .hotApiSkelLineV351 {
  background: var(--field);
  border-radius: 4px;
  animation: hotApiSkel351 1.5s ease-in-out infinite;
}
@keyframes hotApiSkel351 { 0%,100%{opacity:1} 50%{opacity:.45} }
.hotApiSkeletonCardV351 { pointer-events: none; }
/* Responsive */
@media (max-width: 1100px) { .hotApiGridV351 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 740px) {
  .hotApiGridV351 { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .hotApiTabsV351 { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .hotApiTabsV351::-webkit-scrollbar { display: none; }
}
@media (max-width: 480px) {
  .hotApiGridV351 { grid-template-columns: 1fr; gap: 14px; }
  .hotApiTabV351 { height: 34px; padding: 0 13px; font-size: 13px; }
}
/* Updated: hotNoteV101 as CTA band */
.hotNoteV101 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}
.hotNoteV101 h2 { font-size: 20px; margin: 6px 0 0; }
.hotNoteV101 p { font-size: 14.5px; color: var(--ink-2); margin-top: 8px; }
.hotNoteV101 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background .18s, transform .18s;
}
.hotNoteV101 a:hover { background: var(--red-600); transform: translateY(-1px); }
@media (max-width: 640px) { .hotNoteV101 { grid-template-columns: 1fr; padding: 22px 20px; } }

/* ---- Footer ------------------------------------------------------------ */
.siteFooter { margin-top: 80px; background: #07090c; border-top: 1px solid var(--line); color: rgba(255, 255, 255, 0.7); padding: 56px 0 40px; }
.footerInner { display: grid; grid-template-columns: 1.2fr 1.6fr 1.2fr; gap: 36px; }
.footerBrand strong { font-size: 1.4rem; font-weight: 800; color: #fff; }
.footerBrand strong span { color: var(--red); }
.footerBrand p { color: rgba(255, 255, 255, 0.55); margin-top: 8px; font-size: 14px; }
.footerFedukV320 { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footerFedukLabelV320 { font-size: 12px; color: rgba(255, 255, 255, 0.4); letter-spacing: .02em; }
.footerFedukImgV320 { width: 172px; height: auto; display: block; }
.footerStats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.footerStats div b { display: block; color: #fff; font-size: 16px; }
.footerStats div span { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.footerContacts { display: flex; flex-direction: column; gap: 10px; }
.contactBtn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; color: #fff; font-weight: 600; font-size: 14px; transition: background 0.18s; }
.contactBtn:hover { background: rgba(255, 255, 255, 0.13); }
.footerPrivacyV365 { font-size: 12px; font-weight: 400; opacity: .55; padding: 7px 14px; }
.calcDeliveryV366 { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; padding: 8px 13px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.calcDeliveryV366 strong { color: #fff; font-weight: 600; }
.calcDeliveryV366 svg { flex-shrink: 0; opacity: .7; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  .heroV45, .layout, .leadGrid, .splitCards, .aboutPageV82, .contactsHeroV110, .contactPanelV110, .hotHeroV101 { grid-template-columns: 1fr; }
  .resultCard, .aboutStatsV82 { position: static; }
  .aboutHeroV344 { margin-top: 28px; margin-bottom: 40px; min-height: 420px; }
  .footerInner { grid-template-columns: 1fr; gap: 28px; }
  .apexProcessGridV205 { grid-template-columns: repeat(3, 1fr); }
  .apexProcessGridV205::before { display: none; }
  .apexStepV205 h3, .apexStepV205 p { min-height: 0; }
  .apexWhyGridV212, .apexReviewsGridV212 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  /* шапка: убираем перенос, скрываем подпись под логотипом */
  .siteHeader.apexHdrV201 { flex-wrap: nowrap; gap: 10px; padding: 0 16px; min-height: 58px; }
  .siteHeader.apexHdrV201:has(.navToggleV210:checked) { flex-wrap: wrap; }
  .apexBrandV201 small { display: none; }
  .apexBrandV201 { gap: 8px; }
  .apexBrandV201 img { height: 38px; }
  .brandTextV77 { font-size: 17px; }
  /* burger menu */
  .burgerV210 { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 38px; padding: 10px; flex-shrink: 0; border: 1px solid var(--field-line); border-radius: 10px; background: #fff; cursor: pointer; }
  .burgerV210 span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .mainNavV82.apexNavV201 { display: none; order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 2px; margin: 10px 0 4px; padding-top: 10px; border-top: 1px solid rgba(17, 20, 26, 0.08); }
  .navToggleV210:checked ~ .mainNavV82 { display: flex; }
  .mainNavV82 > a { width: 100%; padding: 12px; font-size: 15px; white-space: normal; }
  /* dropdown mobile */
  .navDropV420 { width: 100%; }
  .navDropBtnV420 { width: 100%; padding: 12px; font-size: 15px; justify-content: space-between; border-radius: 9px; }
  .navDropMenuV420 { position: static; transform: none; box-shadow: none; border: none;
    background: var(--field); border-radius: 9px; padding: 4px; margin-top: 2px; }
  .navDropMenuV420 a { font-size: 14px; padding: 10px 14px; }
  .navDropV420:hover .navDropMenuV420 { display: none; }
  .navDropV420.open .navDropMenuV420 { display: flex; }
  .langSwitcherV165 { margin: 8px 0 0; }
  .navToggleV210:checked ~ .burgerV210 span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navToggleV210:checked ~ .burgerV210 span:nth-child(2) { opacity: 0; }
  .navToggleV210:checked ~ .burgerV210 span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 640px) {
  .grid, .miniGrid, .contactFormGridV110, .apexProcessGridV205, .apexWhyGridV212, .apexReviewsGridV212 { grid-template-columns: 1fr; }
  .heroV45 { padding-top: 24px; }
  .totalFooter { flex-direction: column; align-items: flex-start; }
  .finalNote { text-align: left; max-width: 100%; }
  .card, .miniForm, .checkForm, .infoCard, .contactPanelV110 { padding: 18px; }
  .hotCarImgV202 { height: 150px; }
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ (≤ 480px) ===================================== */
@media (max-width: 480px) {

  /* --- Шапка: один ряд (когда закрыто), перенос когда меню открыто --- */
  .siteHeader.apexHdrV201 { flex-wrap: nowrap; padding: 0 14px; gap: 8px; min-height: 56px; }
  .siteHeader.apexHdrV201:has(.navToggleV210:checked) { flex-wrap: wrap; }
  .apexBrandV201 img { height: 40px; border-radius: 8px; }
  .headerPhoneV308 { padding: 0 10px; font-size: 12.5px; height: 34px; white-space: nowrap; }

  /* --- Hero: текст сверху, лицо справа -------------------------------- */
  .heroV45.heroWideV302 { min-height: 310px; }
  .heroWideBgV302 { object-position: 60% center; }
  .heroWideOverlayV302 {
    background:
      linear-gradient(90deg, rgba(13,16,22,0.97) 0%, rgba(13,16,22,0.90) 38%, rgba(13,16,22,0.55) 65%, rgba(13,16,22,0.10) 100%),
      linear-gradient(180deg, rgba(13,16,22,0.40) 0%, rgba(13,16,22,0) 35%);
  }
  .heroWideContentV302 { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
  .heroV45.heroWideV302 .heroMainV45 { display: flex; flex-direction: column; flex: 1; }
  .heroMainV45 h1 { font-size: 18px; line-height: 1.2; }
  .heroEyebrowV207 { display: none; }
  .heroMainV45 h1::after { margin-top: 10px; width: 44px; height: 3px; }
  .heroMainV45 p { display: none; }
  .heroCtasV207 { margin-top: auto; padding-top: 16px; gap: 8px; }
  .heroBtnPrimaryV207 { height: 40px; padding: 0 20px; font-size: 14px; align-self: flex-start; }
  .heroBtnGhostV207 { display: none; }
  .heroTrustV207 { display: none; }
  .heroWideStatsV302 { display: none; }

  /* --- Страница "Моя история" ----------------------------------------- */
  .aboutHeroV344 { border-radius: 14px; margin-top: 20px; margin-bottom: 32px; }
  .aboutHeroV344 { min-height: 300px; }
  .aboutHeroOverlayV344 { background: linear-gradient(to top, rgba(13,16,22,0.75) 0%, rgba(13,16,22,0.0) 52%); }
  .aboutHeroTextV344 { width: 100%; padding: 20px 22px; }
  .aboutHeroTextV344 h1 { font-size: 20px; }
  .aboutHeroTextV344 p { font-size: 13px; margin-top: 7px; }
  .aboutBlocksV348 { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
  .aboutClosingV348 { margin-top: 28px; padding-top: 24px; }

  /* --- Полоса брендов: убрать (декоративная) -------------------------- */
  .brandStripV301 { display: none; }

  /* --- Секция экономии: сжать текстовые блоки ------------------------- */
  .calcInfoPlainV52 p { font-size: 13.5px; line-height: 1.5; }
  .calcInfoPlainV52 { padding-top: 20px; padding-bottom: 20px; }

  /* --- Секция "Как работаем": 2 колонки, компактно -------------------- */
  .apexProcessV205 { padding: 16px 0; }
  .apexProcessLeadV205 { display: none; }
  .apexProcessGridV205 { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
  .apexStepV205 { padding: 12px 8px; }
  .apexStepV205::before { width: 44px; height: 44px; border-radius: 13px; background-size: 20px; margin-bottom: 10px; box-shadow: none; }
  .apexStepNumV205 { font-size: 11px; }
  .apexStepV205 h3 { font-size: 13px; margin: 4px 0 4px; min-height: 0; }
  .apexStepV205 p { font-size: 12px; min-height: 0; }

  /* --- Скрыть тяжёлые секции ------------------------------------------ */
  .hotSectionIntroV89, .hotLots { display: none; }
  .seaDeliveryV305 { display: none; }
  .apexWhyV212 { display: none; }
  .apexReviewsGridV212 { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }

  /* --- Отзывы: убрать лишнее ------------------------------------------ */
  .reviewsLeadV305 { display: none; }
  .apexReviewsGridV212 { gap: 12px; }

  /* --- Курсы валют в итоге: в строку ---------------------------------- */
  .currencyBox { flex-wrap: nowrap; gap: 5px; }
  .currencyBox .currency { height: 34px; padding: 0 11px; font-size: 12.5px; }

  /* --- Чекбокс-строка: в одну строку ---------------------------------- */
  .check { font-size: 12.5px; gap: 8px; }

  /* --- Всплывающие подсказки: ниже иконки, выровнять по правому краю - */
  .infoTipV65:hover::after, .infoTipV65:focus::after {
    bottom: auto;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    transform: none;
    width: min(210px, calc(100vw - 32px));
    max-width: min(210px, calc(100vw - 32px));
  }

  /* --- Калькулятор: компактные поля ----------------------------------- */
  .formCard { gap: 10px; }
  .card.formCard { padding: 16px; }
  .formRow { gap: 4px; }
  .formRow > label, .formCard > label { font-size: 12px; }
  input[type="text"], input[type="number"], input[type="url"], input[type="date"],
  input:not([type]), select { height: 40px; font-size: 14px; padding: 0 12px; }
  select { background-position: right 10px center; padding-right: 32px; }
  .glassSelectButtonV152 { height: 40px; font-size: 14px; padding: 0 12px; }
  .locationOffsiteRowV314 .offsiteCheck { height: 40px; font-size: 13px; }
  .lotImportV118 { padding: 12px 16px; }
  .lotImportControlV118 { flex-direction: column; gap: 8px; }
  .lotImportControlV118 input { flex: none; width: 100%; height: 50px; font-size: 15px; }
  .lotImportControlV118 #parseLotBtn { width: 100%; height: 38px; padding: 0 18px; font-size: 15px; }
  .lotImportCheckBtnV120 { width: 100%; margin-left: 0; margin-top: 4px; }
}

/* ── Состояние успешной отправки формы ───────────────────────────────── */
.formSuccessV2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 24px;
  text-align: center;
  animation: fadeInUp .35s ease;
}
.formSuccessV2 .formSuccessIcon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}
.formSuccessV2 p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary, #64748b);
}
.formSuccessV2 strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text, #0d1016);
  margin-bottom: 4px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Плавающая кнопка контактов ──────────────────────────────────────── */
.fabContactV341 {
  position: fixed;
  bottom: 20px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 9000;
}
.fabBtnV341 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red, #ed0012);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(237,0,18,0.35);
  transition: background .18s, transform .18s;
  flex-shrink: 0;
}
.fabBtnV341:hover { background: #c8000f; transform: scale(1.07); }
.fabBtnV341:active { transform: scale(0.95); }
.fabIconCloseV341 { display: none; }
.fabContactV341.open .fabIconChatV341 { display: none; }
.fabContactV341.open .fabIconCloseV341 { display: block; }
.fabContactV341.open .fabBtnV341 { background: #222; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.fabOptionsV341 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity .2s, transform .2s;
}
.fabContactV341.open .fabOptionsV341 {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fabOptionV341 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s;
  flex-shrink: 0;
}
.fabOptionV341:hover { transform: scale(1.1); }
.fabTgV341 { background: #2AABEE; }
.fabWaV341 { background: #25D366; }

/* ---- Canada Calculator toggle (v400) --------------------------------- */
.countryToggleV400 { display: flex; gap: 8px; margin-bottom: 6px; }
.countryBtn { flex: 1; height: 44px; border: 2px solid var(--line); border-radius: 12px; background: transparent; font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: border-color 0.18s, background 0.18s, color 0.18s; }
.countryBtn.active { border-color: var(--red); background: var(--red-soft); color: var(--red); }
.countryBtn:hover:not(.active) { border-color: var(--muted); }
.bcWarningV400 { border-radius: 10px; padding: 10px 14px; font-size: 13.5px; margin-top: 8px; background: #fff8e1; border: 1px solid #f0b800; color: #7a5500; }
.bcWarningV400.bcInfoV400 { background: #e8f4ff; border-color: #4a9edd; color: #1a4f7a; }
.calcModeCanada [data-usa-only] { display: none !important; }
.calcModeCanada .exportCurrencyRowV374 { justify-content: flex-end; }
