﻿:root {
  --ink: #101914;
  --ink-2: #1c2c22;
  --deep: #203528;
  --deep-2: #2b4935;
  --deep-3: #34563e;
  --muted: #69746c;
  --line: rgba(16, 25, 20, 0.12);
  --paper: #fbfaf4;
  --soft: #f2f0e5;
  --green: #1d5d38;
  --green-2: #3f8d4e;
  --lime: #d9f25f;
  --gold: #c59b4a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 25, 20, 0.14);
  --hero-overlay: linear-gradient(90deg, rgba(8, 14, 10, 0.56) 0%, rgba(12, 24, 15, 0.52) 44%, rgba(12, 24, 15, 0.26) 100%);
  --hero-overlay-deep: linear-gradient(180deg, rgba(8, 14, 10, 0.9) 0%, rgba(24, 47, 31, 0.86) 56%, rgba(8, 14, 10, 0.92) 100%);
  --glass-fill: linear-gradient(145deg, rgba(217, 242, 95, 0.18), rgba(255, 255, 255, 0.06) 42%, rgba(197, 155, 74, 0.16)), rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --slide-underlay: #dfe9c8;
  --premium-glass:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 42%, rgba(217, 242, 95, 0.09)),
    rgba(9, 22, 14, 0.56);
  --premium-glass-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(217, 242, 95, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(223, 233, 200, 0.96), rgba(204, 224, 170, 0.92)),
    url("../img/bg-premium-art.svg") center/cover;
  font-family: Roboto, Arial, sans-serif;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(135deg, #e7efd3 0%, #d9e9be 58%, #cfe3ad 100%);
  border-bottom: 1px solid rgba(29, 93, 56, 0.14);
  box-shadow: 0 10px 28px rgba(16, 25, 20, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: 150px;
  height: auto;
  display: block;
}

.site-tagline {
  margin-right: auto;
  padding-left: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-tagline::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.site-nav details > summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav details[open] > summary {
  color: var(--green);
  background: rgba(29, 93, 56, 0.1);
}

.site-nav details {
  position: relative;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(29, 93, 56, 0.16);
  border-radius: 8px;
  background: #f4f7e8;
  box-shadow: var(--shadow);
}

.site-nav__dropdown a {
  width: 100%;
  justify-content: flex-start;
}

.pc-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  min-width: 0;
}

.pc-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  color: #fff;
  background:
    var(--hero-overlay),
    url("../img/hero-produce-warehouse.webp") center/cover;
}

.pc-hero > *,
.pc-section-soft > *,
.pc-benefit-section > *,
.pc-category-hero > *,
.pc-process-section > *,
.pc-signature-section > * {
  position: relative;
  z-index: 1;
}

.pc-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 46px;
  align-items: end;
  padding: 76px 0;
}

.pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #efffd1;
  font-size: 0.92rem;
  font-weight: 900;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.pc-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.pc-hero h1,
.pc-title {
  margin: 20px 0 18px;
  color: inherit;
  font-size: clamp(2.6rem, 5.3vw, 6.1rem);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

.pc-title-line {
  display: block;
}

.pc-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
  font-weight: 600;
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pc-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pc-btn:hover {
  transform: translateY(-2px);
}

.pc-btn-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(217, 242, 95, 0.28);
}

.pc-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.pc-glass {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px) saturate(1.04);
}

.pc-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pc-metric {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.14);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-metric::after {
  content: none;
}

.pc-metric strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 2.15rem;
  line-height: 1;
}

.pc-metric span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.35;
}

.pc-section {
  padding: 92px 0;
}

.pc-section-soft {
  position: relative;
  overflow: hidden;
  background:
    var(--hero-overlay),
    url("../img/assortment-produce-hero.webp") center/cover;
}

.pc-section-soft .pc-head h2,
.pc-section-soft .pc-head p,
.pc-section-soft .pc-lead {
  color: #fff;
}

.pc-section-soft .pc-head p,
.pc-section-soft .pc-lead {
  color: rgba(255, 255, 255, 0.78);
}

.pc-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.pc-head.center {
  display: block;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pc-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.pc-benefit-section .pc-kicker,
.pc-process-section .pc-kicker,
.pc-info-panel .pc-kicker,
.pc-signature-copy .pc-kicker {
  color: #e9ff7a;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.pc-head h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 3.5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 950;
}

.pc-head p,
.pc-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 600;
}

.pc-benefit-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    var(--hero-overlay),
    url("../img/benefit-warehouse-hero.webp") center/cover;
}

.pc-benefit-section .pc-head h2,
.pc-benefit-section .pc-head p {
  color: #fff;
}

.pc-benefit-section .pc-head p {
  color: rgba(255, 255, 255, 0.74);
}

.pc-benefit-head {
  margin-bottom: 42px;
}

.pc-benefit-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pc-benefit-visual {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.pc-benefit-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pc-benefit-showcase .pc-benefit-grid {
  grid-template-columns: 1fr;
}

.pc-benefit-card {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 42%, rgba(217, 242, 95, 0.09)),
    rgba(9, 22, 14, 0.56);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(217, 242, 95, 0.12);
  backdrop-filter: blur(22px) saturate(1.22);
}

.pc-benefit-showcase .pc-benefit-card {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.14);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-section-soft .pc-benefit-card {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 42%, rgba(217, 242, 95, 0.09)),
    rgba(9, 22, 14, 0.56);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(217, 242, 95, 0.12);
}

.pc-benefit-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 242, 95, 0.48), transparent);
}

.pc-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(217, 242, 95, 0.14), transparent 32%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%);
  opacity: 0.82;
  pointer-events: none;
}

.pc-benefit-showcase .pc-benefit-card::before {
  opacity: 0.32;
}

.pc-benefit-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.pc-benefit-top span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 950;
  box-shadow:
    0 0 0 1px rgba(217, 242, 95, 0.3),
    0 12px 28px rgba(217, 242, 95, 0.2);
}

.pc-benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: inherit;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.pc-benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.48;
  font-weight: 650;
}

.pc-section-soft .pc-benefit-card p {
  color: rgba(255, 255, 255, 0.74);
}

.pc-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pc-product-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background: #152318;
  box-shadow: 0 16px 44px rgba(16, 25, 20, 0.13);
}

.pc-product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.pc-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 25, 20, 0.02), rgba(16, 25, 20, 0.88));
}

.pc-product-card:hover img {
  transform: scale(1.06);
  opacity: 0.68;
}

.pc-product-body {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.pc-product-body strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.05;
}

.pc-product-body span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.pc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.pc-about-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.68) 0%, rgba(12, 24, 15, 0.58) 44%, rgba(12, 24, 15, 0.36) 100%),
    url("../img/about-top-vegetables-hero.webp") center/cover;
}

.pc-about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018) 54%, rgba(217, 242, 95, 0.05)),
    rgba(10, 21, 15, 0.28);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.62) 0%, rgba(12, 24, 15, 0.54) 44%, rgba(12, 24, 15, 0.28) 100%),
    url("../img/contacts-top-hero.webp") center/cover;
}

.pc-contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018) 54%, rgba(217, 242, 95, 0.05)),
    rgba(10, 21, 15, 0.26);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-review-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.62) 0%, rgba(12, 24, 15, 0.54) 44%, rgba(12, 24, 15, 0.28) 100%),
    url("../img/reviews-top-hero.webp") center/cover;
}

.pc-review-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018) 54%, rgba(217, 242, 95, 0.05)),
    rgba(10, 21, 15, 0.26);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-category-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.56) 0%, rgba(12, 24, 15, 0.52) 44%, rgba(12, 24, 15, 0.26) 100%),
    var(--category-image) center/cover;
}

.pc-category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.pc-category-hero::after {
  display: none;
  background: none;
  pointer-events: none;
}

.pc-category-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  min-height: 410px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 228px auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.18);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-category-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 54px 24px;
}

.pc-category-copy h1 {
  max-width: 750px;
  margin: 4px 0 14px;
  color: #fff;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 1;
  font-weight: 950;
}

.pc-category-copy p:not(.pc-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 650;
}

.pc-category-controls {
  position: relative;
  padding: 0 54px 34px;
  background: linear-gradient(180deg, rgba(10, 21, 15, 0), rgba(10, 21, 15, 0.08));
}

.pc-category-controls .pc-actions {
  margin-top: 0;
}

.pc-category-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  padding-top: 0;
  transform: none;
}

.pc-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 950;
}

.pc-category-chip span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.86rem;
  background: var(--lime);
  background: var(--green);
}

.pc-image-panel {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pc-image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pc-info-panel {
  border-radius: 8px;
  padding: 38px;
  background:
    var(--hero-overlay),
    url("../img/bg-exotic-art.svg") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.pc-about-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 48px;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(8, 14, 10, 0.46);
  box-shadow: none;
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-about-image {
  min-height: 560px;
  border-radius: 0;
  box-shadow: none;
}

.pc-contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 48px;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(8, 14, 10, 0.46);
  box-shadow: none;
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-contact-panel .pc-list-item {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 54%, rgba(217, 242, 95, 0.05)),
    rgba(10, 21, 15, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(217, 242, 95, 0.07);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-contact-image {
  min-height: 560px;
  border-radius: 0;
  box-shadow: none;
}

.pc-review-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 48px;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(8, 14, 10, 0.46);
  box-shadow: none;
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-review-image {
  min-height: 560px;
  border-radius: 0;
  box-shadow: none;
}

.pc-info-panel h1,
.pc-info-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.pc-info-panel p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.72;
  font-weight: 600;
}

.pc-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pc-list-item {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--premium-glass);
  box-shadow: var(--premium-glass-shadow);
  backdrop-filter: blur(22px) saturate(1.22);
}

.pc-list-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--lime);
  opacity: 0.9;
}

.pc-list-item span {
  position: relative;
  z-index: 1;
  display: block;
  color: #e9ff7a;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pc-list-item a,
.pc-list-item strong {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 950;
}

.pc-process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    var(--hero-overlay),
    url("../img/service-delivery-hero.webp") center/cover;
}

.pc-hero + .pc-section {
  border-top: 22px solid var(--slide-underlay);
}

.pc-category-hero + .pc-section {
  border-top: 22px solid var(--slide-underlay);
}

.pc-section + .pc-section {
  border-top: 22px solid var(--slide-underlay);
}

.pc-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  grid-template-areas:
    "copy photo"
    "steps photo";
  gap: 18px;
  align-items: stretch;
}

.pc-process-copy {
  grid-area: copy;
  padding: 26px 0 10px;
}

.pc-process-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  line-height: 0.96;
}

.pc-process-copy p:not(.pc-kicker) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.72;
  font-weight: 650;
}

.pc-process-photo {
  grid-area: photo;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.pc-process-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.pc-process-steps {
  grid-area: steps;
  display: grid;
  gap: 12px;
  align-self: end;
}

.pc-process-steps article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 7px 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.14);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-process-steps article::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px 74px;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(217, 242, 95, 0.52), transparent);
}

.pc-process-steps span {
  position: relative;
  z-index: 1;
  grid-row: span 2;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 950;
}

.pc-process-steps b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.1;
}

.pc-process-steps p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.52;
  font-weight: 650;
}

.pc-signature-section {
  position: relative;
  overflow: hidden;
  background:
    var(--hero-overlay),
    url("../img/about-company-hero.webp") center/cover;
}

.pc-signature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.14);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: #fff;
  background: rgba(8, 14, 10, 0.18);
}

.pc-signature-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4.8rem);
  line-height: 0.96;
}

.pc-signature-copy p:not(.pc-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.72;
  font-weight: 650;
}

.pc-signature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pc-signature-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: #ffffff;
  background: var(--glass-fill);
  font-size: 0.9rem;
  font-weight: 900;
}

.pc-signature-image {
  min-height: 560px;
  overflow: hidden;
}

.pc-signature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pc-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    var(--hero-overlay),
    var(--gallery-bg, url("../img/signature-fresh-hero.webp")) center/cover;
}

.pc-gallery-section > * {
  position: relative;
  z-index: 1;
}

.pc-gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pc-gallery-actions-bottom {
  margin-top: 34px;
}

.pc-gallery-toggle {
  min-width: 210px;
}

.pc-gallery-toggle:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.pc-gallery-wrap {
  margin-top: 34px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.45s ease;
}

.pc-gallery-wrap.is-open {
  max-height: 5200px;
  opacity: 1;
  transform: translateY(0);
}

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

.pc-gallery-section .pc-gallery-title {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 950;
  text-align: center;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

.pc-gallery-section .pc-head {
  width: fit-content;
  max-width: min(760px, 100%);
  margin-inline: auto;
  padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.22);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035) 54%, rgba(217, 242, 95, 0.05)),
    rgba(10, 21, 15, 0.16);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pc-gallery-open {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 5px;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.pc-gallery-item.wide {
  aspect-ratio: 1 / 1.18;
}

.pc-gallery-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 6px;
  pointer-events: none;
}

.pc-gallery-item::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(16, 25, 20, 0), rgba(16, 25, 20, 0.18));
  opacity: 0.72;
  pointer-events: none;
}

.pc-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.pc-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 242, 95, 0.36);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pc-gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.03);
}

.pc-lightbox-active {
  overflow: hidden;
}

.pc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px 86px;
  background: rgba(5, 10, 7, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.pc-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pc-lightbox-frame {
  position: relative;
  width: min(100%, 1180px);
  height: min(82vh, 820px);
  margin: 0;
  display: grid;
  place-items: center;
}

.pc-lightbox-frame img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.pc-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 31, 23, 0.74);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px) saturate(1.08);
}

.pc-lightbox-close,
.pc-lightbox-nav {
  position: fixed;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 31, 23, 0.74);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px) saturate(1.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pc-lightbox-close:hover,
.pc-lightbox-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 242, 95, 0.42);
  background: rgba(32, 54, 40, 0.88);
}

.pc-lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 2rem;
  line-height: 1;
}

.pc-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  line-height: 1;
}

.pc-lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.pc-lightbox-prev {
  left: 24px;
}

.pc-lightbox-next {
  right: 24px;
}

.pc-cta-section {
  position: relative;
  overflow: hidden;
  background:
    var(--hero-overlay),
    var(--cta-bg, url("../img/signature-fresh-hero.webp")) center/cover;
}

.pc-cta {
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 54%, rgba(217, 242, 95, 0.04)),
    rgba(10, 21, 15, 0.18);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(217, 242, 95, 0.06);
  backdrop-filter: blur(5px) saturate(1.06);
}

.pc-cta h2 {
  max-width: 750px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1;
}

.pc-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 650;
}

.site-footer {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: #203528;
  font-size: 0.78rem;
  font-weight: 750;
}

.site-footer__inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 24px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.site-footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.8;
}

.site-footer b {
  color: #e9ff7a;
}

@media (max-width: 1040px) {
  .pc-hero-inner,
  .pc-head,
  .pc-split {
    grid-template-columns: 1fr;
  }

  .pc-product-grid,
  .pc-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-glass {
    max-width: 520px;
  }

  .pc-benefit-showcase,
  .pc-process-layout,
  .pc-signature,
  .pc-about-hero-inner,
  .pc-contact-hero-inner,
  .pc-review-hero-inner,
  .pc-category-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .pc-process-copy,
  .pc-process-photo,
  .pc-process-steps {
    grid-area: auto;
  }

  .pc-benefit-visual,
  .pc-process-photo,
  .pc-about-image,
  .pc-contact-image,
  .pc-review-image,
  .pc-signature-image {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    width: calc(100% - 20px);
    min-height: auto;
    padding: 7px 0 8px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 10px;
  }

  .pc-category-hero {
    min-height: auto;
  }

  .pc-category-visual {
    min-height: 420px;
  }

  .site-logo img {
    width: 104px;
  }

  .site-tagline {
    order: 1;
    margin-right: 0;
    padding-left: 0;
    color: var(--ink-2);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .site-tagline::before {
    width: 14px;
    margin-right: 6px;
  }

  .site-nav {
    order: 2;
    flex-basis: 100%;
    display: flex;
    align-items: center;
    width: calc(100% + 20px);
    margin-left: -10px;
    padding: 0 10px 2px;
    min-width: 0;
    gap: 3px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .site-nav details > summary {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 5px;
    white-space: nowrap;
    font-size: 0.72rem;
    line-height: 1;
  }

  .site-nav__dropdown {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 104px;
    min-width: 0;
    z-index: 120;
  }

  .pc-shell {
    width: auto;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
  }

  .pc-hero {
    min-height: auto;
  }

  .pc-category-hero-inner {
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
    grid-template-rows: 278px auto;
  }

  .pc-category-copy h1 {
    font-size: 2.8rem;
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .pc-category-copy p:not(.pc-kicker) {
    font-size: 0.98rem;
  }

  .pc-category-copy {
    padding: 28px 38px 18px;
  }

  .pc-category-controls {
    padding: 0 38px 28px;
  }

  .pc-category-controls .pc-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pc-category-panel {
    margin-top: 24px;
    padding-top: 0;
    transform: none;
  }

  .pc-category-chip {
    flex: 1 1 calc(50% - 8px);
  }

  .pc-category-visual {
    min-height: 300px;
  }

  .pc-category-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .pc-hero-inner {
    display: block;
    width: 320px;
    max-width: calc(100vw - 56px);
    margin-left: 24px;
    margin-right: 0;
    padding: 48px 0;
  }

  .pc-hero h1,
  .pc-title {
    max-width: 100%;
    font-size: 1.9rem;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .pc-hero p,
  .pc-lead,
  .pc-head p {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .pc-eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
  }

  .pc-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pc-btn {
    width: 100%;
    text-align: center;
  }

  .pc-glass {
    width: 100%;
    max-width: 100%;
    margin-top: 34px;
    padding: 16px;
  }

  .pc-metric-grid,
  .pc-product-grid {
    grid-template-columns: 1fr;
  }

  .pc-gallery {
    grid-template-columns: 1fr;
  }

  .pc-gallery-item,
  .pc-gallery-item.wide {
    aspect-ratio: 1 / 1.12;
  }

  .pc-lightbox {
    align-items: center;
    padding: 66px 14px 156px;
  }

  .pc-lightbox-frame {
    height: calc(100dvh - 246px);
  }

  .pc-lightbox-close,
  .pc-lightbox-nav {
    width: 52px;
    height: 52px;
  }

  .pc-lightbox-close {
    top: 14px;
    right: 14px;
  }

  .pc-lightbox-nav {
    top: auto;
    bottom: 58px;
    transform: none;
    font-size: 1.6rem;
  }

  .pc-lightbox-nav:hover {
    transform: translateY(-2px);
  }

  .pc-lightbox-prev {
    left: calc(50% - 112px);
  }

  .pc-lightbox-next {
    right: calc(50% - 112px);
  }

  .pc-lightbox-counter {
    position: fixed;
    left: 50%;
    bottom: 120px;
    z-index: 1001;
    transform: translateX(-50%);
    min-width: 86px;
    padding: 9px 15px;
    text-align: center;
    font-size: 0.95rem;
  }

  .pc-section {
    padding: 62px 0;
  }

  .pc-benefit-card {
    min-height: auto;
    padding: 22px;
  }

  .pc-benefit-showcase .pc-benefit-card {
    padding: 18px;
  }

  .pc-benefit-showcase .pc-benefit-card h3 {
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .pc-benefit-showcase .pc-benefit-card p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.42;
    overflow-wrap: normal;
  }

  .pc-benefit-showcase .pc-benefit-top {
    margin-bottom: 16px;
  }

  .pc-benefit-showcase .pc-benefit-top span {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }

  .pc-product-card {
    min-height: 240px;
  }

  .pc-image-panel {
    min-height: 360px;
  }

  .pc-info-panel {
    padding: 26px;
  }

  .pc-cta {
    padding: 30px 22px;
  }

  .pc-benefit-visual,
  .pc-process-photo,
  .pc-about-image,
  .pc-contact-image,
  .pc-review-image,
  .pc-signature-image {
    min-height: 300px;
  }

  .pc-process-copy,
  .pc-about-panel,
  .pc-contact-panel,
  .pc-review-panel,
  .pc-signature-copy {
    padding: 28px 22px;
  }

  .pc-process-steps article {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .pc-process-steps span {
    width: 40px;
    height: 40px;
  }

  .pc-signature {
    min-height: 0;
  }

  .pc-about-hero-inner {
    min-height: 0;
  }

  .pc-contact-hero-inner {
    min-height: 0;
  }

  .pc-review-hero-inner {
    min-height: 0;
  }
}
