/* PhysioShopKS — medical palette from brand logo (blue + green on white) */
:root {
  /* Derived from logo: professional blue + vitality green */
  --psh-blue: #0077b6;
  --psh-blue-dark: #005f91;
  --psh-blue-soft: #e3f2fa;
  --psh-green: #1fa971;
  --psh-green-dark: #178a5a;
  --psh-green-soft: #e8f7f0;

  --psh-bg: #f4f9fb;
  --psh-surface: #ffffff;
  --psh-elevated: #ffffff;
  --psh-border: rgba(0, 86, 120, 0.12);
  --psh-text: #1a3d4a;
  --psh-heading: #0a3d5c;
  --psh-muted: #5a7380;
  --psh-primary: var(--psh-blue);
  --psh-accent: var(--psh-green);
  --psh-accent-2: #0096c7;
  --psh-glow: rgba(0, 119, 182, 0.22);
  --psh-radius: 1.25rem;
  --psh-font: "Manrope", system-ui, sans-serif;
  --psh-display: "Outfit", var(--psh-font);
  --psh-header-h: 4.25rem;
  --psh-footer-bg: #0c3d52;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--psh-font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--psh-text);
  background: var(--psh-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--psh-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--psh-heading);
}

a {
  color: var(--psh-blue-dark);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--psh-green-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Navbar brand (logo + name) ---------- */
.psh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.psh-brand__mark {
  height: 38px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.psh-brand__name {
  font-family: var(--psh-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--psh-heading);
}

.psh-brand:hover .psh-brand__name {
  color: var(--psh-blue-dark);
}

.psh-brand:hover .psh-brand__mark {
  opacity: 0.92;
}

/* ---------- Language switcher ---------- */
.psh-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--psh-border);
  box-shadow: 0 1px 3px rgba(0, 86, 120, 0.05);
}

.psh-lang-btn {
  border: none;
  background: transparent;
  color: var(--psh-muted);
  padding: 0.4rem 0.75rem;
  min-width: 2.4rem;
  border-radius: 999px;
  font-family: var(--psh-font);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.psh-lang-btn:hover {
  color: var(--psh-heading);
}

.psh-lang-btn.is-active,
.psh-lang-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--psh-blue) 0%, var(--psh-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 2px 10px var(--psh-glow);
}

/* ---------- Header ---------- */
.psh-header {
  position: sticky;
  top: 0;
  z-index: 1040;
}

.psh-navbar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 86, 120, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  padding: 0.65rem 0;
  min-height: var(--psh-header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
}

.psh-header.is-scrolled .psh-navbar {
  background: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 0;
  box-shadow: 0 4px 22px rgba(0, 86, 120, 0.07);
  border-bottom-color: rgba(0, 86, 120, 0.1);
}

.psh-navbar-collapse {
  flex-grow: 1;
}

@media (min-width: 992px) {
  .psh-navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
  }
}

.psh-navbar-tools {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--psh-border);
}

@media (min-width: 992px) {
  .psh-navbar-tools {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0;
    margin-left: 0.75rem;
    padding-top: 0;
    border-top: none;
  }
}

.psh-nav-cta {
  font-size: 0.82rem !important;
  padding: 0.58rem 1.15rem !important;
  border-radius: 999px !important;
  white-space: nowrap;
  justify-content: center;
  margin-top: 0.25rem;
}

@media (min-width: 992px) {
  .psh-nav-cta {
    margin-top: 0;
  }
}

.psh-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--psh-heading) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.psh-nav .nav-link:hover {
  color: var(--psh-blue) !important;
  background: rgba(0, 119, 182, 0.08);
}

.psh-nav .nav-link.active {
  color: var(--psh-blue-dark) !important;
  background: var(--psh-blue-soft);
}

.psh-nav .dropdown-menu {
  background: var(--psh-surface);
  border: 1px solid var(--psh-border);
  border-radius: 0.85rem;
  padding: 0.5rem;
  margin-top: 0.4rem !important;
  box-shadow: 0 16px 40px rgba(0, 86, 120, 0.12);
}

.psh-nav .dropdown-item {
  border-radius: 0.5rem;
  font-weight: 500;
  color: var(--psh-text);
  padding: 0.45rem 0.85rem;
}

.psh-nav .dropdown-item:hover {
  background: var(--psh-green-soft);
  color: var(--psh-green-dark);
}

/* Custom hamburger */
.psh-navbar-toggler {
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid var(--psh-border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.psh-navbar-toggler:hover {
  border-color: rgba(0, 119, 182, 0.25);
  background: var(--psh-blue-soft);
}

.psh-navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.psh-navbar-toggler-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 1px;
  background: var(--psh-heading);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.psh-navbar-toggler[aria-expanded="true"] .psh-navbar-toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.psh-navbar-toggler[aria-expanded="true"] .psh-navbar-toggler-bar:nth-child(2) {
  opacity: 0;
}

.psh-navbar-toggler[aria-expanded="true"] .psh-navbar-toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .psh-navbar-toggler {
    display: none;
  }
}

@media (max-width: 991px) {
  .psh-lang {
    align-self: center;
  }

  .psh-nav-cta {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .psh-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ---------- Hero ---------- */
.psh-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 9vw, 7rem) 0;
  background: linear-gradient(165deg, #ffffff 0%, var(--psh-blue-soft) 42%, var(--psh-green-soft) 100%);
}

.psh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(0, 119, 182, 0.12), transparent 50%),
    radial-gradient(ellipse 55% 45% at 5% 85%, rgba(31, 169, 113, 0.1), transparent 48%);
  pointer-events: none;
}

.psh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 86, 120, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 120, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 35%, transparent);
  pointer-events: none;
}

.psh-hero-inner {
  position: relative;
  z-index: 1;
}

.psh-hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--psh-green-dark), var(--psh-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.psh-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 20ch;
  margin-bottom: 1.25rem;
  color: var(--psh-heading);
}

.psh-hero--home h1 {
  max-width: 22ch;
  margin-bottom: 1.4rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.psh-hero--home .psh-hero-lead {
  margin-bottom: 1.6rem;
  line-height: 1.68;
  font-size: 1.06rem;
  max-width: 48ch;
}

.psh-hero-lead {
  font-size: 1.08rem;
  color: var(--psh-muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.psh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--psh-font);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.88rem 1.65rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.psh-btn-primary {
  background: linear-gradient(135deg, var(--psh-blue) 0%, var(--psh-blue-dark) 100%);
  color: #fff !important;
  box-shadow: 0 8px 28px var(--psh-glow);
}

.psh-btn-primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.psh-btn-ghost {
  background: #fff;
  color: var(--psh-blue-dark) !important;
  border: 1px solid rgba(0, 119, 182, 0.28);
  box-shadow: 0 2px 12px rgba(0, 86, 120, 0.06);
}

.psh-btn-ghost:hover {
  border-color: var(--psh-green);
  color: var(--psh-green-dark) !important;
}

.psh-hero-visual {
  position: relative;
}

.psh-hero-visual::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: conic-gradient(from 200deg, rgba(0, 119, 182, 0.15), rgba(31, 169, 113, 0.12), rgba(0, 119, 182, 0.15));
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.psh-hero-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--psh-radius);
  overflow: hidden;
  border: 1px solid var(--psh-border);
  box-shadow: 0 20px 50px rgba(0, 86, 120, 0.12);
  background: #fff;
}

.psh-hero-img-wrap img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.psh-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.psh-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--psh-border);
  color: var(--psh-heading);
  box-shadow: 0 1px 4px rgba(0, 86, 120, 0.05);
}

/* ---------- Sections ---------- */
.psh-section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--psh-bg) 100%);
  border-top: 1px solid var(--psh-border);
}

.psh-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.psh-section-head--partners {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.psh-section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--psh-green-dark);
  margin-bottom: 0.5rem;
}

.psh-section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  margin-bottom: 0;
  margin-top: 0;
  color: var(--psh-heading);
}

.psh-section-head p {
  color: var(--psh-muted);
  margin: 0.75rem 0 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  font-size: clamp(0.98rem, 2.1vw, 1.05rem);
}

/* Partners */
.psh-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.15rem;
}

.psh-partner-card {
  background: var(--psh-elevated);
  border-radius: var(--psh-radius);
  border: 1px solid var(--psh-border);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0, 86, 120, 0.04);
}

.psh-partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 119, 182, 0.25);
  box-shadow: 0 16px 36px rgba(0, 86, 120, 0.1);
}

.psh-partner-logo {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--psh-blue-soft);
  border-radius: 0.85rem;
  border: 1px solid var(--psh-border);
}

.psh-partner-logo img {
  max-height: 64px;
  max-width: 88%;
  object-fit: contain;
}

.psh-partner-card h3 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--psh-heading);
}

.psh-partner-card .psh-btn {
  width: 100%;
  font-size: 0.82rem;
  padding: 0.6rem 0.85rem;
}

/* Footer — layered gradient, accent rail, glass contact rows */
.psh-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(168deg, #0a2836 0%, var(--psh-footer-bg) 42%, #071f2b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.psh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 100% 0%, rgba(31, 169, 113, 0.14), transparent 52%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 119, 182, 0.12), transparent 50%);
  pointer-events: none;
}

.psh-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 11px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}

.psh-footer-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--psh-blue), var(--psh-green), #5ec8ff);
  z-index: 2;
}

.psh-footer > .container {
  position: relative;
  z-index: 1;
}

.psh-footer-main {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.psh-footer a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.psh-footer a:hover {
  color: #fff;
}

.psh-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.psh-footer-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.psh-footer-brand__name {
  font-family: var(--psh-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  color: #fff;
}

.psh-footer-tagline {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 22rem;
  margin: 0;
}

.psh-footer-heading {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.psh-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.psh-footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.35rem;
  padding-left: 0.75rem;
  margin-left: -0.75rem;
  border-left: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.psh-footer-nav a:hover {
  border-left-color: var(--psh-green);
  transform: translateX(0.25rem);
  color: #fff;
}

.psh-footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.psh-footer-contacts li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.psh-footer-contacts li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(31, 169, 113, 0.35);
}

.psh-footer-contacts li:last-child {
  margin-bottom: 0;
}

.psh-footer-contacts i {
  color: #7dd4b0;
  width: 1rem;
  flex-shrink: 0;
  text-align: center;
}

.psh-footer-bottom {
  margin-top: 0;
  padding: 1.15rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.psh-footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.psh-footer-copy a {
  color: rgba(255, 255, 255, 0.88);
}

.psh-footer-copy a:hover {
  color: #7dd4b0;
}

/* Page hero (inner) */
.psh-page-hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, var(--psh-blue-soft) 0%, #ffffff 55%, var(--psh-bg) 100%);
  overflow: hidden;
}

.psh-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40h40V0' fill='none' stroke='rgba(0,86,120,0.07)'/%3E%3C/svg%3E");
}

.psh-page-hero .container {
  position: relative;
  z-index: 1;
}

.psh-page-hero h1 {
  color: var(--psh-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  margin: 0 0 0.5rem;
}

.psh-page-hero > .container > p {
  margin: 0;
  color: var(--psh-muted);
  max-width: 46ch;
}

.psh-page-hero-img {
  margin-top: 1.35rem;
  border-radius: var(--psh-radius);
  overflow: hidden;
  max-height: 260px;
  border: 1px solid var(--psh-border);
  box-shadow: 0 12px 36px rgba(0, 86, 120, 0.1);
}

.psh-page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .psh-page-hero-img {
    max-height: 180px;
  }
}

/* Inner pages — split hero (About / Contact) */
.psh-page-hero--split {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.psh-page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--psh-green-dark);
  margin: 0 0 0.65rem;
}

.psh-page-hero-lead {
  margin: 0.85rem 0 0;
  color: var(--psh-muted);
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

.psh-page-hero-figure {
  border-radius: var(--psh-radius);
  overflow: hidden;
  border: 1px solid var(--psh-border);
  box-shadow: 0 20px 48px rgba(0, 86, 120, 0.12);
  background: #fff;
}

.psh-page-hero-figure img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .psh-page-hero-figure img {
    max-height: 260px;
  }
}

/* Partners — Swiper */
.psh-partners-wrap {
  position: relative;
  padding: 0 2.75rem 2.5rem;
  margin-top: 0.35rem;
}

.psh-partners-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 1px solid var(--psh-border);
  background: #fff;
  color: var(--psh-blue);
  box-shadow: 0 4px 18px rgba(0, 86, 120, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.psh-partners-nav:hover {
  background: var(--psh-blue-soft);
  border-color: rgba(0, 119, 182, 0.28);
  color: var(--psh-blue-dark);
}

.psh-partners-prev {
  left: 0;
}

.psh-partners-next {
  right: 0;
}

.psh-partners-pagination {
  position: relative !important;
  margin-top: 1.35rem !important;
  text-align: center;
  bottom: auto !important;
}

.psh-partners-pagination .swiper-pagination-bullet {
  background: var(--psh-blue);
  opacity: 0.3;
}

.psh-partners-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--psh-green);
}

.psh-partners-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.psh-partners-swiper .psh-partner-card {
  width: 100%;
}

@media (max-width: 575px) {
  .psh-partners-wrap {
    padding: 0 0 1.75rem;
    margin-top: 0;
  }

  .psh-partners-nav {
    display: none;
  }

  .psh-partners-pagination {
    margin-top: 1.1rem !important;
  }
}

/* Content */
.psh-content {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
  background: var(--psh-bg);
}

.psh-border-top {
  border-color: var(--psh-border) !important;
}

.psh-cat-card > span:first-of-type {
  display: block;
}

.psh-hint {
  color: var(--psh-muted);
  font-size: 0.95rem;
}

.psh-hint a {
  color: var(--psh-blue);
  font-weight: 600;
}

.psh-hint a:hover {
  color: var(--psh-green-dark);
}

.psh-prose {
  max-width: 58ch;
}

.psh-prose h2 {
  font-size: 1.45rem;
  margin-top: 0;
}

.psh-prose h5 {
  color: var(--psh-muted) !important;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.psh-prose p,
.psh-text-card p,
.psh-text-card li {
  color: var(--psh-muted);
}

.psh-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.psh-img-stack img {
  border-radius: 0.85rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border: 1px solid var(--psh-border);
}

.psh-img-stack .full {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
}

.psh-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: start;
}

@media (max-width: 991px) {
  .psh-about-split {
    grid-template-columns: 1fr;
  }
}

.psh-timeline {
  border-left: 3px solid var(--psh-blue);
  padding-left: 1.35rem;
}

.psh-timeline-item {
  margin-bottom: 1.35rem;
}

.psh-timeline-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--psh-heading);
}

.psh-timeline-item h4 span.psh-year {
  color: var(--psh-blue);
  font-weight: 800;
}

.psh-timeline-item p {
  margin: 0;
}

/* Product grid */
.psh-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.psh-product-card {
  background: var(--psh-elevated);
  border-radius: var(--psh-radius);
  border: 1px solid var(--psh-border);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  box-shadow: 0 4px 18px rgba(0, 86, 120, 0.05);
}

.psh-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 119, 182, 0.22);
}

.psh-product-card .img-wrap {
  background: var(--psh-blue-soft);
  padding: 1rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psh-product-card img {
  max-height: 210px;
  width: 100%;
  object-fit: contain;
}

.psh-product-card p {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--psh-heading);
}

/* Forms */
.psh-form .form-cover {
  list-style: none;
  padding: 0;
  margin: 0;
}

.psh-form .form-cover li {
  margin-bottom: 0.85rem;
}

.psh-form input:not([type="checkbox"]):not([type="radio"]),
.psh-form textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid var(--psh-border);
  border-radius: 0.75rem;
  font-family: var(--psh-font);
  font-size: 1rem;
  background: #fff;
  color: var(--psh-text);
}

.psh-form input:focus:not([type="checkbox"]):not([type="radio"]),
.psh-form textarea:focus {
  outline: none;
  border-color: rgba(0, 119, 182, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

.psh-form textarea {
  min-height: 130px;
  resize: vertical;
}

.psh-form label span {
  color: var(--psh-muted);
}

.psh-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.psh-contact-card {
  background: #fff;
  padding: 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid var(--psh-border);
  box-shadow: 0 2px 12px rgba(0, 86, 120, 0.04);
}

.psh-contact-card h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--psh-muted);
  margin: 0 0 0.35rem;
}

.psh-contact-card i {
  color: var(--psh-green);
  margin-right: 0.35rem;
}

.psh-contact-card p,
.psh-contact-card a {
  color: var(--psh-text);
}

/* Category grid */
.psh-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.psh-cat-card {
  display: block;
  background: #fff;
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  padding: 1.5rem 1.15rem;
  text-align: center;
  font-weight: 700;
  color: var(--psh-heading) !important;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 86, 120, 0.05);
}

.psh-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 169, 113, 0.35);
  color: var(--psh-blue-dark) !important;
  box-shadow: 0 12px 28px rgba(0, 86, 120, 0.08);
}

.psh-cat-card small {
  display: block;
  font-weight: 500;
  color: var(--psh-muted);
  margin-top: 0.35rem;
  font-size: 0.82rem;
}

.psh-text-card {
  background: #fff;
  border-radius: var(--psh-radius);
  border: 1px solid var(--psh-border);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 86, 120, 0.04);
}

.psh-text-card ul {
  padding-left: 1.2rem;
  color: var(--psh-muted);
}

.psh-text-card li {
  margin-bottom: 0.45rem;
}

.psh-text-card a {
  color: var(--psh-blue);
  font-weight: 600;
}

.psh-text-card a:hover {
  color: var(--psh-green-dark);
}

/* To top */
.psh-to-top {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--psh-blue) 0%, var(--psh-blue-dark) 100%);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--psh-glow);
  z-index: 1030;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s;
}

.psh-to-top:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

@media (max-width: 991px) {
  .psh-lang {
    margin: 0.75rem 0 0;
  }
}

/* ---------- About & Contact — premium sections ---------- */
.psh-page-about-hero .psh-hero-lead,
.psh-page-contact-hero .psh-hero-lead {
  max-width: 48ch;
}

.psh-section--tight {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

.psh-section--alt {
  background: linear-gradient(180deg, var(--psh-bg) 0%, #ffffff 50%, var(--psh-bg) 100%);
  border-top: 1px solid var(--psh-border);
  border-bottom: 1px solid var(--psh-border);
}

/* About — “Who we are” image collage (split + rail) */
.psh-about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: stretch;
  isolation: isolate;
}

@media (min-width: 576px) {
  .psh-about-collage {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0.75rem;
    align-items: stretch;
    min-height: clamp(280px, 42vw, 420px);
  }
}

.psh-about-collage__glow {
  position: absolute;
  inset: -8% -5% -5% -8%;
  background: conic-gradient(from 210deg, rgba(0, 119, 182, 0.14), rgba(31, 169, 113, 0.1), rgba(0, 119, 182, 0.12));
  border-radius: 50%;
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}

.psh-about-collage__primary,
.psh-about-collage__thumb {
  margin: 0;
  position: relative;
  z-index: 1;
  border-radius: var(--psh-radius);
  overflow: hidden;
  border: 1px solid var(--psh-border);
  box-shadow: 0 16px 44px rgba(0, 86, 120, 0.1);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.psh-about-collage__primary:hover,
.psh-about-collage__thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 86, 120, 0.14);
}

.psh-about-collage__primary img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 576px) {
  .psh-about-collage__primary {
    height: 100%;
    min-height: 0;
  }

  .psh-about-collage__primary img {
    min-height: 100%;
    max-height: 520px;
  }
}

.psh-about-collage__rail {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 0;
}

@media (min-width: 576px) {
  .psh-about-collage__rail {
    height: 100%;
    align-self: stretch;
  }
}

@media (max-width: 575px) {
  .psh-about-collage__rail {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 0.65rem;
  }
}

.psh-about-collage__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 576px) {
  .psh-about-collage__thumb {
    min-height: 0;
  }

  .psh-about-collage__thumb img {
    min-height: 0;
    aspect-ratio: auto;
  }
}

.psh-feature-card {
  background: var(--psh-elevated);
  border-radius: var(--psh-radius);
  border: 1px solid var(--psh-border);
  padding: 1.65rem 1.35rem;
  box-shadow: 0 4px 22px rgba(0, 86, 120, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.psh-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 182, 0.22);
  box-shadow: 0 14px 36px rgba(0, 86, 120, 0.1);
}

.psh-feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--psh-blue-soft), var(--psh-green-soft));
  color: var(--psh-blue-dark);
  font-size: 1.25rem;
}

.psh-feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
  color: var(--psh-heading);
}

.psh-about-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.psh-about-brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 1rem;
  background: #fff;
  border-radius: var(--psh-radius);
  border: 1px solid var(--psh-border);
  box-shadow: 0 2px 14px rgba(0, 86, 120, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.psh-about-brand-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 169, 113, 0.35);
  box-shadow: 0 10px 28px rgba(0, 86, 120, 0.09);
}

.psh-about-brand-tile img {
  max-height: 52px;
  max-width: 90%;
  object-fit: contain;
}

.psh-inline-link {
  font-weight: 700;
  color: var(--psh-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.psh-inline-link:hover {
  color: var(--psh-green-dark);
}

.psh-inline-link i {
  transition: transform 0.2s ease;
}

.psh-inline-link:hover i {
  transform: translateX(4px);
}

.psh-why-card {
  background: #fff;
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  padding: 1.35rem 1.15rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 86, 120, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.psh-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--psh-blue), var(--psh-green));
  opacity: 0.85;
}

.psh-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 119, 182, 0.2);
}

.psh-why-card__num {
  display: block;
  font-family: var(--psh-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--psh-blue);
  margin-bottom: 0.5rem;
}

.psh-why-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.psh-mv-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 22px rgba(0, 86, 120, 0.05);
  transition: box-shadow 0.25s ease;
}

.psh-mv-card:hover {
  box-shadow: 0 12px 36px rgba(0, 86, 120, 0.08);
}

.psh-mv-card--accent {
  background: linear-gradient(145deg, #ffffff 0%, var(--psh-green-soft) 100%);
  border-color: rgba(31, 169, 113, 0.25);
}

.psh-mv-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
  color: var(--psh-heading);
}

.psh-about-history .psh-timeline {
  margin-top: 0.25rem;
}

/* Contact page */
.psh-contact-page {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.psh-contact-form-panel {
  background: #fff;
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 8px 32px rgba(0, 86, 120, 0.06);
}

.psh-contact-form input:not([type="checkbox"]):not([type="radio"]),
.psh-contact-form textarea {
  width: 100%;
  padding: 0.88rem 1.05rem;
  border: 1px solid var(--psh-border);
  border-radius: 0.85rem;
  font-family: var(--psh-font);
  font-size: 1rem;
  background: var(--psh-bg);
  color: var(--psh-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.psh-contact-form input:hover:not([type="checkbox"]):not([type="radio"]),
.psh-contact-form textarea:hover {
  border-color: rgba(0, 119, 182, 0.25);
}

.psh-contact-form input:focus:not([type="checkbox"]):not([type="radio"]),
.psh-contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 119, 182, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
  background: #fff;
}

.psh-contact-side .psh-contact-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.psh-contact-side .psh-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 86, 120, 0.08);
}

.psh-map-wrap {
  border-radius: var(--psh-radius);
  overflow: hidden;
  border: 1px solid var(--psh-border);
  box-shadow: 0 8px 28px rgba(0, 86, 120, 0.08);
  background: var(--psh-blue-soft);
}

.psh-map-iframe {
  display: block;
  width: 100%;
  height: min(320px, 55vw);
  border: 0;
}

.psh-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.psh-social-link {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--psh-border);
  color: var(--psh-blue-dark);
  box-shadow: 0 2px 10px rgba(0, 86, 120, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.psh-social-link:hover {
  background: linear-gradient(135deg, var(--psh-blue) 0%, var(--psh-blue-dark) 100%);
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--psh-glow);
}

.psh-social-link:focus-visible {
  outline: 2px solid var(--psh-green);
  outline-offset: 2px;
}

/* ---------- Text-only About / Contact (no photos) ---------- */
.psh-brand--text {
  font-family: var(--psh-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--psh-heading) !important;
  padding: 0.35rem 0;
}

.psh-brand--text:hover {
  color: var(--psh-blue) !important;
}

.psh-hero--textonly {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.psh-hero--textonly .psh-hero-title-xl {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  max-width: none;
  margin-bottom: 1rem;
}

.psh-hero-rule {
  width: 4rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--psh-blue), var(--psh-green));
  margin-bottom: 1.25rem;
}

.psh-hero-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* About hero — abstract gradient blobs (no images) */
.psh-page-about-hero {
  position: relative;
  overflow: hidden;
}

.psh-hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.psh-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.5;
}

.psh-hero-blob--1 {
  width: min(440px, 70vw);
  height: min(440px, 70vw);
  background: radial-gradient(circle at 40% 40%, rgba(0, 119, 182, 0.35), transparent 68%);
  top: -22%;
  right: -12%;
}

.psh-hero-blob--2 {
  width: min(360px, 55vw);
  height: min(360px, 55vw);
  background: radial-gradient(circle at 50% 50%, rgba(31, 169, 113, 0.28), transparent 68%);
  bottom: -18%;
  left: -8%;
}

.psh-page-about-hero .psh-hero-inner {
  position: relative;
  z-index: 1;
}

.psh-page-about-hero .psh-hero-rule {
  margin-bottom: 0;
}

.psh-page-about-hero .psh-hero-title-xl {
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1.35rem;
}

.psh-page-about-hero .psh-hero-lead {
  max-width: 52ch;
  line-height: 1.68;
  text-wrap: balance;
}

.psh-section--band {
  background: #fff;
  border-top: 1px solid var(--psh-border);
  border-bottom: 1px solid var(--psh-border);
}

/* Homepage — services, advantages, CTA */
.psh-home-services {
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
}

.psh-home-service-card {
  background: var(--psh-elevated);
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  padding: 1.65rem 1.45rem;
  box-shadow: 0 4px 22px rgba(0, 86, 120, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.psh-home-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 119, 182, 0.22);
  box-shadow: 0 16px 40px rgba(0, 86, 120, 0.1);
}

.psh-home-service-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  color: var(--psh-heading);
}

.psh-home-service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--psh-blue-soft), var(--psh-green-soft));
  color: var(--psh-blue-dark);
  font-size: 1.2rem;
}

.psh-home-service-card__cta {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--psh-blue-dark);
  display: inline-flex;
  align-items: center;
}

.psh-home-service-card__cta:hover {
  color: var(--psh-green-dark);
}

.psh-home-service-card__cta i {
  transition: transform 0.2s ease;
}

.psh-home-service-card__cta:hover i {
  transform: translateX(4px);
}

.psh-btn-minimal {
  background: transparent !important;
  border: 1px dashed rgba(0, 119, 182, 0.35) !important;
  box-shadow: none !important;
}

.psh-btn-minimal:hover {
  border-color: var(--psh-green) !important;
  color: var(--psh-green-dark) !important;
}

.psh-btn-lg {
  padding: 1rem 1.85rem;
  font-size: 0.95rem;
}

.psh-home-why {
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.psh-home-why-card {
  background: #fff;
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  padding: 1.35rem 1.15rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.psh-home-why-card:hover {
  border-color: rgba(31, 169, 113, 0.28);
  box-shadow: 0 8px 26px rgba(0, 86, 120, 0.07);
}

.psh-home-why-card__mark {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--psh-blue-soft);
  color: var(--psh-blue);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.psh-home-why-card h3 {
  font-weight: 800;
  color: var(--psh-heading);
}

.psh-home-about .psh-section-kicker {
  color: var(--psh-green-dark);
}

.psh-index-cta-band {
  position: relative;
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  background: linear-gradient(125deg, var(--psh-blue-dark) 0%, #0a5f7a 42%, #0d6b58 100%);
  overflow: hidden;
}

.psh-index-cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 55%);
  pointer-events: none;
}

.psh-index-cta-band .container {
  position: relative;
  z-index: 1;
}

.psh-index-cta-band__title {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: #fff;
  margin: 0 0 0.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.psh-index-cta-band__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.6;
}

.psh-index-cta-band .psh-btn-primary {
  background: #fff;
  color: var(--psh-blue-dark) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.psh-index-cta-band .psh-btn-primary:hover {
  background: var(--psh-green-soft);
  color: var(--psh-blue-dark) !important;
}

.psh-prose-block {
  padding: 0.5rem 0 0.25rem;
}

.psh-prose-block .psh-section-kicker {
  color: var(--psh-green-dark);
}

.psh-rule {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--psh-blue), var(--psh-green));
  border-radius: 0;
  border: none;
  opacity: 0.9;
}

.psh-rule--accent {
  width: 100%;
  max-width: 6rem;
  opacity: 0.75;
}

.psh-section-head--left {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* About page — centered layout (aligned with partners / section-head blocks) */
.psh-page-about .psh-about-prose {
  max-width: 48ch;
}

.psh-page-about .psh-text-card--lift {
  text-align: center;
}

.psh-page-about .psh-text-card__step {
  margin-left: auto;
  margin-right: auto;
}

.psh-page-about .psh-why-card {
  text-align: center;
}

.psh-page-about .psh-mv-card {
  text-align: center;
}

.psh-page-about .psh-mv-card .psh-rule,
.psh-page-about .psh-mv-card .psh-rule--accent {
  margin-left: auto;
  margin-right: auto;
}

.psh-page-about .psh-timeline--centered {
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.psh-page-about .psh-timeline--centered .psh-timeline-item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--psh-border);
}

.psh-page-about .psh-timeline--centered .psh-timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.psh-text-card--lift {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--psh-border);
  border-radius: var(--psh-radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.psh-text-card--lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 86, 120, 0.1);
  border-color: rgba(0, 119, 182, 0.22);
}

.psh-text-card__step {
  font-family: var(--psh-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--psh-blue);
  margin-bottom: 0.65rem;
}

.psh-brand-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.psh-brand-text-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding: 1rem 1.1rem;
  text-align: center;
  border-radius: 0.85rem;
  border: 1px solid var(--psh-border);
  background: linear-gradient(180deg, #ffffff 0%, var(--psh-bg) 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.psh-brand-text-tile:hover {
  border-color: rgba(0, 119, 182, 0.28);
  box-shadow: 0 6px 22px rgba(0, 86, 120, 0.08);
  transform: translateY(-2px);
}

.psh-brand-text-tile__name {
  font-family: var(--psh-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--psh-heading);
  letter-spacing: -0.02em;
}

.psh-mv-card--plain {
  background: #fff;
}

.psh-timeline--spacious .psh-timeline-item {
  margin-bottom: 1.75rem;
}

.psh-timeline--spacious .psh-timeline-item:last-child {
  margin-bottom: 0;
}

.psh-contact-page--textonly {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.psh-field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--psh-muted);
  margin-bottom: 0.4rem;
}

.psh-muted-label {
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--psh-muted);
}

.psh-text-link {
  font-weight: 700;
  color: var(--psh-blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.psh-text-link:hover {
  color: var(--psh-green-dark);
}

.psh-contact-form--minimal textarea {
  min-height: 160px;
}

/* Consent checkbox — must not inherit width:100% from text inputs */
.psh-contact-consent {
  margin-bottom: 1.25rem;
}

.psh-contact-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--psh-muted);
  text-align: left;
}

.psh-contact-consent__label > span {
  flex: 1;
  min-width: 0;
}

.psh-contact-form input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  border-radius: 0.25rem;
  border: 1px solid var(--psh-border);
  background: #fff;
  accent-color: var(--psh-blue);
  cursor: pointer;
  vertical-align: top;
}

.psh-contact-form input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

.psh-contact-submit {
  display: block;
}

.psh-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.psh-contact-status {
  border-radius: 0.85rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.psh-contact-status--ok {
  background: var(--psh-green-soft);
  border: 1px solid rgba(31, 169, 113, 0.35);
  color: var(--psh-heading);
}

.psh-contact-status--err {
  background: #fff5f5;
  border: 1px solid rgba(180, 60, 60, 0.22);
  color: #5c2020;
}

/* Subtle entrance (CSS; Framer Motion not used on static site) */
@keyframes pshFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.psh-reveal {
  opacity: 0;
  animation: pshFadeUp 0.7s ease forwards;
}

.psh-reveal.psh-reveal-delay {
  animation-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .psh-reveal,
  .psh-reveal-delay {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
