.trade-page .page-hero {
  min-height: min(70vh, 700px);
}

.trade-page .page-hero-bg--trade {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.97) 0%, rgba(11, 11, 13, 0.82) 42%, rgba(11, 11, 13, 0.34) 74%, rgba(11, 11, 13, 0.58) 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, rgba(11, 11, 13, 0) 32%, rgba(11, 11, 13, 0.94) 96%, var(--bg) 100%),
    url("/static/img/ciagnik-import.jpg") center 58% / cover no-repeat;
}

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

.trade-page .page-hero h1 {
  max-width: 14ch;
  text-wrap: balance;
}

.trade-page .page-hero-lead { max-width: 68ch; }

.trade-section-head {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.trade-section-head h2 {
  max-width: 22ch;
  text-wrap: balance;
}

.trade-section-head p,
.trade-copy > p {
  color: var(--muted);
}

.trade-section-head p { margin-top: 1.1rem; }

.trade-copy > p + p { margin-top: 1rem; }

.trade-copy > h2 {
  margin-bottom: 1.3rem;
  text-wrap: balance;
}

.trade-copy > h2 + p { color: var(--silver); }

.trade-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.trade-grid-copy {
  position: sticky;
  top: 8rem;
}

.trade-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trade-list li {
  position: relative;
  min-height: 3.65rem;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem 0.85rem 2rem;
  color: var(--silver);
  background: rgba(23, 24, 28, 0.78);
  border: 1px solid var(--line);
  border-radius: 10px;
  line-height: 1.4;
  font-size: 0.94rem;
}

.trade-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(225, 29, 37, 0.1);
}

.trade-list-note {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.trade-categories {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.trade-categories li {
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  color: var(--silver);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.trade-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

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

.trade-media {
  position: relative;
  min-height: 430px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.trade-question,
.trade-emphasis {
  color: var(--text) !important;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
}

.trade-question {
  padding-left: 1rem;
  border-left: 2px solid var(--red);
  margin-bottom: 1.4rem;
}

.trade-emphasis {
  margin-block: 1.15rem !important;
  padding: 1rem 1.15rem;
  background: rgba(225, 29, 37, 0.08);
  border: 1px solid rgba(225, 29, 37, 0.2);
  border-radius: 10px;
}

.trade-process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trade-step {
  position: relative;
  min-height: 210px;
  padding: 1.55rem 1.4rem 1.65rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trade-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
}

.trade-step h3 {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
}

.trade-step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.trade-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.trade-trust-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.trade-trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  color: var(--silver);
  background: rgba(23, 24, 28, 0.72);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.trade-check {
  color: var(--red-bright);
  font-weight: 700;
}

.trade-contact-card .contact-head {
  max-width: 900px;
}

.trade-contact-card .contact-head p {
  max-width: 78ch;
}

.trade-company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.trade-company-name {
  display: block;
  color: #17191d;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.trade-company-sub {
  display: block;
  margin-top: 0.35rem;
  color: #4a4d54;
  font-weight: 600;
}

.trade-company-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.trade-company-phones a {
  color: #17191d;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s ease;
}

.trade-company-phones a:hover { color: var(--red); }

@media (max-width: 1024px) {
  .trade-grid,
  .trade-feature,
  .trade-trust {
    grid-template-columns: 1fr;
  }

  .trade-grid-copy { position: static; }

  .trade-feature.reverse .trade-media { order: 0; }

  .trade-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-width: 720px;
  }

  .trade-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .trade-page .page-hero h1 { max-width: 12ch; }
  .trade-list,
  .trade-categories,
  .trade-process,
  .trade-company {
    grid-template-columns: 1fr;
  }

  .trade-categories li { justify-content: flex-start; text-align: left; }
  .trade-step { min-height: 0; }
  .trade-company-phones { padding-top: 0.5rem; }
}
