﻿:root {
  --ink: #17211f;
  --muted: #5e6964;
  --line: #d8ddd6;
  --paper: #f6f4ee;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4d48;
  --copper: #b45a35;
  --amber: #d79a3b;
  --steel: #5d7480;
  --shadow: 0 18px 55px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-image img {
  display: block;
  width: clamp(220px, 24vw, 320px);
  height: auto;
}

.service-brand-logo .brand-mark {
  width: 42px;
  height: 42px;
  background: transparent;
}

.service-brand-logo .brand-mark img {
  display: block;
  width: 42px;
  height: 42px;
}

.service-brand-logo strong {
  color: #9a5f38;
}

.service-brand-logo small {
  color: #6b7370;
  font-size: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-dark), var(--copper));
}

.brand-mark.globe-mark {
  color: #2c4b46;
  background: transparent;
}

.globe-mark svg {
  display: block;
  width: 42px;
  height: 42px;
}

.globe-mark circle,
.globe-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--teal);
}

.header-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(15, 25, 23, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: min(78vw, 360px);
  background: #fff;
  border-left: 1px solid var(--line);
  transform: translateX(104%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-head strong {
  font-size: 14px;
}

.mobile-menu-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-links {
  display: grid;
  align-content: start;
  padding: 6px 0;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #ecefea;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-links a.mobile-home {
  color: var(--teal-dark);
}

.mobile-menu-links a.mobile-primary {
  color: #fff;
  background: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu-panel {
  transform: translateX(0);
}

.header-home-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-home-link:hover {
  color: var(--copper);
}

.hero {
  position: relative;
  min-height: calc(100svh - 71px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  overflow: hidden;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 4vw, 56px) clamp(32px, 5vw, 64px);
  color: #f8f5ec;
  background:
    linear-gradient(90deg, rgba(13, 28, 25, 0.92), rgba(16, 51, 45, 0.74) 44%, rgba(30, 63, 68, 0.48)),
    radial-gradient(circle at 78% 22%, rgba(215, 154, 59, 0.32), transparent 26%),
    linear-gradient(135deg, #14231f, #22413d 58%, #79462f);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18vh;
  background: linear-gradient(0deg, rgba(246, 244, 238, 0.95), transparent);
  pointer-events: none;
}

.route-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}






.business-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  margin: 0 0 12px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.business-tag.import {
  color: #fff !important;
  background: #0b4d48;
}

.business-tag.service {
  color: #fff !important;
  background: #8f472b;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero 



.eyebrow {
  color: #f0b969;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(28px, 3.2vw, 39px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(28px, 3.2vw, 39px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-lead {
  max-width: 780px;
  color: rgba(248, 245, 236, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--teal);
}

.btn.secondary {
  color: var(--ink);
  background: #f0b969;
}

.btn.ghost {
  color: #f8f5ec;
  border-color: rgba(248, 245, 236, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  display: grid;
  gap: 1px;
  margin-bottom: 8px;
  border: 1px solid rgba(248, 245, 236, 0.24);
  background: rgba(248, 245, 236, 0.16);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 22px;
  background: rgba(16, 35, 31, 0.52);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: #f0b969;
  font-size: 24px;
  font-weight: 900;
}

.hero-panel p {
  margin: 0;
  color: rgba(248, 245, 236, 0.84);
}

.section {
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading.wide {
  max-width: 980px;
}

.intro-band {
  background: #fff;
}

.value-grid,
.category-grid,
.case-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article,
.category-card,
.case-grid article,
.catalog-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.value-grid p,
.category-card p,
.case-grid p,
.catalog-card p,
.split-section p,
.form-section p,
.site-footer p,
.site-footer span {
  color: var(--muted);
}

.line-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal);
  font-weight: 900;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.category-card.accent {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.category-card.accent p {
  color: rgba(255, 255, 255, 0.76);
}

.category-card a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.category-card a {
  margin-top: auto;
}

.category-card.accent a {
  color: #f0b969;
}

.process-section {
  background: #e9eee8;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 72px 18px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--copper);
  font-size: 26px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.part-search {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(180, 90, 53, 0.10)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-bar {
  padding: 16px;
  color: var(--muted);
  background: #f3f1ea;
  border: 1px solid var(--line);
}

.part-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: baseline;
  margin-top: 12px;
  padding: 18px;
  background: #fff;
  border-left: 4px solid var(--teal);
}

.part-result strong {
  font-size: 22px;
}

.part-result p {
  grid-column: 1 / -1;
  margin: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.catalog-toolbar label {
  display: grid;
  gap: 8px;
  width: min(100%, 420px);
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  background: #fff;
}

textarea {
  resize: vertical;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-card span {
  color: var(--copper);
  font-weight: 900;
}

.catalog-card button {
  margin-top: auto;
}

.gpa-section {
  background: #fff;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.brand-row span,
.clients span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--ink);
}

.metric-board div {
  min-height: 150px;
  padding: 24px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-board div:last-child {
  border-right: 0;
}

.metric-board strong {
  display: block;
  margin-bottom: 14px;
  color: #f0b969;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
}

.metric-board span {
  color: rgba(255, 255, 255, 0.74);
}

.gpa-catalog-section {
  background: #f8f7f2;
}

.gpa-catalog-section .section-heading p:last-child {
  max-width: 900px;
  color: var(--muted);
}

.catalog-branch {
  display: grid;
  gap: 18px;
}

.branch-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
  padding: 18px 22px;
  border-left: 5px solid var(--copper);
  background: #fff;
}

.branch-title span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.branch-title strong {
  font-size: 24px;
}

.gpa-product-grid {
  display: grid;
  gap: 22px;
}

.gpa-product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  background: #fff;
}

.product-gallery {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-thumbs button {
  width: 70px;
  height: 70px;
  padding: 3px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.product-thumbs button.active {
  border-color: var(--teal);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(180, 90, 53, 0.08)),
    #fff;
}

.product-info h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(18px, 2.1vw, 29px);
  line-height: 1.12;
}

.product-badge {
  justify-self: start;
  min-height: 30px;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: #63c91f;
}

.product-rating {
  margin: 0;
  color: #efbd2f;
  font-size: 24px;
  font-weight: 900;
}

.product-rating strong {
  margin-left: 12px;
  color: var(--ink);
  font-size: 16px;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 10px 0 4px;
}

.product-specs div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.product-specs dt {
  color: var(--ink);
  font-weight: 800;
}

.product-specs dd {
  margin: 0;
  color: var(--ink);
}

.product-specs .price {
  color: #b83d37;
  font-size: 26px;
  font-weight: 900;
}

.product-description {
  display: grid;
  gap: 12px;
  max-width: 760px;
  color: var(--muted);
}

.product-description p,
.product-description ul {
  margin: 0;
}

.product-description ul {
  padding-left: 18px;
}

.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  background: #e9eee8;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.full {
  grid-column: 1 / -1;
}

.request-form .btn {
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 44px;
  padding: 42px clamp(18px, 4vw, 56px);
  color: #f8f5ec;
  background: var(--ink);
}

.footer-brands {
  display: grid;
  gap: 16px;
}

.footer-brand-card {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(248, 245, 236, 0.16);
}

.footer-brand-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-brand .brand-mark {
  color: #fff;
  background: linear-gradient(135deg, #0b5f58, #9a6b22);
}

.footer-brand-card.service-line .brand-mark {
  color: #fff;
  background: linear-gradient(135deg, #8f472b, #263633);
}

.footer-brand .brand-mark.globe-mark,
.footer-brand-card.service-line .brand-mark.service-gear-mark {
  background: transparent;
}

.footer-brand .brand-mark.globe-mark {
  color: #f8f5ec;
}

.footer-brand .brand-mark.service-gear-mark img {
  display: block;
  width: 42px;
  height: 42px;
}

.footer-brand strong {
  color: #fff;
  font-size: 18px;
}

.footer-brand small {
  color: rgba(248, 245, 236, 0.78);
  font-size: 13px;
}

.site-footer small,
.site-footer p,
.site-footer span {
  color: rgba(248, 245, 236, 0.72);
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-card {
  display: grid;
  gap: 9px;
  padding: 0;
  background: transparent;
}

.contact-actions {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
}

.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.telegram-link:hover .phone {
  color: rgba(248, 245, 236, 0.86);
}

.telegram-link:hover .tg-icon {
  transform: translateY(-1px);
  background: #229ed9;
}

.whatsapp-link {
  display: inline-grid;
  place-items: center;
}

.whatsapp-link:hover .wa-icon {
  transform: translateY(-1px);
  background: #1fa855;
}

.phone {
  color: rgba(248, 245, 236, 0.72);
  font-weight: 400;
  white-space: nowrap;
}

.tg-icon {
  flex: 0 0 auto;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #2aabee;
  transition: transform 0.18s ease, background 0.18s ease;
}

.tg-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: #fff;
}

.wa-icon {
  flex: 0 0 auto;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  transition: transform 0.18s ease, background 0.18s ease;
}

.wa-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: #fff;
}

.site-footer b {
  color: #f8f5ec;
}

.site-footer .location {
  padding-top: 8px;
  border-top: 1px solid rgba(248, 245, 236, 0.14);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .main-nav {
    display: none;
  }

  .header-home-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .split-section,
  .form-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .category-grid,
  .case-grid,
  .catalog-grid,
  .gpa-product-card,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .metric-board div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .metric-board {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .route-canvas {
    opacity: 0.22;
  }

  h1 {
    font-size: 30px;
    line-height: 1;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-panel div {
    padding: 15px;
  }

  .hero-panel span {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .hero-panel p {
    font-size: 13px;
  }

  



.eyebrow {
    font-size: 11px;
  }

  .hero-actions,
  .form-actions,
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .value-grid,
  .category-grid,
  .case-grid,
  .catalog-grid,
  .gpa-product-card,
  .process-list,
  .request-form {
    grid-template-columns: 1fr;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .process-list li {
    min-height: 170px;
  }
}





.page-hero {
  background: #fff;
  padding-top: clamp(18px, 2.5vw, 28px);
  padding-bottom: clamp(26px, 3.5vw, 40px);
  display: grid;
  align-content: start;
  gap: 12px;
}

.page-hero h1,
.product-detail-page h1 {
  max-width: 980px;
  color: var(--ink);
}

.page-hero h1 {
  min-height: 2.2em;
}

.product-detail-page h1 {
  font-size: clamp(20px, 2.24vw, 27px);
}

.page-hero .hero-lead {
  max-width: 980px;
  min-height: 4.5em;
  color: var(--muted);
}

.service-page-hero {
  min-height: clamp(420px, 52vw, 620px);
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 32%, rgba(255, 255, 255, 0.62) 54%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/hero/gpa-engine-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.service-page-hero .business-tag {
  display: none;
}

.service-page-hero .hero-lead {
  max-width: 640px;
  color: #44504c;
}

.catalog-page-hero {
  min-height: clamp(220px, 28vw, 320px);
}

.catalog-listing .product-main-image {
  aspect-ratio: 4 / 3;
}

.product-detail-card {
  align-items: start;
}

.product-detail-page .product-main-image {
  aspect-ratio: 4 / 3;
}

.company-description {
  background: #fff;
}

.service-company-description {
  padding-bottom: clamp(10px, 1.6vw, 20px);
}

.service-company-description + .gpa-section {
  padding-top: clamp(10px, 1.6vw, 20px);
}

.company-copy {
  max-width: 980px;
  display: grid;
  gap: 12px;
}

.company-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
