:root {
  --red: #ED1C24;
  --red-dark: #B3141A;
  --ink: #1A1A1A;
  --ink-soft: #2E2E2E;
  --grey: #6B6B6B;
  --grey-line: #E4E4E4;
  --grey-light: #F5F5F4;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --maxw: 1180px;
  /* febi's signature warm charcoal gradient, sampled from their own agriculture campaign material */
  --febi-grad: linear-gradient(180deg, #403E3D 0%, #322F2E 26%, #241F1E 50%, #140F0E 75%, #050403 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
[id] { scroll-margin-top: 100px; }
section { padding: 88px 0; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--ink-soft); }
.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--grey-line); }
.btn-outline:hover { border-color: var(--ink); }

/* Header — solid brand red, matching febi.com/ru/selskoe-khozjaistvo */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--red);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.link-plain { color: #fff; opacity: .8; font-weight: 600; font-size: 13.5px; text-decoration: none; white-space: nowrap; }
.link-plain:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.site-header .btn-dark { background: #1A1A1A; }
.site-header .btn-dark:hover { background: #000; }
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-decoration: none; flex: none; }
.logo img { height: 46px; width: auto; display: block; }
.logo-sub { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .01em; white-space: nowrap; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0 auto; padding: 0; }
.nav-links--left { margin-left: 32px; margin-right: auto; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--ink); white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.site-header .nav-links a { color: #fff; opacity: .92; }
.site-header .nav-links a:hover { opacity: 1; color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.header-right { display: flex; align-items: center; gap: 14px; flex: none; }

/* Language switch — collapsed to a globe icon, expands into an option panel on click */
.lang-switch { position: relative; flex: none; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; padding: 9px 13px; border-radius: 999px;
  font-weight: 700; font-size: 12.5px; transition: background .15s ease;
}
.lang-toggle:hover { background: rgba(255,255,255,.24); }
.lang-globe { flex: none; }
.lang-current { letter-spacing: .02em; }
.lang-options {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; border-radius: 12px; padding: 4px;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lang-switch.open .lang-options { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-options button {
  border: none; background: transparent; padding: 8px 16px; border-radius: 8px;
  font-weight: 700; font-size: 12.5px; cursor: pointer; color: var(--grey); text-align: left; white-space: nowrap;
}
.lang-options button:hover { background: var(--grey-light); }
.lang-options button.active { background: var(--ink); color: #fff; }
.nav-toggle {
  display: none; border: none; background: rgba(255,255,255,.15);
  border-radius: 8px; width: 38px; height: 38px; align-items: center; justify-content: center; cursor: pointer; flex: none;
}

/* Hero — full-bleed editorial photo slider, content aligned to the same .wrap as the header */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--febi-grad);
  color: #fff;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.07);
  transition: opacity 1.3s ease, transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(100deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.82) 28%, rgba(5,4,3,.5) 54%, rgba(5,4,3,.16) 78%, rgba(5,4,3,0) 96%),
    linear-gradient(0deg, rgba(5,4,3,.55) 0%, rgba(5,4,3,0) 40%);
}

.hero-wrap { position: relative; z-index: 3; width: 100%; padding-top: 70px; padding-bottom: 70px; }
.hero-content { max-width: 600px; }

/* Slide navigation — plain animated progress bars, no labels; doubles as auto-advance indicator */
.hero-slider-nav { display: flex; gap: 10px; margin-top: 46px; max-width: 220px; }
.hero-slide-tab {
  flex: 1; display: flex; align-items: center; background: none; border: none;
  padding: 8px 0; cursor: pointer;
}
.hero-slide-tab-bar { display: block; width: 100%; height: 3px; background: rgba(255,255,255,.25); border-radius: 2px; overflow: hidden; transition: background .2s ease; }
.hero-slide-tab-progress { display: block; height: 100%; width: 0%; background: var(--red); }
.hero-slide-tab:hover .hero-slide-tab-bar { background: rgba(255,255,255,.4); }
.hero-slide-tab.active .hero-slide-tab-bar { background: rgba(255,255,255,.3); }
.hero h1 { font-size: clamp(32px, 3.4vw, 46px); margin-bottom: 16px; max-width: 460px; }
.hero-subtitle { color: #D8D8D8; font-size: 18px; margin-bottom: 30px; max-width: 420px; }
.hero-subtitle strong { color: #fff; }

.hero-badges { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badge-img { display: block; filter: drop-shadow(0 8px 18px rgba(0,0,0,.5)); }
.hero-badge-img--warranty { height: 82px; width: auto; }
.hero-badge-img--oe { height: 58px; width: auto; margin-left: -4px; }
.hero-de-tag {
  display: inline-flex; align-items: center; gap: 7px; align-self: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #EDEDED; font-size: 12.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(4px);
  margin-left: 6px;
}

.hero-ctas { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 44px; }
.hero-ctas .btn { width: fit-content; }
.btn-outline-red { background: transparent; color: #FF8A8D; border-color: rgba(237,28,36,.7); }
.btn-outline-red:hover { background: rgba(237,28,36,.12); border-color: var(--red); color: #fff; }

/* Trust stats band — solid brand red, numbers only, no photo */
.stats-band {
  position: relative; padding: 64px 0; overflow: hidden;
  background: linear-gradient(115deg, var(--red-dark) 0%, var(--red) 55%, #FF4B44 100%);
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(0,0,0,.18) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.12) 100%);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center;
}
.stats-item p { color: #FFE3E1; font-size: 15px; margin: 10px auto 0; max-width: 280px; line-height: 1.45; }
.stats-num { font-size: clamp(38px, 4.4vw, 56px); font-weight: 800; color: #fff; line-height: 1; }

/* Brand logo strip — auto-scrolling marquee */
.brand-strip { padding: 44px 0; background: var(--grey-light); overflow: hidden; }
.brand-strip__label {
  text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--grey); margin: 0 0 26px;
}
.brand-track-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: brand-scroll 28s linear infinite; }
.brand-logo { display: flex; align-items: center; justify-content: center; height: 34px; flex: none; }
.brand-logo img { height: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .2s, opacity .2s; }
.brand-logo:hover img { filter: grayscale(0); opacity: 1; }
.brand-logo--text { font-weight: 800; font-size: 20px; color: var(--grey); letter-spacing: .02em; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Your advantages — tractor photo on the left, icon+text rows on the right */
.advantages { background: var(--febi-grad); color: #fff; }
.advantages-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.advantages-list h2 { color: #fff; margin-bottom: 32px; }
.adv-item { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.adv-item:first-of-type { border-top: none; padding-top: 0; }
.adv-icon { flex: none; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.adv-item h3 { color: var(--red); font-size: 16px; margin: 0 0 6px; }
.adv-item p { color: #D6D6D6; font-size: 14.5px; margin: 0; line-height: 1.55; }

.advantages-photo { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.advantages-photo img { width: 100%; height: 560px; object-fit: cover; display: block; }

/* Assortment — 6 product-group photo cards, 3 cols x 2 rows */
.assort-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.assort-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-line);
  background: #0e0e0e; box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.assort-card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(0,0,0,.14); }
.assort-card img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .4s ease; }
.assort-card:hover img { transform: scale(1.06); }
.assort-card h3 {
  flex: 1; display: flex; align-items: center;
  font-size: 15px; font-weight: 700; line-height: 1.3; margin: 0; padding: 16px 18px;
  color: var(--ink); background: #fff;
}

.catalog-cta {
  background: linear-gradient(120deg, var(--ink) 0%, #241414 55%, var(--red-dark) 130%);
  border-radius: 16px; padding: 40px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.catalog-cta h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.catalog-cta p { color: #E4C9C9; margin: 0; max-width: 460px; }

/* Parts strip — real cutout parts on one continuous soft gradient, no hard color seams */
.parts-strip {
  display: flex; margin-top: 56px; height: 240px; position: relative; overflow: hidden;
  background: linear-gradient(100deg, #F7F7F6 0%, #ECECEA 50%, #F7F7F6 100%);
}
.parts-zone {
  flex: 1; position: relative; overflow: hidden; display: flex; align-items: center; background: transparent;
}
.parts-track {
  display: flex; align-items: center; gap: 64px; width: max-content; padding: 0 32px;
  animation: parts-scroll 16s linear infinite;
}
.parts-zone--red .parts-track { animation-direction: reverse; animation-duration: 14s; }
.parts-zone--dark .parts-track { animation-duration: 19s; }
.parts-track img {
  height: 160px; width: 140px; object-fit: contain; flex: none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.16));
  transition: transform .3s ease;
}
.parts-track img:hover { transform: scale(1.12); }
@keyframes parts-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .parts-track { animation: none; }
}

/* Machines — text+logo grid on the left, farmer/tractor photo on the right */
.machines { background: var(--white); }
.machines-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.machines p { max-width: 460px; }
.machines-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 30px 0 22px; }
.machines-logo {
  display: flex; align-items: center; justify-content: center; height: 76px;
  border: 1px solid var(--grey-line); border-radius: var(--radius); background: #fff;
  padding: 14px; box-shadow: 0 6px 16px rgba(0,0,0,.05);
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
}
.machines-logo:hover { transform: translateY(-3px); border-color: var(--grey); box-shadow: 0 12px 22px rgba(0,0,0,.1); }
.machines-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(1); opacity: .65; transition: filter .2s ease, opacity .2s ease;
}
.machines-logo:hover img { filter: grayscale(0); opacity: 1; }
.machines-logo--text { font-weight: 800; font-size: 17px; color: var(--grey); letter-spacing: .01em; }
.machines-logo--text:hover { color: var(--ink); }
.fine-print { font-size: 13px; color: var(--grey); }

.machines-photo { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.machines-photo img { width: 100%; height: 520px; object-fit: cover; display: block; }

/* How to buy — interactive partner map */
#buy .section-head p { margin-bottom: 4px; }
.map-panel {
  border: 1px solid var(--grey-line); border-radius: 20px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
}
.map-panel-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding: 26px 30px; border-bottom: 1px solid var(--grey-line);
}
.map-panel-head h3 { margin: 0; font-size: 19px; }
.country-toggle { display: flex; gap: 4px; background: var(--grey-light); border-radius: 999px; padding: 4px; }
.country-toggle button {
  border: none; background: transparent; padding: 9px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px; cursor: pointer; color: var(--grey); transition: background .2s ease, color .2s ease;
}
.country-toggle button.active { background: var(--ink); color: #fff; }

.map-stage {
  position: relative; background: var(--grey-light);
  aspect-ratio: 16 / 8.2; overflow: hidden;
}
.map-tractor-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 21%; opacity: .5; pointer-events: none; z-index: 1;
  mix-blend-mode: multiply; filter: grayscale(1);
}
.map-country {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s ease;
}
.map-country.active { opacity: 1; visibility: visible; }
.map-svg { width: 92%; max-width: 92%; position: relative; z-index: 1; }
.map-pins { position: absolute; inset: 0; z-index: 2; }

.map-pin {
  position: absolute; transform: translate(-50%, -100%); border: none; background: none; padding: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.map-pin-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--red);
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.35);
  position: relative; transition: transform .2s ease;
}
.map-pin-dot::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  background: rgba(237,28,36,.35); animation: pin-pulse 2.2s ease-out infinite;
}
.map-pin-label {
  font-size: 12px; font-weight: 700; color: var(--ink); background: rgba(255,255,255,.9);
  padding: 2px 8px; border-radius: 999px; white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.map-pin:hover .map-pin-dot, .map-pin.active .map-pin-dot { transform: scale(1.3); }
.map-pin.active .map-pin-label { background: var(--red); color: #fff; }
@keyframes pin-pulse {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.partners-accordion { display: none; padding: 10px 30px 30px; }
.partners-accordion.active { display: block; }
.partner-item { border-bottom: 1px solid var(--grey-line); }
.partner-item:last-child { border-bottom: none; }
.partner-item-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: none; cursor: pointer; padding: 18px 4px; text-align: left;
}
.partner-item-head-left { display: flex; align-items: center; gap: 10px; }
.partner-item-city { font-weight: 800; font-size: 16px; color: var(--ink); }
.partner-item-count { font-size: 12.5px; color: var(--grey); font-weight: 600; }
.partner-item-chevron { flex: none; transition: transform .2s ease; color: var(--red); }
.partner-item.open .partner-item-chevron { transform: rotate(180deg); }
.partner-item-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.partner-item.open .partner-item-body { grid-template-rows: 1fr; }
.partner-item-body-inner { overflow: hidden; }
.partner-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; padding: 4px 4px 20px; }
.partner-card { background: var(--grey-light); border-radius: var(--radius); padding: 16px 18px; }
.partner-card strong { display: block; font-size: 14.5px; margin-bottom: 6px; }
.partner-card span { display: block; font-size: 13px; color: var(--grey); margin-bottom: 4px; line-height: 1.4; }
.partner-card a { color: var(--red); font-weight: 700; font-size: 13.5px; text-decoration: none; }
.partner-card a:hover { text-decoration: underline; }

.buy-cta-band { background: var(--febi-grad); margin-top: 64px; padding: 48px 0; }
.buy-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.buy-cta-inner h3 { color: #fff; margin-bottom: 4px; }
.buy-cta-inner p { color: #C9C9C9; margin: 0; }

/* FAQ — European-style 1/3 + 2/3 split */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
.faq-side { position: sticky; top: 110px; }
.faq-side h2 { font-size: clamp(34px, 3.6vw, 48px); margin-bottom: 22px; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.faq-list { max-width: none; margin: 0; }
.faq-item { border-bottom: 1px solid var(--grey-line); padding: 6px 0; }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 16px; padding: 16px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; display: flex; }
.faq-icon-v { transform-box: fill-box; transform-origin: center; transition: transform .2s ease, opacity .2s ease; }
.faq-item[open] .faq-icon-v { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding-bottom: 18px; margin: 0; }

/* Final CTA form */
.cta-final { background: var(--febi-grad); color: #fff; position: relative; overflow: hidden; padding-bottom: 240px; }
.cta-final .wrap { position: relative; z-index: 1; }
.cta-final .section-head h2 { color: #fff; }
.cta-final .section-head p { color: #C9C9C9; }
.cta-wheat {
  position: absolute; left: 0; right: 0; bottom: -6px; width: 100%; height: auto;
  max-height: 260px; object-fit: cover; object-position: bottom;
  pointer-events: none; z-index: 0; opacity: .85;
  mask-image: linear-gradient(to top, #000 0%, #000 30%, transparent 92%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 30%, transparent 92%);
}
.lead-form { max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form .full { grid-column: 1 / -1; }
.lead-form label { display: block; font-size: 13px; color: #C9C9C9; margin-bottom: 6px; font-weight: 600; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 13px 14px; border-radius: 8px; border: 1px solid #3a3a3a;
  background: #202020; color: #fff; font-size: 14.5px; font-family: inherit;
}
.lead-form textarea { resize: vertical; min-height: 90px; }
.lead-form .submit-row { display: flex; align-items: center; gap: 16px; }
.form-note { font-size: 12.5px; color: #9b9b9b; }
.form-status { font-size: 14px; margin-top: 10px; }
.form-status.ok { color: #6FE07A; }
.form-status.err { color: #FF7A7A; }

/* Legal / privacy policy page */
.legal-page { padding-top: 64px; padding-bottom: 80px; }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 8px; }
.legal-updated { color: var(--grey); font-size: 13.5px; margin-bottom: 40px; }
.legal-content h3 { font-size: 18px; margin: 36px 0 12px; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.legal-content ul { margin: 0 0 16px; padding-left: 20px; }
.legal-content a { color: var(--red); font-weight: 600; }

/* About page — single-photo hero */
.about-hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  background-size: cover; background-position: center 60%; color: #fff; overflow: hidden;
}
.about-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(5,4,3,.92) 0%, rgba(5,4,3,.72) 32%, rgba(5,4,3,.28) 62%, rgba(5,4,3,.1) 100%),
              linear-gradient(0deg, rgba(5,4,3,.55) 0%, rgba(5,4,3,0) 40%);
}
.about-hero .hero-wrap { position: relative; z-index: 2; }

/* About page — "Кто мы такие" company story + facts panel */
.about-story-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.about-story-text h2 { margin-bottom: 22px; }
.about-story-text p { max-width: 640px; }
.about-story-facts { background: var(--grey-light); border-radius: var(--radius); padding: 6px 28px; }
.fact-item { padding: 22px 0; border-top: 1px solid var(--grey-line); }
.fact-item:first-child { border-top: none; }
.fact-num { display: block; font-size: 21px; font-weight: 800; color: var(--ink); margin-bottom: 4px; line-height: 1.2; }
.fact-label { display: block; font-size: 13.5px; color: var(--grey); line-height: 1.45; }

/* About page — 4 pillars */
.pillars { background: var(--grey-light); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar-card { background: #fff; border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow); }
.pillar-icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--febi-grad);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.pillar-card h3 { font-size: 16.5px; margin: 0 0 10px; }
.pillar-card p { font-size: 13.5px; color: var(--grey); margin: 0; line-height: 1.55; }

/* About page — stats section heading (reuses .stats-band) */
.stats-section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.stats-section-head .eyebrow { color: #FFD3D1; }
.stats-section-head h2 { color: #fff; margin: 0; }

/* About page — popular articles */
.parts-examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.part-example-card {
  border: 1px solid var(--grey-line); border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
}
.part-example-card img {
  width: 100%; height: 190px; object-fit: contain; background: var(--grey-light);
  padding: 24px; display: block;
}
.part-example-body { padding: 20px 22px 24px; }
.part-example-body h3 { font-size: 15.5px; margin: 0 0 10px; }
.part-example-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.part-example-brands span {
  background: var(--grey-light); color: var(--ink-soft); font-size: 11.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.part-example-sku {
  display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: #fff;
  font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 6px; letter-spacing: .02em;
}

/* About page — useful materials (placeholder tiles) */
.resources { background: var(--grey-light); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card { background: #fff; border-radius: var(--radius); padding: 34px 26px; text-align: center; box-shadow: var(--shadow); }
.resource-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--febi-grad);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.resource-card h3 { font-size: 16px; margin: 0 0 8px; }
.resource-card p { font-size: 13.5px; color: var(--grey); margin: 0 0 16px; }
.resource-soon {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .06em; border: 1px solid rgba(237,28,36,.3);
  border-radius: 999px; padding: 5px 12px;
}

/* Footer */
.site-footer { background: #101010; color: #B7B7B7; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; color: #B7B7B7; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-logo-col img { height: 52px; display: block; margin-bottom: 16px; }
.footer-slogan { font-style: italic; font-weight: 700; color: #fff; font-size: 14.5px; margin: 0; }
.footer-social-list a { display: flex; align-items: center; gap: 10px; }
.footer-social-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: #1c1c1c;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer-social-list a:hover .footer-social-icon { background: var(--red); }
.footer-bottom-disclaimer { font-size: 12px; line-height: 1.6; color: #6f6f6f; max-width: 900px; margin: 0 0 20px; }
.footer-bottom {
  border-top: 1px solid #262626; padding-top: 22px; font-size: 12.5px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #7a7a7a;
}
.footer-bottom a { color: #7a7a7a; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* Catalog gate modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,.6); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 14px; padding: 34px; max-width: 440px; width: 100%;
  position: relative;
}
.modal-box h3 { margin-bottom: 6px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 22px;
  cursor: pointer; color: var(--grey); line-height: 1;
}
.modal-box { max-width: 460px; }
.modal-box form { display: grid; gap: 14px; margin-top: 18px; }
.modal-box input, .modal-box select, .modal-box textarea {
  width: 100%; padding: 13px 14px; border-radius: 8px; border: 1px solid var(--grey-line);
  font-size: 14.5px; font-family: inherit; color: var(--ink); background: #fff;
}
.modal-box textarea { resize: vertical; min-height: 72px; }
.modal-box .partner-field { display: none; }
.modal-box.mode-partner .partner-field { display: block; }

@media (max-width: 900px) {
  .assort-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .hero-content { margin-top: 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--grey-line);
    flex-direction: column; padding: 12px 24px 20px; gap: 4px; margin: 0; z-index: 49;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .site-header .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--grey-light); color: var(--ink); opacity: 1; }
  .header-right { gap: 10px; }
  .header-right .link-plain { display: none; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .parts-examples-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  section { padding: 60px 0; }
  .site-header .wrap { padding: 0 16px; }
  .logo-sub { display: none; }
  .header-right { gap: 8px; }
  .site-header .btn-dark { padding: 9px 14px; font-size: 13px; }
  .lang-switch { padding: 3px; padding-left: 7px; gap: 2px; }
  .lang-switch button { padding: 5px 8px; font-size: 11.5px; }
  .assort-grid { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .catalog-cta { flex-direction: column; align-items: flex-start; }
  .cta-final { padding-bottom: 140px; }
  .cta-wheat { max-height: 120px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .parts-examples-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .about-hero { min-height: 70vh; }
}
