:root {
  --bg: #0B0B0D;
  --bg-raise: #121316;
  --card: #17181C;
  --card-hover: #1C1D22;
  --line: rgba(255, 255, 255, 0.07);
  --text: #EDEEF0;
  --muted: #A2A6AD;
  --silver: #C7CBD2;
  --red: #E11D25;
  --red-bright: #F03038;
  --red-dark: #9B1015;
  --plate-bg: #F4F5F7;
  --plate-blue: #1E3E9E;
  --radius: 14px;
  --radius-sm: 14px;
  --font-display: "Saira", "Oswald", "Arial Narrow", sans-serif;
  --chrome-grad: linear-gradient(180deg, #FFFFFF 0%, #C9CCD1 42%, #82878F 54%, #E8EAEE 100%);
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: 1200px;
  --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3 { font-weight: 400; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.022em;
  line-height: 1.04;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }

h1 em, h2 em {
  font-style: normal;
  color: var(--red-bright);
}

.nowrap { white-space: nowrap; }

.chrome {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo {
  height: 64px;
  width: auto;
  filter:
    drop-shadow(0 3px 9px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 18px rgba(240, 48, 56, 0.28));
  transition: filter 0.35s ease;
}

.brand:hover .brand-logo {
  filter:
    drop-shadow(0 3px 9px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 22px rgba(240, 48, 56, 0.45));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red-bright);
  white-space: nowrap;
}

.plate {
  display: inline-flex;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  background: var(--plate-bg);
  border: 1px solid rgba(0, 0, 0, 0.55);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  width: fit-content;
}

.plate-eu {
  background: var(--plate-blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.55rem;
  line-height: 1;
  padding: 0.25rem 0.32rem;
}

.plate-eu i {
  font-style: normal;
  font-size: 0.42rem;
  color: #F6C915;
  letter-spacing: 0;
}

.plate-txt {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  color: #17181C;
  padding: 0.42rem 0.75rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.plate-lg .plate-eu { font-size: 0.68rem; padding: 0.3rem 0.45rem; }
.plate-lg .plate-eu i { font-size: 0.5rem; }
.plate-lg .plate-txt {
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  letter-spacing: 0.12em;
  padding: 0.7rem 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 22px -14px rgba(0, 0, 0, 0.9);
}

.btn-red:hover {
  transform: translateY(-2px);
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 14px 26px -14px rgba(0, 0, 0, 0.95);
}

.btn-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.15rem;
  font-size: 1.15em;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow-icon { transform: translateX(4px); }

.btn-ghost {
  background: var(--card);
  border-color: rgba(199, 203, 210, 0.28);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(199, 203, 210, 0.5);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.08rem; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transform: translate3d(0, 0, 0);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.98);
  will-change: transform;
}

.topbar.is-hidden { transform: translate3d(0, -100%, 0); }

.topbar.scrolled {
  background: rgba(9, 9, 11, 0.96);
  border-bottom-color: rgba(199, 203, 210, 0.14);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.25rem);
  padding-block: 0.85rem;
  position: relative;
}

.topbar .container { max-width: 100%; padding-inline: clamp(1.25rem, 2.8vw, 3.5rem); }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: clamp(0.9rem, 1vw, 1.2rem);
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  clip-path: none;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  color: rgba(237, 238, 240, 0.72);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.66rem, 0.54vw, 0.71rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 0.22rem;
  transition: color 0.2s ease;
  position: relative;
  clip-path: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 1.75rem;
  height: 1px;
  background: var(--red-bright);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: #fff;
  background: transparent;
}

.nav a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav a.active {
  color: #fff;
  background: transparent;
}

.nav a.active::after { transform: translateX(-50%) scaleX(1); }

@media (min-width: 1025px) {
  .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.topbar-cta { display: flex; align-items: center; gap: 0.9rem; }

.burger {
  display: none;
  position: relative;
  z-index: 95;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0 11px;
}

.burger span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding-block: 9rem 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.96) 0%, rgba(11, 11, 13, 0.82) 38%, rgba(11, 11, 13, 0.35) 72%, rgba(11, 11, 13, 0.55) 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, rgba(11, 11, 13, 0) 30%, rgba(11, 11, 13, 0.9) 92%, var(--bg) 100%),
    url("/static/img/hero-utv-rafmot.jpg") center top / cover no-repeat;
}

.hero-inner::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -3.4rem;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 203, 210, 0.75) 0%, rgba(199, 203, 210, 0) 100%);
  transform: rotate(-3deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: 11rem;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(225, 29, 37, 0) 100%);
  transform: rotate(-3deg);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding-inline: clamp(2rem, 5vw, 5rem);
}

.hero-content { max-width: 640px; }

@media (min-width: 769px) {
  .hero-content { margin-left: clamp(0.75rem, 1.25vw, 1.25rem); }
}

.hero-title-line { display: block; }

.hero-content .plate { margin-bottom: 1.6rem; }

.hero-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--silver);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-ticks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 2.4rem;
}

.hero-ticks li {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-ticks li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(225, 29, 37, 0.9);
  flex-shrink: 0;
}

.stats {
  border-block: 1px solid var(--line);
  background: var(--bg-raise);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 2.4rem 1.5rem;
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--line);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: 0.03em;
  display: block;
  line-height: 1;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-num::first-letter { margin: 0; }

.stat-label {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section-raise {
  background: var(--bg-raise);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head .plate,
.contact-section-head .plate,
.contact-scope-head .plate,
.contact-form-head .plate,
.contact-channels .plate,
.contact-hours .plate,
.contact-final-card .plate,
.about-section-head .plate,
.about-scope-head .plate,
.about-copy .plate,
.about-direction-card .plate,
.about-thanks .plate,
.trade-section-head .plate,
.trade-copy .plate { margin-bottom: 1.3rem; }

.section-head p {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 1.4rem;
  align-items: stretch;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.showcase-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 1.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.showcase-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.showcase-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  opacity: 0.42;
  transition: opacity 0.3s ease;
}

.showcase-title {
  display: block;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--silver);
  transition: color 0.3s ease;
}

.showcase-desc {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 48ch;
  margin-top: 0.4rem;
  transition: color 0.3s ease;
}

.showcase-arrow {
  color: var(--muted);
  display: flex;
  transition: color 0.3s ease, transform 0.3s ease;
}

.showcase-arrow svg { width: 1.35rem; height: 1.35rem; }

.showcase-item:hover { background: var(--card-hover); }

.showcase-item.is-active {
  background: var(--card-hover);
  border-color: rgba(225, 29, 37, 0.4);
}

.showcase-item.is-active::before { transform: scaleY(1); }

.showcase-item.is-active .showcase-num { opacity: 1; }
.showcase-item.is-active .showcase-title { color: #fff; }
.showcase-item.is-active .showcase-desc { color: var(--silver); }

.showcase-item.is-active .showcase-arrow {
  color: var(--red-bright);
  transform: translateX(5px);
}

.showcase-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stage-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stage-layer.is-active { opacity: 1; }

.stage-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0) 45%, rgba(11, 11, 13, 0.78) 100%);
}

.stage-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.grid-section {
  --glow-shift-x: 0px;
  --glow-shift-y: 0px;
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background-color: #0C0D10;
}

.grid-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(85% 65% at 50% calc(0% + var(--glow-shift-y)), rgba(225, 29, 37, 0.07) 0%, rgba(225, 29, 37, 0) 46%),
    radial-gradient(120% 120% at 50% 45%, rgba(12, 13, 16, 0) 38%, rgba(12, 13, 16, 0.9) 100%);
}

.grid-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 24%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.grid-section > .container {
  position: relative;
  z-index: 1;
}

.scroll-glow {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.scroll-glow-grid {
  top: -11rem;
  left: 50%;
  width: clamp(34rem, 72vw, 62rem);
  height: clamp(20rem, 34vw, 30rem);
  background: radial-gradient(ellipse at center, rgba(225, 29, 37, 0.28) 0%, rgba(225, 29, 37, 0.12) 34%, rgba(225, 29, 37, 0) 72%);
  transform: translate3d(calc(-50% + var(--glow-shift-x)), var(--glow-shift-y), 0);
}

.plates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.plates-grid .plate-lg {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plates-grid .plate-lg:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.7), 0 0 0 2px rgba(225, 29, 37, 0.45);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.spec-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.16);
}

.spec-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.spec-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spec-card:hover .spec-media img { transform: scale(1.045); }

.spec-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0) 55%, rgba(11, 11, 13, 0.55) 100%);
}

.spec-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(225, 29, 37, 0.92);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

.spec-body { padding: 1.6rem 1.5rem 1.8rem; }

.spec-body h3 { margin-bottom: 0.7rem; font-size: 1.3rem; }

.spec-body p { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.1rem; }

.spec-body strong { color: var(--silver); }

.check-list { list-style: none; display: grid; gap: 0.55rem; }

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.94rem;
  color: var(--silver);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 0.85em;
  height: 0.45em;
  border-left: 2px solid var(--red-bright);
  border-bottom: 2px solid var(--red-bright);
  transform: rotate(-45deg);
}

.check-cols {
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.check-cols li { font-size: 0.88rem; }

.band {
  --glow-shift-x: 0px;
  --glow-shift-y: 0px;
  background:
    radial-gradient(90% 130% at 0% calc(50% + var(--glow-shift-y)), rgba(155, 16, 21, 0.16) 0%, rgba(155, 16, 21, 0) 55%),
    var(--bg-raise);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(225, 29, 37, 0) 65%);
}

.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.scroll-glow-band {
  top: 50%;
  left: -12rem;
  width: clamp(34rem, 62vw, 54rem);
  height: clamp(22rem, 38vw, 32rem);
  background: radial-gradient(ellipse at center, rgba(225, 29, 37, 0.3) 0%, rgba(155, 16, 21, 0.13) 38%, rgba(155, 16, 21, 0) 72%);
  transform: translate3d(var(--glow-shift-x), calc(-50% + var(--glow-shift-y)), 0);
}

.band-copy { max-width: 640px; }

.band-copy p { margin-top: 1rem; color: var(--muted); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.step {
  background: var(--card);
  padding: 1.5rem 1.3rem 1.6rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.step::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -9px;
  width: 40px;
  height: 2px;
  background: var(--red);
  transform: rotate(45deg);
  transform-origin: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  background: var(--card-hover);
  box-shadow: inset 0 0 0 1px rgba(225, 29, 37, 0.4);
}

.step:hover::after { opacity: 1; }

.step-tag {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.step-stamp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed rgba(225, 29, 37, 0.55);
  background: rgba(225, 29, 37, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transform: rotate(-9deg);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--red-bright);
  transition: color 0.3s ease;
}

.step:hover .step-stamp {
  background: var(--red);
  border-color: var(--red);
  border-style: solid;
  transform: rotate(0deg);
}

.step:hover .step-num { color: #fff; }

.step h3 { font-size: 1.02rem; margin-bottom: 0.45rem; }

.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.why-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.why-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 3px;
  background: var(--red);
  z-index: 2;
}

.why-media img { width: 100%; height: 100%; object-fit: cover; }

.why-media figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.3rem 1rem;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0), rgba(11, 11, 13, 0.88));
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.why-copy .section-head { margin-bottom: 1.8rem; }

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.4rem;
}

.why-list li {
  position: relative;
  padding-left: 2.1rem;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--silver);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(225, 29, 37, 0.12);
  border: 1px solid rgba(225, 29, 37, 0.4);
}

.why-list li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.42em;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2px solid var(--red-bright);
  border-bottom: 2px solid var(--red-bright);
  transform: rotate(-45deg);
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.b2b-copy .section-head { margin-bottom: 1.6rem; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.chip:hover {
  border-color: rgba(225, 29, 37, 0.5);
  color: #fff;
}

.b2b-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.b2b-media img { width: 100%; height: 100%; object-fit: cover; }

.b2b-media figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.3rem 1rem;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0), rgba(11, 11, 13, 0.88));
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.contact { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 14%),
    repeating-linear-gradient(112deg, rgba(0, 0, 0, 0.022) 0 2px, rgba(255, 255, 255, 0.045) 2px 4px),
    radial-gradient(120% 130% at 78% -10%, #ffffff 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #eef0f3 0%, #d0d4da 32%, #b4b9c1 52%, #ccd0d6 70%, #edeff2 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  color: #191b1f;
  box-shadow:
    0 34px 70px -28px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 6px rgba(0, 0, 0, 0.14);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 40%, rgba(155, 16, 21, 0) 78%);
  z-index: 2;
}

.contact-head { max-width: 620px; }

.contact-head .plate {
  margin-bottom: 1.3rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.45);
}

.contact-card h2 { color: #14161a; }
.contact-card h2 em { color: var(--red); }

.contact-head p { margin-top: 1.1rem; color: #4a4d54; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.8rem;
  position: relative;
}

.contact-grid::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 0.8rem;
}

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: #17191d;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.contact-phone:hover { color: var(--red); }

.contact-block p { color: #33363c; }

.contact-mail {
  color: var(--red-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-mail:hover { text-decoration: underline; }

.footer {
  --glow-shift-x: 0px;
  --glow-shift-y: 0px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% calc(0% + var(--glow-shift-y)), rgba(225, 29, 37, 0.06) 0%, rgba(225, 29, 37, 0) 42%),
    var(--bg-raise);
  padding-top: 4rem;
}

.scroll-glow-footer {
  top: -13rem;
  left: -10rem;
  width: clamp(38rem, 72vw, 64rem);
  height: clamp(24rem, 40vw, 34rem);
  background: radial-gradient(ellipse at center, rgba(225, 29, 37, 0.24) 0%, rgba(155, 16, 21, 0.1) 40%, rgba(155, 16, 21, 0) 72%);
  transform: translate3d(var(--glow-shift-x), var(--glow-shift-y), 0);
}

.footer-top,
.footer-divider,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--red) 0%,
    var(--red-dark) 14%,
    rgba(199, 203, 210, 0.35) 40%,
    rgba(199, 203, 210, 0.15) 60%,
    rgba(255, 255, 255, 0) 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.2rem;
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }

.footer-logo {
  width: 118px;
  margin-bottom: 1.3rem;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(240, 48, 56, 0.18));
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 1.5rem;
}

.footer-phones { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phones svg { width: 1rem; height: 1rem; color: var(--red-bright); }

.footer-phones a:hover { color: #fff; }

.footer-social { margin-top: 1.6rem; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(240, 48, 56, 0.5);
  background: rgba(240, 48, 56, 0.08);
}

.footer-social svg { width: 1.1rem; height: 1.1rem; color: var(--red-bright); }

.footer-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--red);
}

.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover { color: #fff; transform: translateX(3px); }

.footer-address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.footer-address strong {
  display: block;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer-mail {
  display: inline-block;
  max-width: 100%;
  margin-top: 0.5rem;
  color: var(--red-bright);
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: none;
  font-weight: 500;
}

.footer-mail:hover { text-decoration: underline; }

.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-hours > span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--silver);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}

.footer-hours > span > span:first-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-divider {
  height: 1px;
  background: var(--line);
  max-width: var(--container);
  margin-inline: auto;
}

.footer-bottom {
  padding-block: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: #fff; }

.footer-legal span { color: rgba(255, 255, 255, 0.25); }

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(160, 162, 169, 0.68);
  font-size: 0.72rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-credit::before { display: none; }

.footer-credit::after {
  content: "\2197";
  color: rgba(199, 203, 210, 0.48);
  font-size: 0.68rem;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-credit strong {
  color: rgba(237, 238, 240, 0.72);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 0.2s ease;
}

.footer-credit strong::after { display: none; }

.footer-credit:is(:hover, :focus-visible) {
  background: transparent;
  color: rgba(237, 238, 240, 0.88);
}

.footer-credit:is(:hover, :focus-visible)::after {
  color: rgba(237, 238, 240, 0.82);
  transform: translate(1px, -1px);
}

.footer-credit:is(:hover, :focus-visible) strong {
  color: #fff;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1240px) {
  .topbar .container { padding-inline: 1.25rem; }
  .topbar-inner { gap: 1rem; }
  .topbar-cta .btn-sm { display: none; }
}

@media (min-width: 1025px) and (max-width: 1600px) {
  .brand-sub { display: none; }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .brand-text { display: none; }
}

@media (max-width: 1024px) {
  .showcase { grid-template-columns: 1fr; gap: 1.6rem; }
  .showcase-stage { min-height: 320px; order: -1; }
  .spec-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:last-child { grid-column: 1 / -1; }
  .why-grid, .b2b-grid { grid-template-columns: 1fr; }
  .b2b-media { order: -1; max-width: 620px; }
  .why-media { max-width: 620px; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 0.5rem; }
  .footer-tagline { max-width: 46ch; }
}

@media (max-width: 1024px) {
  body.menu-open { overflow: hidden; }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(5, 5, 7, 0.68);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    background: rgba(15, 15, 18, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.1rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid var(--line);
    border-block: 0;
    border-right: 0;
    box-shadow: -20px 0 50px -28px rgba(0, 0, 0, 0.95);
    clip-path: none;
    margin-inline: 0;
    z-index: 90;
  }

  .nav.open { transform: translateX(0); }

  .nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    clip-path: none;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.35;
    white-space: normal;
  }

  .nav a::after { width: 2rem; }

  .burger { display: flex; }

  .topbar-cta .btn-sm { display: none; }

  .brand-logo { height: 46px; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  .stat { padding: 1.8rem 1rem; }

  .band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand .brand-sub { display: none; }
  .brand-logo { height: 42px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat::before { top: 0; left: 15%; width: 70%; height: 1px; }
  .showcase-item { grid-template-columns: auto 1fr; gap: 1rem; padding: 1.1rem 1.15rem; }
  .showcase-arrow { display: none; }
  .showcase-desc { max-height: none; opacity: 1; margin-top: 0.4rem; }
  .showcase-num { font-size: 1.6rem; }
  .stage-badge { font-size: 2.6rem; }
  .steps { grid-template-columns: 1fr; }
  .check-cols { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .contact-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-meta { flex-wrap: wrap; row-gap: 0.85rem; }
  .hero { padding-top: 7.5rem; }
  .hero-actions .btn { width: 100%; }
  .band-inner .btn-red,
  .b2b-copy .btn-red { width: 100%; white-space: normal; }
  .plates-grid .plate-lg { width: 100%; }
  .plate-lg .plate-txt { width: 100%; justify-content: center; }
}

@media (max-width: 440px) {
  .footer-bottom-meta { flex-direction: column; align-items: flex-start; }
  .footer-credit { margin-top: 0.1rem; }
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(64vh, 640px);
  padding-block: 9.5rem 3.75rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.95) 0%, rgba(11, 11, 13, 0.78) 44%, rgba(11, 11, 13, 0.4) 78%, rgba(11, 11, 13, 0.6) 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0) 32%, rgba(11, 11, 13, 0.92) 95%, var(--bg) 100%),
    url("/static/img/warsztat.jpg") center 32% / cover no-repeat;
}

.js:not(.reduce-motion) .page-hero-bg {
  animation: hero-background-in 1600ms var(--motion-ease-out) both;
}

.page-hero-bg--transport {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.95) 0%, rgba(11, 11, 13, 0.72) 42%, rgba(11, 11, 13, 0.26) 74%, rgba(11, 11, 13, 0.5) 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, rgba(11, 11, 13, 0) 34%, rgba(11, 11, 13, 0.92) 95%, var(--bg) 100%),
    url("/static/img/laweta-noc.jpg") center 60% / cover no-repeat;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero-content { max-width: 760px; }

.page-hero-content .plate { margin-bottom: 1.5rem; }

.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }

.page-hero-lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--silver);
  max-width: 62ch;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.crumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--red-bright); }

.lead-block { max-width: 940px; position: relative; padding-left: clamp(1.2rem, 3vw, 2rem); }

.lead-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 60%, rgba(155, 16, 21, 0) 100%);
}

.lead-block .lead-p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}

.lead-block p + p { margin-top: 1.15rem; }

.lead-block p:not(.lead-p) { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 37, 0.35);
  background: var(--card-hover);
}

.service-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(225, 29, 37, 0.09);
  border: 1px solid rgba(225, 29, 37, 0.22);
  display: grid;
  place-items: center;
  color: var(--red-bright);
}

.service-ico svg { width: 22px; height: 22px; }

.service-card .label {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--silver);
  line-height: 1.3;
}

.section-note {
  margin-top: 2.2rem;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.feature + .feature { margin-top: clamp(3.5rem, 8vw, 6rem); }

.feature.reverse .feature-media { order: 2; }

.feature-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.feature-media img { width: 100%; height: 100%; object-fit: cover; }

.feature-media figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.3rem 1rem;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0), rgba(11, 11, 13, 0.88));
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.feature-body .plate { margin-bottom: 1.1rem; }
.feature-body h2 { margin-bottom: 0.9rem; }
.feature-body > p { color: var(--muted); margin-bottom: 1.4rem; }
.feature-body > p strong { color: var(--silver); }

.feature-body .feature-foot {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature.reverse .feature-media { order: 0; }
  .feature-media { order: -1; aspect-ratio: 16 / 10; max-width: 640px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .page-hero { padding-top: 8rem; min-height: 0; }
  .page-hero-actions .btn { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .lead-block { padding-left: 1rem; }
}
