/*
Theme Name: HPS Global Solutions
Theme URI: https://example.com/
Author: HPS Holding Group
Author URI: https://example.com/
Description: A polished corporate WordPress theme for HPS, a global sourcing and marketing partner in printing, packaging, healthcare and digital solutions.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hps-global
Tags: business, corporate, one-column, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --hps-ink: #102a43;
  --hps-deep: #071c2f;
  --hps-teal: #0d8b8d;
  --hps-teal-light: #d9f1ef;
  --hps-gold: #e6a43b;
  --hps-sand: #f4f7f6;
  --hps-white: #ffffff;
  --hps-muted: #5f7282;
  --hps-border: #dce7e8;
  --hps-shadow: 0 18px 55px rgba(7, 28, 47, 0.1);
  --hps-radius: 22px;
  --hps-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hps-ink);
  background: var(--hps-white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

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

a:hover {
  color: var(--hps-teal);
}

img {
  height: auto;
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--hps-max));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--hps-deep);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.topbar-links {
  display: flex;
  gap: 24px;
}

.topbar a:hover {
  color: var(--hps-white);
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--hps-white);
  border-bottom: 1px solid rgba(220, 231, 232, 0.75);
}

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

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-logo-image {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
}

.site-logo-image-footer {
  width: 178px;
  padding: 6px 9px;
  background: var(--hps-white);
  border-radius: 5px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--hps-white);
  background: var(--hps-teal);
  border-radius: 11px 11px 11px 3px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: var(--hps-deep);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--hps-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation a {
  color: var(--hps-ink);
  font-size: 14px;
  font-weight: 700;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--hps-teal);
}

.main-navigation li {
  position: relative;
}

.main-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  z-index: 20;
  display: block;
  min-width: 245px;
  padding: 10px;
  margin: 0;
  background: var(--hps-white);
  border: 1px solid var(--hps-border);
  border-radius: 10px;
  box-shadow: var(--hps-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-navigation .sub-menu li {
  border-bottom: 1px solid var(--hps-border);
}

.main-navigation .sub-menu li:last-child {
  border-bottom: 0;
}

.main-navigation .sub-menu a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--hps-white);
  background: var(--hps-teal);
}

.header-cta:hover,
.button-primary:hover {
  color: var(--hps-white);
  background: #087577;
  box-shadow: 0 12px 28px rgba(13, 139, 141, 0.25);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--hps-ink);
  background: var(--hps-white);
  border-color: var(--hps-border);
}

.button-secondary:hover {
  color: var(--hps-teal);
  border-color: var(--hps-teal);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  padding: 8px;
  color: var(--hps-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  color: var(--hps-white);
  background:
    radial-gradient(circle at 90% 12%, rgba(13, 139, 141, 0.4), transparent 31%),
    radial-gradient(circle at 15% 75%, rgba(230, 164, 59, 0.11), transparent 30%),
    var(--hps-deep);
}

.hero::after {
  position: absolute;
  inset: 0 0 0 54%;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: 70px;
  min-height: 610px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--hps-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--hps-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(47px, 6vw, 79px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--hps-gold);
  font-style: normal;
}

.hero-intro {
  max-width: 590px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero .button-secondary {
  color: var(--hps-white);
  background: transparent;
  border-color: rgba(255,255,255,0.25);
}

.hero .button-secondary:hover {
  color: var(--hps-white);
  border-color: rgba(255,255,255,0.7);
}

.hero-visual {
  position: relative;
  min-height: 390px;
}

.hero-emblem {
  position: absolute;
  top: 22%;
  right: 29%;
  z-index: 1;
  width: 148px;
  height: 148px;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.18));
}

.visual-orbit {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(230,164,59,0.33);
  border-radius: 50%;
  content: "";
}

.visual-orbit::after {
  inset: 27%;
  border-color: rgba(13,139,141,0.65);
}

.visual-card {
  position: absolute;
  right: 14%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(295px, 75%);
  min-height: 235px;
  padding: 27px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.visual-card-label {
  color: var(--hps-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  max-width: 210px;
  color: var(--hps-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.visual-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}

.visual-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--hps-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(13,139,141,0.18);
}

.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  align-items: center;
  gap: 20px;
  padding: 28px 34px;
  background: var(--hps-white);
  border: 1px solid var(--hps-border);
  border-radius: 12px;
  box-shadow: var(--hps-shadow);
}

.strip-lead {
  color: var(--hps-muted);
  font-size: 14px;
}

.strip-stat {
  padding-left: 22px;
  border-left: 1px solid var(--hps-border);
}

.strip-stat strong {
  display: block;
  color: var(--hps-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.strip-stat span {
  display: block;
  margin-top: 5px;
  color: var(--hps-muted);
  font-size: 12px;
  font-weight: 700;
}

.partners-section {
  padding: 42px 0;
  background: var(--hps-white);
  border-bottom: 1px solid var(--hps-border);
}

.partners-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.partners-heading .eyebrow {
  margin: 0;
  color: var(--hps-teal);
}

.partners-heading > p:last-child {
  max-width: 510px;
  margin: 0;
  color: var(--hps-muted);
  font-size: 14px;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 18px;
}

.partner-logo {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 12px 18px;
  background: #fbfdfd;
  border: 1px solid var(--hps-border);
  border-radius: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-logo:hover {
  box-shadow: 0 12px 28px rgba(7, 28, 47, 0.08);
  transform: translateY(-3px);
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 62px;
  object-fit: contain;
}

.section {
  padding: 112px 0;
}

.section-muted {
  background: var(--hps-sand);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-copy h2,
.support-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--hps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--hps-muted);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  background: var(--hps-white);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(13,139,141,0.44);
  box-shadow: var(--hps-shadow);
  transform: translateY(-5px);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  background: var(--hps-deep);
  border-color: var(--hps-deep);
}

.service-card:nth-child(2) h3,
.service-card:nth-child(5) h3,
.service-card:nth-child(2) p,
.service-card:nth-child(5) p {
  color: var(--hps-white);
}

.service-number {
  color: var(--hps-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 28px 0 10px;
  color: var(--hps-deep);
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--hps-muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--hps-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card:nth-child(2) .service-link,
.service-card:nth-child(5) .service-link {
  color: var(--hps-gold);
}

.about-grid,
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 85px;
}

.about-kicker,
.support-kicker {
  margin: 0 0 16px;
  color: var(--hps-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy p,
.support-copy p {
  color: var(--hps-muted);
  font-size: 17px;
}

.about-copy .button {
  margin-top: 18px;
}

.about-visual {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: #d9f1ef;
  border-radius: 5px 85px 5px 85px;
}

.about-visual::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--hps-gold);
  border-radius: 50%;
  content: "";
}

.about-office-image {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-shape-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

.about-visual-caption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent, rgba(7, 28, 47, 0.86));
  border-radius: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.about-visual-caption strong {
  display: block;
  max-width: 380px;
  margin-top: 9px;
  color: var(--hps-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.about-visual-caption .about-visual-label {
  color: var(--hps-gold);
}

.about-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 390px;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(7,28,47,0.94), rgba(13,139,141,0.78));
  border-radius: 5px 57px 5px 57px;
}

.about-visual-inner::before {
  position: absolute;
  top: -85px;
  right: -50px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255,255,255,0.04), 0 0 0 60px rgba(255,255,255,0.03);
  content: "";
}

.about-visual-label {
  position: relative;
  z-index: 1;
  color: var(--hps-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-visual-inner strong {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin-top: 16px;
  color: var(--hps-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
}

.about-visual-inner span {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.support-section {
  color: var(--hps-white);
  background: var(--hps-deep);
}

.support-copy h2 {
  color: var(--hps-white);
}

.support-copy p {
  color: rgba(255,255,255,0.7);
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.84);
  font-size: 14px;
}

.support-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--hps-gold);
  content: "";
}

.support-panel {
  padding: 35px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--hps-radius);
}

.panel-label {
  color: var(--hps-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.panel-stat:last-child {
  border-bottom: 0;
}

.panel-stat strong {
  color: var(--hps-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
}

.panel-stat span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.cta-band {
  padding: 88px 0;
  background: var(--hps-teal-light);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  max-width: 670px;
  margin: 0;
  color: var(--hps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 51px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.site-footer {
  color: rgba(255,255,255,0.62);
  background: var(--hps-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 60px;
  padding: 68px 0 54px;
}

.footer-brand .brand-name {
  color: var(--hps-white);
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-heading {
  margin: 0 0 17px;
  color: var(--hps-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 9px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--hps-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.13);
  font-size: 12px;
}

.page-hero {
  padding: 90px 0 82px;
  color: var(--hps-white);
  background:
    radial-gradient(circle at 88% 12%, rgba(13,139,141,0.38), transparent 30%),
    var(--hps-deep);
}

.page-hero-image {
  position: relative;
  display: flex;
  min-height: 360px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(7, 28, 47, 0.87), rgba(7, 28, 47, 0.34)),
    var(--page-image) center / cover no-repeat;
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(13, 139, 141, 0.25));
  content: "";
  pointer-events: none;
}

.page-hero-image .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--hps-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.page-content {
  min-height: 380px;
  padding: 90px 0;
}

.page-content h2,
.page-content h3 {
  color: var(--hps-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
}

.page-content h2 {
  font-size: 42px;
}

.page-content p,
.page-content li {
  color: var(--hps-muted);
}

.structured-content {
  padding-top: 100px;
  padding-bottom: 100px;
}

.content-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 78px;
}

.content-two-column h2,
.content-intro h2 {
  margin-top: 0;
}

.content-two-column p {
  font-size: 16px;
}

.content-image-card {
  position: relative;
  overflow: hidden;
  background: var(--hps-sand);
  border-radius: 6px 70px 6px 70px;
  box-shadow: var(--hps-shadow);
}

.content-image-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(13, 139, 141, 0.2));
  content: "";
  pointer-events: none;
}

.content-image-card img {
  display: block;
  width: 100%;
  height: 490px;
  object-fit: cover;
}

.content-intro {
  max-width: 700px;
  margin-bottom: 45px;
}

.content-intro p:last-child {
  max-width: 650px;
}

.solution-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-page-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--hps-white);
  border: 1px solid var(--hps-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(7, 28, 47, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-page-card:hover {
  box-shadow: var(--hps-shadow);
  transform: translateY(-5px);
}

.solution-page-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.solution-page-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 17px;
  padding: 22px;
}

.solution-page-card-body strong {
  color: var(--hps-deep);
  font-size: 19px;
  line-height: 1.2;
}

.solution-page-card-body span {
  color: var(--hps-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--hps-ink);
  font-size: 14px;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--hps-gold);
  content: "";
}

.support-panel-image {
  overflow: hidden;
  border-radius: var(--hps-radius);
  box-shadow: var(--hps-shadow);
}

.support-panel-image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.wp-block-button__link {
  background: var(--hps-teal);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .main-navigation ul {
    gap: 17px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 80px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .visual-orbit {
    right: 17%;
  }

  .visual-card {
    right: 25%;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .strip-lead {
    grid-column: 1 / -1;
  }

  .strip-stat:first-of-type {
    border-left: 0;
    padding-left: 0;
  }

  .about-grid,
  .support-grid,
  .content-two-column {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-visual {
    order: 2;
  }

  .solution-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-image-card img,
  .support-panel-image img {
    height: 380px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--hps-max));
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 16px 20px;
    background: var(--hps-white);
    border-bottom: 1px solid var(--hps-border);
    box-shadow: 0 15px 25px rgba(7,28,47,0.08);
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    display: block;
  }

  .main-navigation li {
    border-bottom: 1px solid var(--hps-border);
  }

  .main-navigation li:last-child {
    border-bottom: 0;
  }

  .main-navigation a {
    display: block;
    padding: 11px 0;
  }

  .main-navigation .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 6px 15px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-navigation .sub-menu a {
    padding: 8px 0;
  }

  .main-navigation .sub-menu li {
    border-bottom: 0;
  }

  .hero-inner {
    padding-top: 61px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .visual-orbit {
    right: 3%;
    width: 270px;
    height: 270px;
  }

  .hero-emblem {
    top: 21%;
    right: 27%;
    width: 105px;
    height: 105px;
  }

  .visual-card {
    right: 8%;
    bottom: 7%;
    min-height: 190px;
    padding: 21px;
  }

  .visual-card strong {
    font-size: 25px;
  }

  .intro-strip {
    margin-top: -15px;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding: 22px;
  }

  .partners-heading {
    display: block;
  }

  .partners-heading > p:last-child {
    margin-top: 14px;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-stat {
    padding-left: 15px;
  }

  .strip-stat strong {
    font-size: 25px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 31px;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .about-visual {
    min-height: 350px;
  }

  .about-visual-inner {
    min-height: 290px;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    display: block;
  }

  .cta-band .button {
    margin-top: 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 52px 0 40px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .page-hero-image {
    min-height: 300px;
  }

  .solution-page-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}