:root {
  --ink: #17202a;
  --muted: #5f6b7a;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #faf6f4;
  --brand: #df2f27;
  --brand-dark: #9f1715;
  --accent: #f2b544;
  --steel: #304052;
  --shadow: 0 18px 45px rgba(159, 23, 21, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: min(210px, 50vw);
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(159, 23, 21, 0.92), rgba(23, 32, 42, 0.56)),
    url("../images/hero/hero-prestige.jpg") center / cover;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head-single {
  grid-template-columns: 1fr;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
}

.stat h3 {
  margin: 0;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.2;
}

.stat p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
}

.company-overview-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 47, 39, 0.07), transparent 28%),
    linear-gradient(180deg, #fff, #fbf8f6);
  padding: 78px 0 70px;
}

.competence-head {
  max-width: 980px;
  margin: 0 auto 50px;
  text-align: center;
}

.competence-head .eyebrow {
  color: var(--steel);
}

.competence-head h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.competence-head > p:last-child {
  max-width: 860px;
  margin: 22px auto 0;
  color: var(--steel);
  font-size: 19px;
  line-height: 1.75;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}

.competence-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  text-align: center;
  transition: transform 0.25s ease;
}

.competence-icon {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: #a62320;
  transition: color 0.25s ease, transform 0.25s ease;
}

.competence-icon svg {
  display: block;
  width: 92px;
  max-width: 100%;
  height: 92px;
  max-height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
}

.competence-card h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  min-height: 84px;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  transition: color 0.25s ease;
}

.competence-card p {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 24px auto 0;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.72;
  transition: color 0.25s ease;
}

.competence-link {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 230px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--brand-dark);
  opacity: 0;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(14px);
}

.competence-card:hover,
.competence-card:focus-within {
  transform: translateY(-3px);
}

.competence-card:hover .competence-icon,
.competence-card:focus-within .competence-icon {
  color: var(--brand-dark);
  transform: translateY(-2px);
}

.competence-card:hover h3,
.competence-card:focus-within h3 {
  color: #a62320;
}

.competence-card:hover .competence-link,
.competence-card:focus-within .competence-link {
  color: #fff;
  opacity: 1;
  transform: translateY(0);
}

.competence-link:hover {
  background: var(--brand);
}

.partners-section {
  background:
    linear-gradient(135deg, rgba(159, 23, 21, 0.06), rgba(242, 181, 68, 0.1)),
    var(--paper);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.partner-card {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159, 23, 21, 0.18);
  border-radius: var(--radius);
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
}

.partner-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-card .partner-logo-uz {
  width: 215px;
}

.partner-card .partner-logo-gtsou {
  width: 285px;
}

.partner-card .partner-logo-ukrposhta {
  width: 255px;
}

.partner-card .partner-logo-centrenergo {
  width: 108px;
}

.partner-card .partner-logo-uspa {
  width: 245px;
}

.partner-card .partner-logo-kyivpastrans {
  width: 240px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.06);
}

.category-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.category-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.category-card h3 {
  min-height: 68px;
  margin-bottom: 10px;
}

.category-card p,
.text-muted {
  color: var(--muted);
}

.category-card p {
  flex: 1;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 16px;
  width: 150px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(224, 49, 38, 0.24);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(224, 49, 38, 0.08), rgba(224, 49, 38, 0.04));
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.card-link::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.category-card:hover .card-link {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.category-card:hover .card-link::after {
  transform: translateX(2px);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.product-intro-block {
  display: grid;
  grid-column: 1 / -1;
  gap: 0;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  object-fit: contain;
  box-shadow: 0 12px 34px rgba(23, 32, 42, 0.08);
}

.product-gallery-main {
  aspect-ratio: 1 / 1;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-gallery-grid img {
  aspect-ratio: 1 / 1;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
}

.list li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "•";
  font-weight: 900;
}

.list + .actions {
  margin-top: 26px;
}

.split .product-gallery-main,
.split .product-gallery-grid img {
  aspect-ratio: 1 / 1;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(159, 23, 21, 0.92), rgba(48, 64, 82, 0.66)),
    var(--page-image, url("../images/hero/hero-prestige.jpg")) center / cover;
}

.page-hero .section-inner {
  padding: 96px 0 76px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(159, 23, 21, 0.94), rgba(23, 32, 42, 0.52)),
    url("../images/hero/hero-prestige.jpg") center / cover;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.38fr);
  gap: 42px;
  align-items: center;
}

.about-hero h1 {
  max-width: 820px;
  font-size: clamp(56px, 8vw, 96px);
}

.about-hero .actions {
  margin-top: 30px;
}

.about-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(23, 32, 42, 0.64);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.about-hero-card span,
.proof-card span,
.workflow-step span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.about-hero-card p {
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.about-hero-card dl,
.details-list {
  margin: 0;
}

.about-hero-card dl {
  display: grid;
  gap: 12px;
}

.about-hero-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

.about-hero-card dt,
.about-hero-card dd {
  margin: 0;
}

.about-hero-card dt {
  color: rgba(255, 255, 255, 0.58);
}

.about-hero-card dd {
  color: #fff;
  font-weight: 800;
  text-align: right;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.about-intro-copy {
  max-width: 760px;
}

.lead {
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 800;
  line-height: 1.32;
}

.about-intro-panel {
  border: 1px solid rgba(159, 23, 21, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(159, 23, 21, 0.07), rgba(242, 181, 68, 0.08)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.08);
}

.about-simple {
  max-width: 920px;
}

.about-simple h2 {
  margin-top: 44px;
  font-size: clamp(28px, 3vw, 38px);
}

.about-simple h2:first-child {
  margin-top: 0;
}

.about-simple p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.about-simple .list {
  max-width: 820px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.05);
}

.proof-card-strong {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(159, 23, 21, 0.96), rgba(48, 64, 82, 0.96)),
    var(--brand-dark);
}

.proof-card strong {
  display: block;
  margin: 16px 0 auto;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.proof-card-strong strong {
  color: #fff;
}

.proof-card p {
  margin: 24px 0 0;
  color: var(--muted);
}

.proof-card-strong p {
  color: rgba(255, 255, 255, 0.82);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.workflow-step {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.workflow-step::after {
  position: absolute;
  top: -38px;
  right: -28px;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: rgba(223, 47, 39, 0.08);
  content: "";
}

.workflow-step h3 {
  margin-top: 54px;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-media-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 32, 42, 0.97), rgba(159, 23, 21, 0.88)),
    var(--ink);
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
}

.about-media-grid .text-muted {
  color: rgba(255, 255, 255, 0.78);
}

.media-collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.media-collage img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.media-collage-large {
  grid-row: span 2;
}

.about-details {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.details-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
}

.details-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 22px;
}

.details-list div + div {
  border-top: 1px solid var(--line);
}

.details-list dt,
.details-list dd {
  margin: 0;
}

.details-list dt {
  color: var(--muted);
  font-weight: 800;
}

.details-list dd {
  color: var(--ink);
  font-weight: 700;
}

.details-list a {
  color: var(--brand);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.category-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: start;
  border: 1px solid rgba(159, 23, 21, 0.14);
  border-radius: 22px;
  margin-bottom: 28px;
  padding: 32px;
  background:
    radial-gradient(circle at 0 0, rgba(223, 47, 39, 0.1), transparent 34%),
    #fff;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.07);
}

.category-story h2 {
  max-width: 560px;
}

.category-story p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.category-story p + p {
  margin-top: 16px;
}

.product-category-page {
  background: #fff;
}

.product-category-page .site-header {
  box-shadow: none;
}

.product-category-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #6f1f1d;
}

.product-category-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #6f1f1d 0%, rgba(111, 31, 29, 0.98) 46%, rgba(111, 31, 29, 0.66) 100%);
  content: "";
}

.product-category-hero::after {
  position: absolute;
  z-index: -2;
  top: -16%;
  right: -4%;
  width: 58%;
  height: 132%;
  background-image: var(--page-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  filter: grayscale(0.15) contrast(0.92);
  opacity: 0.34;
}

.product-category-hero .section-inner {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 104px 0 68px;
}

.product-category-hero .eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.12em;
}

.product-category-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.product-category-hero p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.65;
}

.product-category-content {
  padding: 86px 0 92px;
}

.product-category-page .category-story {
  display: block;
  max-width: 920px;
  margin: 0 0 64px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.product-category-page .category-story > div:first-child {
  margin-bottom: 28px;
}

.product-category-page .category-story .eyebrow {
  color: var(--brand-dark);
}

.product-category-page .category-story h2,
.product-category-page .product-layout > div h2,
.product-category-page .section-head h2 {
  max-width: 800px;
  color: var(--brand-dark);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.product-category-page .category-story p,
.product-category-page .product-layout > div > p,
.product-category-page .section-head > p {
  max-width: 860px;
  color: #42505d;
  font-size: 18px;
  line-height: 1.75;
}

.product-category-page .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  max-width: 980px;
}

.product-category-page .feature {
  min-height: 156px;
  border: 0;
  border-top: 2px solid rgba(159, 23, 21, 0.28);
  border-radius: 0;
  padding: 24px 0 30px;
  background: transparent;
}

.product-category-page .feature h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.product-category-page .feature p {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
}

.product-category-page .product-layout {
  align-items: start;
  gap: 54px;
}

.product-category-page .product-intro-block {
  margin-bottom: 10px;
}

.product-category-page .product-gallery {
  gap: 10px;
}

.product-category-page .product-gallery img {
  border-radius: 0;
  box-shadow: none;
}

.product-category-page .product-gallery-main {
  border: 1px solid rgba(159, 23, 21, 0.14);
  background: #f7f4f2;
}

.product-category-page .product-gallery-grid img {
  border: 1px solid rgba(159, 23, 21, 0.12);
  background: #f7f4f2;
}

.product-category-page .list li::before {
  color: var(--brand-dark);
}

.product-category-details {
  border-top: 1px solid #e8dfdc;
  background: #f6f2f0;
}

.product-category-page .section-head {
  align-items: end;
  margin-bottom: 48px;
}

.category-navigation {
  padding: 72px 0 84px;
  color: #fff;
  background: #6f1f1d;
}

.category-navigation-label {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.category-switcher a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.category-switcher a:hover {
  border-color: #fff;
  color: var(--brand-dark);
  background: #fff;
}

.category-switcher a.is-current {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.09);
}

.contact-band {
  color: #fff;
  background: linear-gradient(90deg, var(--brand-dark), #2f1a1a);
}

.contact-band .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-person-section {
  background:
    linear-gradient(135deg, rgba(159, 23, 21, 0.04), rgba(242, 181, 68, 0.08)),
    var(--paper);
}

.contact-person-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.contact-person-copy {
  max-width: 520px;
}

.contact-person-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid rgba(159, 23, 21, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
}

.contact-person-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.contact-person-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.contact-person-role {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-person-info h3 {
  font-size: clamp(34px, 4vw, 52px);
}

.contact-person-info dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-person-info dt,
.contact-person-info dd {
  margin: 0;
}

.contact-person-info dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-person-info dd {
  margin-top: 4px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
}

.contact-person-info a {
  color: inherit;
}

.contact-person-info a:hover {
  color: var(--brand);
}

.site-footer {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(95, 80, 72, 0.96), rgba(67, 58, 53, 0.98)),
    radial-gradient(circle at top right, rgba(223, 47, 39, 0.3), transparent 34%);
  padding: 52px 0 24px;
}

.footer-scanios {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 72px;
  align-items: start;
}

.footer-info {
  max-width: 760px;
}

.footer-info h2 {
  margin: 0 0 26px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.footer-info p,
.footer-info a,
.footer-info strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.65;
}

.footer-info p {
  margin: 0 0 12px;
}

.footer-company-line,
.footer-contact-block strong {
  color: #fff;
  font-weight: 800;
}

.footer-contact-block {
  display: grid;
  gap: 6px;
  margin: 36px 0 30px;
}

.footer-contact-block a {
  display: block;
  width: fit-content;
}

.footer-description {
  max-width: 740px;
  margin-top: 48px;
}

.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
}

.footer-mini-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.25;
}

.footer-info a:hover,
.footer-mini-links a:hover {
  color: #fff;
}

.footer-form {
  padding-top: 4px;
}

.footer-form-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-form h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.06;
}

.footer-form p,
.footer-form small {
  color: rgba(255, 255, 255, 0.76);
}

.footer-form p {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.55;
}

.footer-field {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.footer-field span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  padding: 6px 0 9px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  background: transparent;
  outline: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #fff;
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-form textarea {
  min-height: 78px;
  resize: vertical;
}

.footer-form-actions {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.footer-submit {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 24px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  background: var(--brand);
  cursor: pointer;
}

.footer-submit:hover {
  background: var(--brand-dark);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 46px;
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.image-credits {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .section-head,
  .split,
  .product-layout,
  .contact-band .section-inner,
  .contact-person-layout,
  .about-hero-grid,
  .about-intro,
  .about-media-grid,
  .about-details,
  .category-story {
    grid-template-columns: 1fr;
  }

  .stats,
  .competence-grid,
  .partner-grid,
  .category-grid,
  .feature-grid,
  .proof-grid,
  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-scanios {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-person-layout {
    gap: 28px;
  }

  .footer-info p,
  .footer-info a,
  .footer-info strong {
    font-size: 20px;
  }

  .product-category-hero::after {
    right: -14%;
    width: 72%;
    opacity: 0.24;
  }

  .product-category-hero .section-inner {
    min-height: 380px;
  }

  .product-category-page .feature-grid,
  .category-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
    background-position: 100% center;
  }

  .about-hero {
    background-position: 100% center;
  }

  .hero-copy {
    font-size: 18px;
  }

  .stats,
  .competence-grid,
  .partner-grid,
  .category-grid,
  .feature-grid,
  .proof-grid,
  .workflow,
  .media-collage {
    grid-template-columns: 1fr;
  }

  .about-hero-card dl div,
  .details-list div {
    grid-template-columns: 1fr;
  }

  .about-hero-card dl div {
    display: grid;
  }

  .about-hero-card dd {
    text-align: left;
  }

  .workflow-step,
  .proof-card {
    min-height: 0;
  }

  .competence-card {
    min-height: 0;
  }

  .competence-card h3 {
    min-height: 0;
  }

  .competence-link {
    margin-top: 24px;
    opacity: 1;
    transform: none;
  }

  .category-card h3,
  .category-card p {
    height: auto;
    flex: initial;
    min-height: 0;
  }

  .product-category-hero::after {
    top: 12%;
    right: -32%;
    width: 104%;
    height: 88%;
    opacity: 0.16;
  }

  .product-category-hero .section-inner {
    min-height: 430px;
    padding: 92px 0 52px;
  }

  .product-category-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1;
  }

  .product-category-hero p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }

  .product-category-content {
    padding: 64px 0 70px;
  }

  .product-category-page .category-story {
    margin-bottom: 44px;
  }

  .product-category-page .feature-grid,
  .category-switcher {
    grid-template-columns: 1fr;
  }

  .product-category-page .feature {
    min-height: 0;
  }

  .category-navigation {
    padding: 56px 0 62px;
  }

  .footer-scanios {
    grid-template-columns: 1fr;
  }

  .contact-person-card {
    grid-template-columns: 1fr;
  }

  .contact-person-card img {
    min-height: 360px;
  }

  .contact-person-info {
    padding: 24px;
  }

  .category-story {
    padding: 24px;
  }

  .contact-person-info dd {
    font-size: 18px;
  }

  .footer-info h2 {
    font-size: 42px;
  }

  .footer-info p,
  .footer-info a,
  .footer-info strong {
    font-size: 18px;
  }

  .footer-form-row,
  .footer-form-actions {
    grid-template-columns: 1fr;
  }

  .footer-form p {
    font-size: 18px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.thanks-main {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 72px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 60, 45, 0.12), transparent 34%),
    #f8f4f1;
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(36px, 6vw, 64px);
  border-top: 4px solid var(--brand);
  background: #fff;
  box-shadow: 0 24px 70px rgba(48, 27, 24, 0.12);
}

.thanks-card h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 7vw, 72px);
}

.thanks-card p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
