:root {
  --ps-primary: #13466D;
  --ps-primary-rgb: 19, 70, 109;
  --ps-bg-dark: #13466D;
  --ps-bg-mid: #13466D;
  --ps-bg-light: #8f9bac;
  --ps-nav: #13466D;
  --ps-white: #ffffff;
  --ps-text: #d9e1eb;
  --ps-accent-green: #ff7b00;
  --ps-accent-orange: #ff7b00;
  --ps-accent-orange-rgb: 255, 123, 0;
  --ps-container-max: 1240px;
  --ps-section-space-y: 60px;
  --ps-section-space-x: 36px;
  --ps-section-space-y-tablet: 52px;
  --ps-section-space-x-tablet: 24px;
  --ps-section-space-y-mobile: 48px;
  --ps-section-space-x-mobile: 20px;
}

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

body {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--ps-white);
  background: linear-gradient(120deg, var(--ps-bg-dark) 0%, var(--ps-bg-mid) 60%, var(--ps-bg-light) 100%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

.site-header {
  background: var(--ps-nav);
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.menu-open {
  box-shadow: 0 10px 26px rgba(1, 9, 22, 0.35);
}

.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}

.home .site-header.is-scrolled,
.home .site-header.menu-open {
  background: var(--ps-nav);
  box-shadow: 0 10px 26px rgba(1, 9, 22, 0.35);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.home .header-inner {
  min-height: 84px;
  transition: min-height 0.24s ease;
}

.home .site-header.is-scrolled .header-inner,
.home .site-header.menu-open .header-inner {
  min-height: 50px;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.brand-logo .custom-logo-link,
.logo-fallback {
  display: inline-flex;
  color: var(--ps-white);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 8px 0 0;
  font-size: 18px;
  line-height: 1;
  align-items: center;
}

.brand-logo .custom-logo {
  max-height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(2, 18, 38, 0.55)) contrast(1.08) brightness(1.05);
}

.brand-tagline {
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0;
  padding-left: 4px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-list > li {
  position: relative;
}

.menu-list a {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.35px;
  padding: 14px 0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.2px;
  opacity: 0.94;
}

.menu-list a:hover,
.menu-list a:focus-visible {
  color: var(--ps-accent-green);
  text-decoration-color: var(--ps-accent-green);
  opacity: 1;
}

.menu-list .current-menu-item a {
  text-decoration: underline;
  text-decoration-color: var(--ps-accent-green);
  color: var(--ps-accent-green);
  text-underline-offset: 6px;
}

.menu-list .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.85;
}

.menu-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  box-shadow: 0 14px 28px rgba(8, 24, 48, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 70;
}

.menu-list .menu-item-has-children:hover > .sub-menu,
.menu-list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-list .sub-menu li {
  width: 100%;
}

.menu-list .sub-menu a {
  display: block;
  width: 100%;
  padding: 9px 16px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  color: var(--ps-primary);
  text-decoration: none;
  opacity: 1;
}

.menu-list .sub-menu a:hover,
.menu-list .sub-menu a:focus-visible {
  color: var(--ps-accent-green);
  background: #fff2e6;
}

.menu-list .sub-menu .current-menu-item > a {
  color: var(--ps-accent-green);
  background: #ffe9d6;
}

.quote-btn {
  background: var(--ps-accent-orange);
  color: var(--ps-white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.quote-btn:hover,
.quote-btn:focus-visible {
  background: var(--ps-accent-orange);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 38px;
  height: 38px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ps-white);
  border-radius: 2px;
  margin: 3px 0;
  transition: transform 0.22s ease, opacity 0.16s ease;
  transform-origin: center;
}

.menu-toggle.is-active .bar:nth-child(2) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(4) {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 44;
}

.menu-backdrop.is-open {
  opacity: 0;
  visibility: visible;
  pointer-events: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-home {
  min-height: min(900px, 92vh);
  background-image: url("../images/herohome.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 420px at 85% 20%, rgba(19, 72, 122, 0.34) 0%, rgba(19, 72, 122, 0) 62%),
    linear-gradient(135deg, rgba(2, 17, 37, 0.72) 0%, rgba(2, 17, 37, 0.34) 50%, rgba(2, 17, 37, 0.16) 100%);
}

.hero-overlay {
  min-height: min(900px, 92vh);
  background: linear-gradient(100deg, rgba(3, 21, 44, 0.82) 0%, rgba(3, 21, 44, 0.58) 44%, rgba(3, 21, 44, 0.18) 100%);
}

.hero-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(126px, 12vh, 172px) 48px 86px;
  display: block;
}

.hero-copy {
  max-width: 760px;
  backdrop-filter: blur(1px);
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--ps-accent-green);
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.3;
}

.hero-title {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.hero-text {
  margin-top: 20px;
  max-width: 640px;
  color: #e9f1fb;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.74;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.2px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 150px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  filter: brightness(1.04);
}

.btn-primary {
  background: var(--ps-accent-orange);
  color: var(--ps-white);
}

.btn-outline {
  background: var(--ps-accent-orange);
  border: 2px solid var(--ps-accent-orange);
  color: #ffffff;
}

.hero-cta .btn-outline {
  background: transparent;
  border-color: var(--ps-accent-orange);
  color: #ffffff;
}

@media (max-width: 1200px) {
  .menu-list a {
    font-size: 12px;
  }

  .quote-btn {
    font-size: 12px;
    padding: 10px 14px;
  }
}

@media (max-width: 960px) {
  .home .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: calc(50% - 50vw);
    right: auto;
    width: 100vw;
    margin: 0;
    background: linear-gradient(180deg, var(--ps-primary) 0%, var(--ps-primary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 0 14px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.24s ease, visibility 0.22s ease;
    z-index: 50;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    pointer-events: auto;
  }

  .menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }

  .menu-list a {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-list .menu-item-has-children > a::after {
    float: right;
    margin-top: 6px;
  }

  .menu-list .sub-menu {
    position: static;
    min-width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 3px 0 8px 12px;
  }

  .menu-list .sub-menu a {
    color: rgba(235, 245, 255, 0.92);
    font-size: 13px;
    padding: 8px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
  }

  .menu-list .sub-menu a:hover,
  .menu-list .sub-menu a:focus-visible {
    color: #ffb067;
    background: transparent;
  }

  .menu-list .sub-menu .current-menu-item > a {
    color: #ffc999;
    background: transparent;
  }

  .quote-btn {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  .hero-content {
    padding: 104px 20px 48px;
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 1.7px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.66;
  }

  .hero-home,
  .hero-overlay {
    min-height: 76vh;
  }

  .btn {
    min-height: 40px;
    min-width: 140px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 96px 16px 36px;
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.05;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-cta {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-home,
  .hero-overlay {
    min-height: 72vh;
  }

  .brand-wrap .brand-tagline {
    display: none;
  }

  .footer-logo-wrap .brand-tagline-footer {
    display: block;
  }
}

.services-section {
  background: #f3f4f5;
  color: var(--ps-primary);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #b8c7da 18%, #b8c7da 82%, transparent 100%);
}

.home-projects-section {
  background: #f7f9fc;
  color: var(--ps-primary);
  position: relative;
}

.home-projects-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c7d6e8 20%, #c7d6e8 80%, transparent 100%);
}

.home-projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-projects-slider {
  position: relative;
  display: block;
}

.home-projects-track-wrap {
  overflow: hidden;
}

.home-projects-track {
  display: flex;
  gap: 10px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.home-projects-track .project-card-clean {
  flex: 0 0 calc(50% - 5px);
  min-height: 430px;
  border: 2px solid #cfd9e6 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

.home-projects-track .project-card-clean:hover,
.home-projects-track .project-card-clean:focus-within {
  border-color: var(--ps-primary) !important;
  box-shadow: 0 12px 24px rgba(9, 29, 56, 0.12) !important;
}

.home-projects-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid #cdd8e7;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ps-primary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-projects-prev {
  left: -14px;
}

.home-projects-next {
  right: -14px;
}

.home-projects-nav:hover,
.home-projects-nav:focus-visible {
  background: var(--ps-accent-orange);
  border-color: var(--ps-accent-orange);
  color: #ffffff;
}

.home-projects-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-project-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #c8d3e2;
  cursor: pointer;
}

.home-project-dot.is-active {
  width: 26px;
  background: var(--ps-accent-orange);
}

/* Keep project cards with clean rounded edges (no cut corners). */
.home-projects-grid .service-archive-card {
  background: #ffffff;
  border: 1px solid #d5deea;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(9, 29, 56, 0.08);
}

.home-projects-grid .service-archive-thumb {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
}

.home-projects-grid .service-archive-thumb img,
.home-projects-grid .service-archive-thumb--placeholder {
  display: block;
  border-radius: 0;
}

.home-projects-grid .service-archive-body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.home-projects-grid .service-archive-body h3 a {
  color: var(--ps-primary);
}

.home-projects-grid .service-archive-card {
  border-radius: 0;
  border-width: 1px 1px 3px;
  border-color: #d8e2ef #d8e2ef var(--ps-primary);
  box-shadow: none;
}

.home-projects-grid .service-archive-card:hover,
.home-projects-grid .service-archive-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(10, 34, 67, 0.1);
}

.home-projects-grid .service-archive-link {
  color: var(--ps-primary);
}

.home-projects-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Project cards: clean flat style (home + project archive). */
.project-card-clean {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transition: transform 0.22s ease;
}

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

.project-card-clean .service-archive-thumb {
  display: block;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #dfe7f2;
}

.project-card-clean .service-archive-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

.project-card-clean .service-archive-thumb--placeholder {
  min-height: 260px;
  border-radius: 0 !important;
}

.project-card-clean-body {
  padding: 14px 0 0 !important;
}

.project-card-clean-body h2,
.project-card-clean-body h3 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ps-primary);
  text-transform: uppercase;
}

.project-card-clean-body h2 a,
.project-card-clean-body h3 a {
  color: inherit;
}

.project-card-clean-body p {
  margin: 6px 0 0;
  color: #626d80;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.4;
}

@media (max-width: 960px) {
  .project-card-clean .service-archive-thumb img,
  .project-card-clean .service-archive-thumb--placeholder {
    height: 220px;
    min-height: 220px;
  }
}

/* Hard override: no image corner radius in project cards. */
.project-card-clean .service-archive-thumb,
.project-card-clean .service-archive-thumb img,
.project-card-clean .service-archive-thumb--placeholder {
  border-radius: 0 !important;
}

.home-blog-section {
  background: #f4f6f8;
  color: var(--ps-primary);
  position: relative;
}

.home-blog-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c4cfdd 22%, #c4cfdd 78%, transparent 100%);
}

.section-head--blog {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}

.section-head--blog .section-title {
  font-size: clamp(30px, 3.2vw, 44px);
}

.section-head--blog .section-line {
  width: 92px;
  height: 3px;
  margin-top: 10px;
  background: var(--ps-accent-orange);
}

.home-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-blog-card {
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0;
  position: relative;
  overflow: visible;
  min-height: 320px;
  display: block;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-blog-grid .default-list-card {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.home-blog-actions {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
}

.home-blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 24px;
}

.home-blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ps-accent-orange);
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.home-blog-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.home-blog-cta:hover,
.home-blog-cta:focus-visible {
  background: transparent;
  color: #df6d00;
  transform: translateY(-2px);
}

.home-blog-card .default-list-thumb img {
  border-radius: 0;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  display: block;
  transition: transform 0.36s ease;
}

.home-blog-card .default-list-thumb {
  display: block;
  margin: 0;
  height: auto;
  overflow: visible;
}

.home-blog-card:hover,
.home-blog-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(8, 24, 46, 0.2);
}

.home-blog-card:hover .default-list-thumb img,
.home-blog-card:focus-within .default-list-thumb img {
  transform: scale(1.04);
}

.home-blog-card:hover .blog-archive-overlay,
.home-blog-card:focus-within .blog-archive-overlay {
  background: linear-gradient(180deg, rgba(4, 26, 55, 0.06) 0%, rgba(4, 26, 55, 0.9) 72%);
}

.home-blog-section .blog-archive-overlay .blog-card-meta {
  color: #d6e3f2;
  margin-top: 0;
}

.home-blog-section .blog-archive-overlay h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.home-blog-section .blog-archive-overlay h3 a {
  color: #ffffff;
}

.home-blog-section .blog-archive-overlay p {
  margin: 8px 0 0;
  color: #dbe8f7;
  font-size: 14px;
  line-height: 1.55;
}

.home-projects-grid .service-archive-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-projects-grid .service-archive-body {
  padding: 10px 0 0;
}

.home-projects-grid .service-archive-thumb {
  border-radius: 0;
  overflow: hidden;
}

.home-projects-grid .service-archive-thumb img,
.home-projects-grid .service-archive-thumb--placeholder {
  border-bottom: 2px solid var(--ps-primary);
}

.services-wrap {
  max-width: var(--ps-container-max);
  margin: 0 auto;
  padding: var(--ps-section-space-y) var(--ps-section-space-x);
}

.section-head {
  text-align: center;
  margin-bottom: 38px;
}

.section-head--services {
  text-align: left;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.section-head--services .section-kicker {
  letter-spacing: 1.8px;
}

.section-head--services .section-line {
  width: 112px;
  height: 3px;
  flex-basis: 100%;
  background: var(--ps-accent-orange);
}

.section-head--services .section-title {
  margin-top: 0;
}

.section-head--projects {
  position: relative;
}

.section-head--projects::after {
  content: none;
}

.section-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(var(--ps-accent-orange-rgb), 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf1fb 100%);
  box-shadow: 0 8px 18px rgba(11, 45, 86, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--ps-primary);
  text-transform: uppercase;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

.section-title {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
}

.section-line {
  display: inline-block;
  width: 82px;
  height: 4px;
  margin-top: 16px;
  background: var(--ps-accent-orange);
}

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

.service-card {
  background: #f7f7f7;
  border: 1px solid #e4e7eb;
  padding: 22px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e66d00 0%, var(--ps-accent-orange) 100%);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  color: var(--ps-accent-green);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.4px;
}

.service-card p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4f5d74;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--ps-accent-green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.services-actions {
  margin-top: 22px;
  text-align: center;
}

.services-actions .home-blog-cta {
  margin: 0 auto;
}

.why-choose-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(4, 26, 55, 0.08);
  border-radius: 0;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  box-shadow: 0 10px 24px rgba(4, 26, 55, 0.06);
}

.why-choose-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--ps-accent-orange) 0%, #ff9a3d 100%);
  z-index: 0;
}

.why-choose-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -140px;
  border: 1px solid rgba(4, 26, 55, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-left: 10px;
}

.why-choose-head {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.why-choose-icon {
  display: none;
}

.why-choose-head h3 {
  margin: 0;
  color: var(--ps-nav);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: 14ch;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.why-choose-head h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 2px;
  background: var(--ps-accent-orange);
}

.why-choose-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.why-choose-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--ps-bg-mid);
  font-size: 16px;
  line-height: 1.45;
  border: 0;
  border-bottom: 1px dashed rgba(4, 26, 55, 0.14);
  border-radius: 0;
  background: transparent;
}

.why-choose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ps-accent-green);
  box-shadow: inset 0 0 0 4px var(--ps-white);
  background: var(--ps-accent-green);
}

.why-choose-media {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 10px;
}

.why-choose-media::before,
.why-choose-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.why-choose-media::before {
  inset: 0;
  border: 1px solid rgba(var(--ps-accent-orange-rgb), 0.45);
}

.why-choose-media::after {
  width: 56px;
  height: 56px;
  right: 0;
  bottom: 0;
  border-right: 4px solid var(--ps-accent-orange);
  border-bottom: 4px solid var(--ps-accent-orange);
}

.why-choose-media img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(4, 26, 55, 0.1);
  box-shadow: none;
}

.stats-strip {
  background: var(--ps-accent-orange);
}

.stats-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-item {
  text-align: center;
  color: var(--ps-white);
}

.stat-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  color: currentColor;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-value {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  font-weight: 700;
}

.stat-label {
  margin: 5px 0 0;
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .services-wrap {
    padding: var(--ps-section-space-y-tablet) var(--ps-section-space-x-tablet);
  }

  .stats-wrap {
    padding: 18px 24px;
  }
}

@media (max-width: 960px) {
  .services-wrap {
    padding: var(--ps-section-space-y-mobile) var(--ps-section-space-x-mobile);
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head--services {
    text-align: center;
    margin-left: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .section-head--blog {
    align-items: center;
    text-align: center;
  }

  .home-blog-actions {
    justify-content: center;
  }

  .home-blog-top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
  }

  .service-card {
    padding: 18px 16px 16px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .why-choose-panel {
    grid-template-columns: 1fr;
    padding: 22px 16px 18px;
    margin-top: 20px;
    gap: 14px;
  }

  .why-choose-panel::before {
    width: 100%;
    height: 6px;
    bottom: auto;
  }

  .why-choose-head h3 {
    font-size: 21px;
    max-width: none;
  }

  .why-choose-list li {
    font-size: 15px;
    padding: 8px 0 8px 30px;
  }

  .why-choose-list li::before {
    top: 10px;
    width: 16px;
    height: 16px;
  }

  .stats-wrap {
    padding: 18px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
  }

  .stat-label {
    font-size: 10px;
  }
}

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

.reviews-section {
  background: linear-gradient(180deg, #f7f7f5 0%, #eef2f6 100%);
  color: var(--ps-primary);
}

.reviews-section .about-wrap {
  position: relative;
}

.reviews-section .about-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c4d1df 24%, #c4d1df 76%, transparent 100%);
}

.reviews-head .section-kicker {
  color: var(--ps-primary);
  border-color: rgba(var(--ps-accent-orange-rgb), 0.5);
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf1fb 100%);
}

.reviews-head .section-title {
  color: var(--ps-primary);
}

.reviews-head .section-line {
  background: var(--ps-accent-orange);
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.reviews-nav {
  width: 38px;
  height: 38px;
  border: 1px solid #cdd8e7;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ps-primary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  background: var(--ps-accent-orange);
  color: #ffffff;
}

.reviews-track-wrap {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 10px);
  background: #ffffff;
  border: 1px solid #d7e2ef;
  border-radius: 16px;
  padding: 22px 20px 20px;
  min-height: 100%;
  position: relative;
  box-shadow: 0 10px 24px rgba(9, 30, 56, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(var(--ps-accent-orange-rgb), 0.45);
  box-shadow: 0 16px 30px rgba(9, 30, 56, 0.11);
}

.review-quote {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 46px;
  line-height: 1;
  color: rgba(var(--ps-accent-orange-rgb), 0.2);
  font-weight: 700;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e1eaf3;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ps-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
}

.review-person {
  min-width: 0;
}

.review-person h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ps-primary);
  letter-spacing: 0.2px;
}

.review-stars {
  margin-top: 6px;
  display: flex;
  gap: 3px;
}

.review-stars span {
  color: #c5cfde;
  font-size: 15px;
  line-height: 1;
}

.review-stars .is-active {
  color: #f4b400;
}

.review-text {
  margin: 0;
  color: #3f536f;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid #edf2f8;
  padding-top: 12px;
}

.reviews-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c8d3e2;
  cursor: pointer;
}

.reviews-dot.is-active {
  width: 26px;
  background: var(--ps-accent-orange);
}

.faq-section {
  background: #f8fafc;
  color: var(--ps-primary);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #ccd8e6 18%, #ccd8e6 82%, transparent 100%);
}

.faq-head .section-title {
  color: var(--ps-primary);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d9e3ef;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: var(--ps-primary);
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ebf3ff;
  color: var(--ps-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 14px;
  color: #4b5d77;
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.is-open .faq-icon {
  background: var(--ps-primary);
  color: #ffffff;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

@media (max-width: 960px) {
  .review-card {
    flex: 0 0 calc(50% - 7px);
  }
}

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

  .reviews-nav {
    display: none;
  }

  .review-card {
    flex: 0 0 100%;
  }
}

.about-page {
  background: #f4f6f8;
}

.about-hero {
  min-height: 310px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.about-hero-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 94px 48px 48px;
}

.about-hero-title {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
}

.about-hero-subtitle {
  margin: 12px 0 0;
  font-size: clamp(17px, 1.55vw, 24px);
  color: #d8e7f9;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0.25px;
  line-height: 1.35;
}

.about-breadcrumb {
  margin-top: 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #e5ecf8;
}

.about-breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.about-breadcrumb a:hover,
.about-breadcrumb a:focus-visible {
  color: var(--ps-accent-green);
  text-decoration-color: var(--ps-accent-green);
}

.about-wrap {
  max-width: var(--ps-container-max);
  margin: 0 auto;
  padding: var(--ps-section-space-y) var(--ps-section-space-x);
}

.services-section,
.reviews-section,
.faq-section,
.about-story,
.about-team,
.about-quality,
.about-consult {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.about-story {
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 24px;
  align-items: stretch;
}

.about-story-copy,
.about-story-media {
  height: 100%;
}

.about-story-copy {
  display: flex;
  flex-direction: column;
}

.about-story-copy .section-kicker {
  align-self: flex-start;
  width: auto;
}

.about-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--ps-accent-orange);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

.about-story-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.12;
  color: var(--ps-primary);
}

.about-story-text {
  margin-top: 18px;
  color: #44536b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  border-bottom: 1px solid #d8dde5;
  padding-bottom: 22px;
  margin-bottom: 20px;
}

.about-story-text p {
  margin: 0 0 14px;
}

.about-story-media {
  border: 1px solid #e4e8ef;
  border-radius: 0;
  background: #fff;
}

.about-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.about-story-stat {
  text-align: center;
  background: #fff;
  border: 1px solid #e5e8ed;
  border-radius: 6px;
  padding: 16px 10px 14px;
}

.about-story-stat-icon {
  width: 40px;
  height: 40px;
  color: var(--ps-primary);
  margin: 0 auto 10px;
  display: inline-flex;
}

.about-story-stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story-stat-num {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--ps-primary);
  font-weight: 700;
}

.about-story-stat-label {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.3;
  color: #4e5d75;
  font-weight: 500;
  text-transform: uppercase;
}

.about-team {
  background: #f4f6f8;
  padding-bottom: 80px;
}

.about-team .section-title {
  color: var(--ps-primary);
}

.about-mvv {
  background: #f4f6f8;
  padding-top: 8px;
}

.about-mvv .section-head {
  margin-bottom: 24px;
}

.about-mvv .section-title {
  color: var(--ps-primary);
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: 0.5px;
}

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

.mvv-card {
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  text-align: center;
  padding: 22px 20px 20px;
}

.mvv-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--ps-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mvv-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvv-card h3 {
  margin: 0;
  color: var(--ps-primary);
  font-size: 36px;
  line-height: 1.15;
}

.mvv-card p {
  margin: 18px 0 0;
  color: #4f5d74;
  font-size: 18px;
  line-height: 1.7;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.mvv-list {
  list-style: none;
  text-align: left;
  margin: 16px 0 0;
  padding: 0;
}

.mvv-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: #3f4f68;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.mvv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff2e6;
  border: 1px solid #ffd0a8;
}

.mvv-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--ps-accent-orange);
  border-bottom: 2px solid var(--ps-accent-orange);
  transform: rotate(40deg);
}

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

.team-card {
  background: #fff;
  border: 1px solid #e5e8ed;
}

.team-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-body {
  padding: 14px 12px 14px;
  text-align: center;
}

.team-body h3 {
  margin: 0;
  color: var(--ps-primary);
  font-size: 20px;
}

.team-role {
  margin: 6px 0 0;
  color: #3f4f68;
  font-size: 14px;
}

.team-exp {
  margin: 6px 0 0;
  color: var(--ps-accent-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.team-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--ps-primary);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.team-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.team-link:hover,
.team-link:focus-visible {
  transform: translateY(-2px);
  color: #fff;
}

.team-linkedin:hover,
.team-linkedin:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
}

.team-facebook:hover,
.team-facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
}

.team-whatsapp:hover,
.team-whatsapp:focus-visible {
  background: var(--ps-accent-orange);
  border-color: var(--ps-accent-orange);
}

.team-instagram:hover,
.team-instagram:focus-visible {
  background: #e4405f;
  border-color: #e4405f;
}

.team-linkedin {
  background: #0a66c2;
  border-color: #0a66c2;
}

.team-facebook {
  background: #1877f2;
  border-color: #1877f2;
}

.team-whatsapp {
  background: var(--ps-accent-orange);
  border-color: var(--ps-accent-orange);
}

.team-instagram {
  background: #e4405f;
  border-color: #e4405f;
}

.team-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.team-links .team-link {
  margin-top: 0;
}

.team-empty {
  text-align: center;
  color: #52617b;
  font-size: 16px;
}

.about-team-subtitle {
  margin: 10px 0 0;
  color: #596882;
  font-size: 15px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.about-quality-strip {
  background: linear-gradient(120deg, var(--ps-primary) 0%, var(--ps-primary) 45%, var(--ps-primary) 100%);
  color: #ffffff;
}

.about-quality-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.quality-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.quality-shield {
  display: none;
}

.quality-shield svg {
  display: none;
}

.quality-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.quality-copy p {
  margin: 8px 0 0;
  color: rgba(233, 242, 253, 0.95);
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quality-point {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 8px 10px;
}

.quality-point-icon {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(4, 35, 71, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-primary);
  font-size: 15px;
  font-weight: 700;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(2, 16, 32, 0.22);
}

.quality-point-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.quality-point p {
  margin: 9px 0 0;
  color: #f2f8ff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.15px;
}

.about-consult-strip {
  background: #ececec;
}

.about-consult-wrap {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
}

.consult-info h3 {
  margin: 0;
  color: var(--ps-primary);
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.08;
}

.consult-info p {
  margin: 14px 0 0;
  color: #5e6a7d;
  font-size: 17px;
  line-height: 1.6;
  max-width: 420px;
}

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

.consult-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ps-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.consult-list a {
  color: inherit;
}

.consult-icon {
  width: 22px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.consult-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--ps-primary);
}

.consult-social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.consult-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ps-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.consult-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.consult-social a:hover,
.consult-social a:focus-visible {
  transform: translateY(-2px);
  background: var(--ps-primary);
}

.consult-form-card {
  background: #ffffff;
  border: 1px solid #d9dee6;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(14, 28, 52, 0.08);
  padding: 20px 22px;
}

.consult-form-card h3 {
  margin: 0;
  color: var(--ps-primary);
  font-size: clamp(30px, 2.4vw, 40px);
  line-height: 1.12;
  border-bottom: 1px solid #d7dce4;
  padding-bottom: 12px;
}

.consult-form {
  margin-top: 14px;
}

.consult-alert {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.consult-alert-success {
  background: #fff2e6;
  border: 1px solid #ffd0a8;
  color: #df6d00;
}

.consult-alert-error {
  background: #fff1f0;
  border: 1px solid #f3c6c3;
  color: #9a2f2a;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.consult-grid > * {
  min-width: 0;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #ced5df;
  border-radius: 4px;
  background: #f8fafc;
  color: #21334e;
  font-size: 13px;
  padding: 11px 14px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.consult-form textarea {
  margin-top: 10px;
  resize: vertical;
  min-height: 92px;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: #90a7c9;
  background: #ffffff;
}

.consult-form .is-invalid {
  border-color: #b42318 !important;
  background: #fff7f7;
}

.consult-form .field-error {
  display: block;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.consult-form-foot {
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.consult-form-foot > * {
  min-width: 0;
}

.consult-file {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #455770;
  font-weight: 700;
}

.consult-file input[type="file"] {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cfd7e2;
  background: #f8fafc;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: #51627a;
  cursor: pointer;
  overflow: hidden;
}

.consult-file input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 4px;
  background: var(--ps-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 12px;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.consult-file input[type="file"]::-webkit-file-upload-button {
  border: 0;
  border-radius: 4px;
  background: var(--ps-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 12px;
  margin-right: 10px;
  cursor: pointer;
}

.consult-file input[type="file"]::file-selector-button:hover {
  background: var(--ps-primary);
}

.consult-file input[type="file"]:focus {
  outline: none;
  border-color: #94add0;
  background: #ffffff;
}

.consult-submit {
  min-width: 210px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--ps-accent-orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.consult-submit:hover,
.consult-submit:focus-visible {
  background: #df6d00;
}

.consult-submit.is-sending {
  cursor: wait;
  opacity: 0.92;
  padding-left: 44px;
}

.consult-submit.is-sending::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;
  position: absolute;
  left: 18px;
  top: 50%;
  margin-top: -7px;
  animation: prospaceSpin 0.7s linear infinite;
}

@keyframes prospaceSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .about-hero-inner,
  .about-wrap {
    padding-left: var(--ps-section-space-x-tablet);
    padding-right: var(--ps-section-space-x-tablet);
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-quality-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .about-hero {
    min-height: 240px;
  }

  .about-hero-inner {
    padding: 80px 20px 30px;
  }

  .about-wrap {
    padding: var(--ps-section-space-y-mobile) var(--ps-section-space-x-mobile);
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-story-media img {
    height: auto;
    min-height: 0;
  }

  .about-story-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-story-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .about-story-stat-num {
    font-size: 26px;
  }

  .about-story-stat-label {
    font-size: 12px;
  }

  .about-story-stat-icon {
    width: 34px;
    height: 34px;
  }

  .mvv-card h3 {
    font-size: 28px;
  }

  .mvv-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .mvv-list li {
    font-size: 15px;
  }

  .quality-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quality-shield {
    margin: 0 auto;
  }

  .quality-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .quality-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-consult-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consult-info h3 {
    font-size: clamp(28px, 8.4vw, 42px);
  }

  .consult-info p {
    font-size: 15px;
    line-height: 1.55;
  }

  .consult-list li {
    font-size: 16px;
    gap: 10px;
  }

  .consult-form-card {
    padding: 16px;
  }

  .consult-form-card h3 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

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

  .consult-form-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .consult-submit {
    width: 100%;
    min-width: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .team-photo img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: stretch;
  }

  .team-photo img {
    height: 100%;
    min-height: 130px;
  }

  .team-body {
    text-align: left;
    padding: 12px 12px 12px 14px;
  }

  .team-body h3 {
    font-size: 18px;
  }

  .team-role {
    font-size: 13px;
  }

  .team-exp {
    font-size: 12px;
  }

  .team-links {
    justify-content: flex-start;
    gap: 7px;
    margin-top: 8px;
  }

  .team-link {
    width: 30px;
    height: 30px;
  }

  .team-link svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 520px) {
  .team-card {
    grid-template-columns: 1fr;
  }

  .team-photo img {
    height: 210px;
    min-height: 0;
  }

  .team-body {
    text-align: center;
    padding: 12px 10px 12px;
  }

  .team-links {
    justify-content: center;
  }
}


.site-footer {
  background: var(--ps-primary);
  color: #d7e4f3;
  margin-top: 0;
}

.footer-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 800;
}

.footer-logo {
  display: inline-block;
  border: 0;
  padding: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}

.footer-logo img,
.footer-custom-logo {
  max-height: 72px;
  width: auto;
  display: block;
}

.brand-tagline-footer {
  margin-top: 6px;
  color: #ffffff;
  padding-left: 0;
}

/* Hide tagline as requested. */
.brand-tagline,
.brand-tagline-footer {
  display: none !important;
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ps-accent-orange);
  text-decoration-color: var(--ps-accent-orange);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: var(--ps-accent-orange);
  text-decoration-color: var(--ps-accent-orange);
}

.footer-contact-ico {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbe7f7;
  flex-shrink: 0;
}

.footer-contact-ico svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 18px;
  height: 18px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.footer-social a svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--ps-accent-orange);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(182, 202, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: none;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--ps-accent-orange);
  text-decoration-color: var(--ps-accent-orange);
}


@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .brand-logo .custom-logo {
    max-height: 40px;
  }

  .brand-tagline {
    font-size: 10px;
    letter-spacing: 1.3px;
    margin-top: 0;
    padding-left: 2px;
  }

  .footer-logo img,
  .footer-custom-logo {
    max-height: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.service-archive-page,
.service-single-page {
  background: #f4f6f8;
}

.service-archive-page .about-hero,
.service-single-page .about-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.service-single-page .about-hero--slider {
  background-image: none !important;
}

.service-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 0.7s ease;
}

.service-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(720px 280px at 84% 20%, rgba(var(--ps-accent-orange-rgb), 0.16) 0%, rgba(var(--ps-accent-orange-rgb), 0) 65%),
    linear-gradient(100deg, rgba(4, 26, 55, 0.72) 0%, rgba(4, 26, 55, 0.44) 52%, rgba(4, 26, 55, 0.2) 100%);
}

.service-archive-page .about-hero-title,
.service-single-page .about-hero-title {
  color: #ffffff;
}

.service-archive-page .about-hero-subtitle,
.service-single-page .about-hero-subtitle {
  color: #e5eef9;
}

.service-archive-section,
.service-single-section {
  background: #f4f6f8;
}

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

.service-archive-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 10px;
  overflow: hidden;
  min-height: 100%;
}

.service-archive-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-archive-body {
  padding: 14px;
}

.service-archive-body h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.service-archive-body h2 a {
  color: var(--ps-primary);
}

.service-archive-body p {
  margin: 10px 0 0;
  color: #51617a;
  font-size: 15px;
  line-height: 1.6;
}

.service-archive-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ps-accent-orange);
  font-size: 13px;
  font-weight: 700;
}

.service-single-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 10px;
  overflow: hidden;
}

.service-single-thumb img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.service-single-content {
  padding: 18px 18px 10px;
  color: #283a55;
  font-size: 16px;
  line-height: 1.75;
}

.service-single-content h2,
.service-single-content h3,
.service-single-content h4 {
  color: var(--ps-primary);
}

.service-single-actions {
  padding: 0 18px 18px;
}

@media (max-width: 960px) {
  .service-archive-page .about-hero,
  .service-single-page .about-hero {
    min-height: 220px;
  }

  .service-archive-grid {
    grid-template-columns: 1fr;
  }

  .service-archive-thumb img {
    height: 200px;
  }

  .service-archive-body h2 {
    font-size: 20px;
  }

  .service-single-content {
    padding: 14px 14px 8px;
    font-size: 15px;
  }

  .service-single-actions {
    padding: 0 14px 14px;
  }
}

.default-page {
  background: #f4f6f8;
}

.default-page .about-hero {
  min-height: 260px;
  background: linear-gradient(110deg, rgba(4, 26, 55, 0.9) 0%, rgba(4, 26, 55, 0.72) 60%, rgba(4, 26, 55, 0.6) 100%);
}

.default-page .about-hero-title,
.default-page .about-hero-subtitle {
  color: #ffffff;
}

.default-page-section {
  background: #f4f6f8;
}

.blog-page .about-hero-subtitle {
  max-width: 760px;
}

.blog-list-grid .blog-list-card {
  display: flex;
  flex-direction: column;
}

.blog-page .blog-list-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 320px;
  display: block;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-page .blog-list-card .default-list-thumb {
  display: block;
  height: 100%;
  margin: 0;
}

.blog-page .blog-list-card .default-list-thumb img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  transition: transform 0.36s ease;
}

.blog-archive-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(4, 26, 55, 0) 0%, rgba(4, 26, 55, 0.82) 75%);
  transition: background 0.26s ease;
}

.blog-page .blog-list-card:hover,
.blog-page .blog-list-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(8, 24, 46, 0.2);
}

.blog-page .blog-list-card:hover .default-list-thumb img,
.blog-page .blog-list-card:focus-within .default-list-thumb img {
  transform: scale(1.04);
}

.blog-page .blog-list-card:hover .blog-archive-overlay,
.blog-page .blog-list-card:focus-within .blog-archive-overlay {
  background: linear-gradient(180deg, rgba(4, 26, 55, 0.06) 0%, rgba(4, 26, 55, 0.9) 72%);
}

.blog-page .blog-archive-overlay .blog-card-meta {
  color: #d6e3f2;
  margin-top: 0;
}

.blog-page .blog-archive-overlay h2 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.blog-page .blog-archive-overlay h2 a {
  color: #ffffff;
}

.blog-page .blog-archive-overlay p {
  margin: 8px 0 0;
  color: #dbe8f7;
  font-size: 14px;
  line-height: 1.55;
}

.blog-card-meta {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a7b92;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.blog-list-card .service-archive-link {
  margin-top: auto;
  padding-top: 10px;
}

.blog-pagination {
  margin-top: 20px;
}

.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #cfd9e7;
  border-radius: 4px;
  background: #ffffff;
  color: var(--ps-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.blog-pagination .page-numbers.current {
  background: var(--ps-primary);
  border-color: var(--ps-primary);
  color: #ffffff;
}

.blog-single-card {
  overflow: hidden;
}

.blog-single-head {
  min-height: 0;
  background: var(--ps-primary);
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-single-head-media {
  position: relative;
}

.blog-single-head-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 55, 0.14) 0%, rgba(4, 26, 55, 0.72) 100%);
}

.blog-single-head-media img {
  width: 100%;
  height: auto;
  object-fit: initial;
  display: block;
  max-height: 560px;
}

.blog-single-head-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding-top: 0;
  padding-bottom: 28px;
}

.blog-single-breadcrumb {
  color: #6d7f99;
}

.blog-single-breadcrumb a {
  color: var(--ps-primary);
}

.blog-single-breadcrumb--overlay {
  color: #e7eef8;
}

.blog-single-breadcrumb--overlay a {
  color: #ffffff;
}

.blog-single-title {
  margin: 10px 0 0;
  color: var(--ps-primary);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.12;
}

.blog-single-title--overlay {
  color: #ffffff;
  max-width: 980px;
}

.blog-single-body {
  color: #2e3f59;
  font-size: 16px;
  line-height: 1.72;
}

.blog-single-body h2,
.blog-single-body h3,
.blog-single-body h4 {
  color: var(--ps-primary);
}

.blog-toc {
  margin: 20px 0 24px;
  background: linear-gradient(160deg, #f7fbff 0%, #edf4fc 100%);
  border: 1px solid #d6e2ef;
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 8px 22px rgba(8, 31, 61, 0.08);
}

.blog-toc h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--ps-primary);
  letter-spacing: 0.02em;
}

.blog-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-toc-head h3 {
  margin: 0;
}

.blog-toc-toggle {
  border: 1px solid #b9cbdf;
  background: #ffffff;
  color: var(--ps-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.blog-toc-toggle:hover,
.blog-toc-toggle:focus-visible {
  background: #f0f6ff;
  border-color: #8eabd0;
}

.blog-toc-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e9f2fc;
  color: var(--ps-primary);
  font-weight: 800;
}

.blog-toc-toggle-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
  transform: rotate(180deg);
}

.blog-toc-toggle[aria-expanded="false"] .blog-toc-toggle-icon svg {
  transform: rotate(0deg);
}

.blog-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.blog-toc ul[hidden] {
  display: none !important;
}

.blog-toc li a {
  display: block;
  color: var(--ps-primary);
  background: #ffffff;
  border: 1px solid #d9e5f2;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  transition: all 0.2s ease;
}

.blog-toc li a:hover,
.blog-toc li a:focus-visible {
  color: var(--ps-primary);
  border-color: #9cb6d3;
  background: #f3f8ff;
  transform: translateX(2px);
}

.blog-toc li.toc-sub {
  padding-left: 16px;
}

.blog-toc li.toc-sub a {
  color: #355675;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 10px;
  border-style: dashed;
}

.blog-toc.is-collapsed {
  padding-bottom: 12px;
}

.blog-toc.is-collapsed .blog-toc-head {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .blog-toc {
    margin: 16px 0 20px;
    padding: 14px 12px 12px;
  }

  .blog-toc h3 {
    font-size: 17px;
  }

  .blog-toc li a {
    padding: 8px 9px;
  }
}

.blog-single-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.blog-single-body th,
.blog-single-body td {
  border: 1px solid #d5dfec;
  padding: 10px 12px;
  text-align: left;
}

.blog-single-body th {
  background: #edf3fb;
  color: var(--ps-primary);
  font-weight: 700;
}

.blog-single-body tr:nth-child(even) td {
  background: #f9fbfe;
}

.blog-related-section {
  margin-top: 24px;
}

.blog-related-head {
  text-align: left;
  margin-bottom: 16px;
}

.blog-related-head .section-title {
  color: var(--ps-primary);
  font-size: clamp(28px, 2.8vw, 40px);
}

.blog-related-section .blog-list-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 320px;
  display: block;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-related-section .blog-list-card .default-list-thumb {
  display: block;
  height: 100%;
  margin: 0;
}

.blog-related-section .blog-list-card .default-list-thumb img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  transition: transform 0.36s ease;
}

.blog-related-section .blog-list-card:hover,
.blog-related-section .blog-list-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(8, 24, 46, 0.2);
}

.blog-related-section .blog-list-card:hover .default-list-thumb img,
.blog-related-section .blog-list-card:focus-within .default-list-thumb img {
  transform: scale(1.04);
}

.blog-related-section .blog-list-card:hover .blog-archive-overlay,
.blog-related-section .blog-list-card:focus-within .blog-archive-overlay {
  background: linear-gradient(180deg, rgba(4, 26, 55, 0.06) 0%, rgba(4, 26, 55, 0.9) 72%);
}

.blog-related-section .blog-archive-overlay .blog-card-meta {
  color: #d6e3f2;
  margin-top: 0;
}

.blog-related-section .blog-archive-overlay h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.blog-related-section .blog-archive-overlay h3 a {
  color: #ffffff;
}

.blog-related-section .blog-archive-overlay p {
  margin: 8px 0 0;
  color: #dbe8f7;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .blog-single-head-media img {
    max-height: 420px;
  }

  .blog-single-head-inner {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .blog-single-head-media img {
    max-height: 300px;
  }
}

.default-content-card,
.default-list-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 10px;
}

.default-content-thumb img,
.default-list-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.default-content-body {
  padding: 16px;
  color: #2d3d57;
  line-height: 1.75;
}

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

.default-list-card {
  padding: 14px;
}

.default-list-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.default-list-card h2 a {
  color: var(--ps-primary);
}

.default-list-card p {
  margin: 10px 0 0;
  color: #55657e;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .default-page .about-hero {
    min-height: 210px;
  }

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

.error-404-page .about-hero-subtitle {
  max-width: 760px;
}

.error-404-section {
  padding-bottom: 24px;
}

.error-404-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(9, 30, 58, 0.08);
  padding: 24px 22px;
  text-align: center;
}

.error-404-code {
  margin: 0;
  color: var(--ps-primary);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
}

.error-404-card h2 {
  margin: 8px 0 0;
  color: var(--ps-primary);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.error-404-card > p {
  margin: 10px auto 0;
  max-width: 640px;
  color: #50627c;
  font-size: 16px;
  line-height: 1.62;
}

.error-404-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.error-404-outline {
  border-color: var(--ps-primary);
  color: var(--ps-primary);
  background: #ffffff;
}

.error-404-outline:hover,
.error-404-outline:focus-visible {
  background: var(--ps-primary);
  color: #ffffff;
}

.error-404-search {
  margin-top: 16px;
}

.error-404-search .search-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.error-404-search .search-field {
  width: 100%;
  border: 1px solid #cad6e6;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 14px;
  color: var(--ps-primary);
}

.error-404-search .search-submit {
  border: 0;
  border-radius: 6px;
  background: var(--ps-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 0 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .error-404-card {
    padding: 18px 14px;
  }

  .error-404-card > p {
    font-size: 15px;
  }

  .error-404-search .search-form {
    grid-template-columns: 1fr;
  }

  .error-404-search .search-submit {
    min-height: 42px;
  }
}

.contact-page {
  background: #f4f6f8;
}

.contact-main-section {
  background: #f4f6f8;
}

.contact-main-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: 20px;
}

.contact-details-card,
.contact-map-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 10px;
  padding: 16px;
}

.contact-details-card h2,
.contact-map-card h2 {
  margin: 0 0 12px;
  color: var(--ps-primary);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 960px) {
  .contact-main-wrap {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    min-height: 300px;
  }
}

.contact-page {
  background: #f4f6f8;
}

.contact-page .about-hero {
  min-height: 280px;
  background: linear-gradient(110deg, rgba(4, 26, 55, 0.9) 0%, rgba(4, 26, 55, 0.74) 55%, rgba(4, 26, 55, 0.62) 100%);
}

.contact-page .about-hero-title {
  color: #ffffff;
}

.contact-page .about-hero-subtitle {
  color: #e7eff9;
}

.contact-page .about-breadcrumb,
.contact-page .about-breadcrumb a {
  color: #e9f1fb;
}

.contact-main-section,
.contact-form-section {
  background: #f4f6f8;
}

.contact-details-card,
.contact-map-card,
.contact-form-theme {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  box-shadow: 0 8px 20px rgba(11, 34, 68, 0.08);
}

.contact-main-wrap {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  align-items: start;
}

.contact-map-section {
  background: #f4f6f8;
  padding-bottom: 24px;
}

.contact-page .contact-details-card .footer-contact-list li,
.contact-page .contact-details-card .footer-contact-list a,
.contact-page .contact-details-card .footer-contact-list span {
  color: var(--ps-primary);
}

.contact-page .contact-details-card .footer-contact-ico {
  color: var(--ps-primary);
}

.contact-page .contact-details-card .footer-social a {
  color: var(--ps-primary);
}

.contact-page .contact-details-card .footer-social a:hover,
.contact-page .contact-details-card .footer-social a:focus-visible {
  color: var(--ps-primary);
}

@media (max-width: 960px) {
  .contact-main-wrap {
    grid-template-columns: 1fr;
  }
}

.contact-page .about-hero {
  min-height: 240px;
  background-size: cover;
  background-position: center center;
}

.contact-side-stack {
  display: grid;
  gap: 14px;
}

.contact-map-mini iframe {
  min-height: 220px;
}

.contact-map-section {
  display: none;
}

@media (max-width: 960px) {
  .contact-page .about-hero {
    min-height: 210px;
    background-position: center center;
  }

  .contact-map-mini iframe {
    min-height: 260px;
  }
}

/* Service Pages Refresh */
.service-archive-page,
.service-single-page {
  background: linear-gradient(180deg, #eef2f6 0%, #f7f9fb 100%);
}

.service-archive-page .about-hero,
.service-single-page .about-hero {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-archive-page .about-hero {
  min-height: 310px;
}

.service-archive-page .about-hero::before,
.service-single-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 280px at 84% 20%, rgba(var(--ps-accent-orange-rgb), 0.22) 0%, rgba(var(--ps-accent-orange-rgb), 0) 65%),
    linear-gradient(100deg, rgba(4, 26, 55, 0.88) 0%, rgba(4, 26, 55, 0.58) 52%, rgba(4, 26, 55, 0.3) 100%);
  pointer-events: none;
}

.service-archive-page .about-hero .about-hero-inner,
.service-single-page .about-hero .about-hero-inner {
  position: relative;
  z-index: 2;
}

.service-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(4, 26, 55, 0.34);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.service-hero-prev {
  left: 18px;
}

.service-hero-next {
  right: 18px;
}

.service-hero-nav:hover,
.service-hero-nav:focus-visible {
  background: rgba(var(--ps-accent-orange-rgb), 0.85);
  border-color: rgba(var(--ps-accent-orange-rgb), 0.95);
}

.service-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.service-hero-dot.is-active {
  width: 26px;
  background: var(--ps-accent-orange);
}

.service-archive-page .about-hero-inner,
.service-single-page .about-hero-inner {
  padding-top: 126px;
  padding-bottom: 56px;
}

.service-archive-page .about-hero-inner {
  padding: 94px 48px 48px;
}

.service-archive-page .about-hero-title,
.service-single-page .about-hero-title {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.service-archive-page .about-hero-title {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
}

.service-archive-page .about-hero-subtitle,
.service-single-page .about-hero-subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.45;
  max-width: 760px;
  color: #e9f2ff;
}

.service-archive-page .about-hero-subtitle {
  margin: 12px 0 0;
  font-size: clamp(17px, 1.55vw, 24px);
  color: #d8e7f9;
  line-height: 1.35;
}

.service-archive-section,
.service-single-section {
  background: transparent;
}

.service-single-breadcrumb-wrap {
  margin-top: 0;
  background: #f4f8fc;
  border-top: 1px solid #d7e2ef;
  border-bottom: 1px solid #d7e2ef;
}

.service-single-breadcrumb-wrap .about-wrap {
  padding-top: 10px;
  padding-bottom: 10px;
}

.service-single-breadcrumb {
  margin: 0;
  color: #2c425f;
}

.service-single-breadcrumb a {
  color: var(--ps-primary);
}

.service-single-breadcrumb a:hover,
.service-single-breadcrumb a:focus-visible {
  color: var(--ps-accent-orange);
  text-decoration-color: var(--ps-accent-orange);
}

.service-archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-archive-card {
  border: 1px solid #d5deea;
  border-radius: 0;
  box-shadow: 0 12px 24px rgba(9, 29, 56, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  background: #ffffff;
  position: relative;
}

.service-archive-card:hover,
.service-archive-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(9, 29, 56, 0.14);
  border-color: #bfd1e6;
}

.service-archive-thumb {
  display: block;
  background: #dfe8f4;
  position: relative;
  overflow: hidden;
}

.service-archive-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 55, 0.1) 0%, rgba(4, 26, 55, 0.82) 100%);
  opacity: 0.35;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-archive-thumb--placeholder {
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff3f8 0%, #dce6f3 100%);
  color: #2f4666;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.service-archive-thumb img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1) translateX(0);
  transition: transform 0.45s ease;
  will-change: transform;
}

.service-archive-card:hover .service-archive-thumb img,
.service-archive-card:focus-within .service-archive-thumb img {
  transform: scale(1.08) translateX(1.5%);
}

.service-archive-card:hover .service-archive-thumb::after,
.service-archive-card:focus-within .service-archive-thumb::after {
  opacity: 1;
}

.service-archive-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 18px 20px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(4, 26, 55, 0) 0%, rgba(4, 26, 55, 0.93) 80%);
  transform: translateY(calc(100% - 82px));
  transition: transform 0.3s ease;
}

.service-archive-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.service-archive-body h2 a {
  color: #ffffff;
  display: inline-block;
  background: var(--ps-primary);
  padding: 4px 8px;
  line-height: 1.2;
}

/* Project cards should not inherit service title label strip */
.project-card-clean .service-archive-body h2 a,
.project-card-clean .service-archive-body h3 a {
  background: transparent !important;
  padding: 0 !important;
}

.service-archive-body p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(235, 245, 255, 0.95);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-archive-link {
  margin-top: 10px;
  color: #ffb067;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 176, 103, 0.55);
  background: rgba(255, 176, 103, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-archive-link:hover,
.service-archive-link:focus-visible {
  background: rgba(255, 176, 103, 0.22);
  color: #ffd2a3;
  border-color: rgba(255, 210, 163, 0.75);
}

.service-archive-card:hover .service-archive-body,
.service-archive-card:focus-within .service-archive-body {
  transform: translateY(0);
}

.service-archive-actions {
  margin-top: 22px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.service-archive-actions .js-services-load-more,
.service-archive-actions .service-load-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  min-width: 220px;
  padding: 12px 18px;
  background: var(--ps-accent-orange);
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(var(--ps-accent-orange-rgb), 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background-color 0.22s ease;
}

.service-archive-actions .js-services-load-more::after,
.service-archive-actions .service-load-more-link::after {
  content: "\2193";
  font-size: 14px;
  line-height: 1;
}

.service-archive-actions .js-services-load-more:hover,
.service-archive-actions .js-services-load-more:focus-visible,
.service-archive-actions .service-load-more-link:hover,
.service-archive-actions .service-load-more-link:focus-visible {
  background: #e66d00;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(230, 109, 0, 0.38);
  filter: none;
}

.service-archive-card.is-hidden {
  display: none;
}

.service-archive-card.service-card-reveal {
  animation: serviceCardReveal 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes serviceCardReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-archive-card.service-card-reveal {
    animation: none;
  }
}

.service-single-card {
  border: 1px solid #d5deea;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(9, 29, 56, 0.08);
  overflow: hidden;
}

.service-single-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.service-single-thumb {
  background: #dfe8f4;
}

.service-single-thumb img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.service-single-content {
  padding: 24px;
  font-size: 17px;
  line-height: 1.78;
  color: #263a55;
}

.service-single-content h2 {
  margin: 0 0 12px;
  color: var(--ps-primary);
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.15;
}

.service-single-content h2,
.service-single-content h3,
.service-single-content h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
}

.service-single-content ul,
.service-single-content ol {
  padding-left: 24px;
}

.service-single-content a {
  color: var(--ps-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-single-content a:hover,
.service-single-content a:focus-visible {
  color: var(--ps-primary);
}

.service-single-content p,
.service-single-content ul,
.service-single-content ol {
  margin: 0 0 14px;
}

.service-single-actions {
  padding: 0 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-single-actions .btn {
  min-width: 210px;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-single-actions .btn-outline {
  border-color: var(--ps-accent-orange);
  color: #ffffff;
  background: var(--ps-accent-orange);
}

.service-single-actions .btn-outline:hover,
.service-single-actions .btn-outline:focus-visible {
  background: #df6d00;
  color: #ffffff;
}

.service-single-actions .service-action-btn--hollow {
  background: transparent;
  border: 2px solid var(--ps-accent-orange);
  color: var(--ps-accent-orange);
}

.service-single-actions .service-action-btn--hollow:hover,
.service-single-actions .service-action-btn--hollow:focus-visible {
  background: rgba(var(--ps-accent-orange-rgb), 0.1);
  color: var(--ps-accent-orange);
}

.service-related-section {
  margin-top: 26px;
}

.service-related-head {
  margin-bottom: 18px;
  text-align: left;
}

.service-related-head .section-title {
  color: var(--ps-primary);
  font-size: clamp(28px, 2.8vw, 40px);
}

.service-related-grid {
  margin-top: 0;
}

.service-related-grid .service-archive-body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.service-related-grid .service-archive-body h3 a {
  color: var(--ps-primary);
}

@media (max-width: 960px) {
  .service-archive-page .about-hero,
  .service-single-page .about-hero {
    min-height: 360px;
  }

  .service-archive-page .about-hero {
    min-height: 230px;
  }

  .service-hero-nav {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .service-hero-prev {
    left: 10px;
  }

  .service-hero-next {
    right: 10px;
  }

  .service-hero-dots {
    bottom: 10px;
  }

  .service-archive-page .about-hero-inner,
  .service-single-page .about-hero-inner {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .service-archive-page .about-hero-inner {
    padding: 88px 24px 28px;
  }

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

  .service-archive-thumb img {
    height: 240px;
  }

  .service-archive-thumb--placeholder {
    min-height: 160px;
  }

  .service-archive-body {
    position: static;
    transform: none;
    background: #ffffff;
    color: var(--ps-primary);
    padding: 16px 14px 18px;
  }

  .service-archive-body h2 {
    font-size: 20px;
  }

  .service-archive-body h2 a {
    color: #ffffff;
    background: var(--ps-primary);
  }

  .service-archive-body p {
    color: #425772;
  }

  .service-archive-link {
    color: var(--ps-accent-orange);
    border-color: rgba(var(--ps-accent-orange-rgb), 0.4);
    background: rgba(var(--ps-accent-orange-rgb), 0.08);
  }

  .service-archive-card:hover,
  .service-archive-card:focus-within {
    transform: none;
    box-shadow: 0 12px 24px rgba(9, 29, 56, 0.08);
  }

  .service-single-content {
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .service-single-content h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .service-single-actions {
    padding: 0 16px 16px;
  }

  .service-single-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .service-related-section {
    margin-top: 18px;
  }
}

@media (max-width: 1200px) and (min-width: 961px) {
  .service-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-single-page .about-hero {
    min-height: 320px;
  }

  .service-archive-grid {
    grid-template-columns: 1fr;
  }

  .service-archive-thumb img {
    height: 190px;
  }

  .service-archive-thumb--placeholder {
    min-height: 190px;
  }
}

/* Project cards final system: consistent spacing, clean hover, mobile-first behavior. */
.home-projects-grid,
.project-archive-page .service-archive-grid {
  gap: 22px !important;
}

.project-card-clean {
  background: #ffffff !important;
  border: 1px solid #d8e2ee !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 8px 20px rgba(9, 29, 56, 0.07) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
  position: relative;
}

.project-card-clean:hover,
.project-card-clean:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(9, 29, 56, 0.13) !important;
  border-color: #c6d4e5 !important;
}

.project-card-clean .service-archive-thumb {
  display: block;
  overflow: hidden !important;
  background: #e4ebf4;
}

.project-card-clean .service-archive-thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-card-clean:hover .service-archive-thumb img,
.project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.03);
}

.project-card-clean .service-archive-thumb--placeholder {
  min-height: 300px;
}

.project-card-clean-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 14px 16px !important;
  background: linear-gradient(180deg, rgba(4, 26, 55, 0) 0%, rgba(4, 26, 55, 0.92) 85%);
}

.project-card-clean-body h2,
.project-card-clean-body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.project-card-clean-body p {
  margin: 8px 0 0;
  color: rgba(231, 241, 252, 0.95);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.project-card-clean:hover .project-card-clean-body h2,
.project-card-clean:hover .project-card-clean-body h3,
.project-card-clean:focus-within .project-card-clean-body h2,
.project-card-clean:focus-within .project-card-clean-body h3 {
  opacity: 1;
  transform: translateY(0);
}

.project-card-clean:hover .project-card-clean-body p,
.project-card-clean:focus-within .project-card-clean-body p {
  opacity: 1;
  transform: translateY(0);
}

/* requested: no image corner radius in project cards */
.project-card-clean .service-archive-thumb,
.project-card-clean .service-archive-thumb img,
.project-card-clean .service-archive-thumb--placeholder {
  border-radius: 0 !important;
}

@media (max-width: 1200px) {
  .project-card-clean .service-archive-thumb img,
  .project-card-clean .service-archive-thumb--placeholder {
    height: 340px;
    min-height: 340px;
  }

  .project-card-clean-body h2,
  .project-card-clean-body h3 {
    font-size: 20px;
  }

  .project-card-clean-body p {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .home-projects-grid,
  .project-archive-page .service-archive-grid {
    gap: 16px !important;
  }

  .home-projects-slider {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-projects-nav {
    display: none;
  }

  .project-card-clean .service-archive-thumb img,
  .project-card-clean .service-archive-thumb--placeholder {
    height: 300px;
    min-height: 300px;
  }

  .project-card-clean-body {
    position: static;
    background: #ffffff;
    padding: 13px 12px 14px !important;
  }

  .project-card-clean-body h2,
  .project-card-clean-body h3 {
    font-size: 16px;
    color: var(--ps-primary);
    text-transform: none;
    opacity: 1;
    transform: none;
  }

  .project-card-clean-body p {
    margin-top: 6px;
    color: #6a7587;
    font-size: 13px;
    line-height: 1.4;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .home-projects-track .project-card-clean {
    flex: 0 0 100%;
  }
}

/* Home project slider visual override: title overlay only, no tag-like labels. */
.home-projects-track .project-card-clean .service-archive-thumb--placeholder span {
  display: none;
}

.home-projects-track .project-card-clean-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 14px 16px !important;
  background: linear-gradient(180deg, rgba(4, 26, 55, 0) 0%, rgba(4, 26, 55, 0.9) 86%);
}

.home-projects-track .project-card-clean-body h2,
.home-projects-track .project-card-clean-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-projects-track .project-card-clean-body p {
  display: none !important;
}

@media (max-width: 960px) {
  .home-projects-track .project-card-clean-body {
    position: absolute;
    background: linear-gradient(180deg, rgba(4, 26, 55, 0) 0%, rgba(4, 26, 55, 0.9) 86%);
    padding: 12px 12px 14px !important;
  }

  .home-projects-track .project-card-clean-body h2,
  .home-projects-track .project-card-clean-body h3 {
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
  }
}

/* Final unified redesign: Home Project section + Project Archive cards */
.project-card-clean {
  background: #ffffff !important;
  border: 1px solid #d7e1ee !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 22px rgba(8, 26, 48, 0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.project-card-clean:hover,
.project-card-clean:focus-within {
  transform: translateY(-4px);
  border-color: #c4d3e6 !important;
  box-shadow: 0 16px 30px rgba(8, 26, 48, 0.14) !important;
}

.project-card-clean .service-archive-thumb {
  display: block;
  overflow: hidden !important;
  background: #dfe8f4;
  border-radius: 0 !important;
}

.project-card-clean .service-archive-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.project-card-clean:hover .service-archive-thumb img,
.project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.04);
}

.project-card-clean .service-archive-thumb--placeholder {
  min-height: 280px;
  border-radius: 0 !important;
}

.project-card-clean-body {
  position: static !important;
  background: #ffffff !important;
  padding: 16px 16px 18px !important;
}

.project-card-clean-body h2,
.project-card-clean-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ps-primary);
  text-transform: none;
  letter-spacing: 0.1px;
  opacity: 1 !important;
  transform: none !important;
}

.project-card-clean-body h2 a,
.project-card-clean-body h3 a {
  color: inherit;
}

.project-card-clean-body p {
  margin: 8px 0 0;
  color: #5b6d83;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
}

/* Keep home slider 2-card layout while using redesigned cards */
.home-projects-track {
  gap: 16px;
}

.home-projects-track .project-card-clean {
  flex: 0 0 calc(50% - 8px);
  min-height: 0;
}

@media (max-width: 1200px) {
  .project-card-clean .service-archive-thumb img,
  .project-card-clean .service-archive-thumb--placeholder {
    height: 250px;
    min-height: 250px;
  }

  .project-card-clean-body h2,
  .project-card-clean-body h3 {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .project-card-clean .service-archive-thumb img,
  .project-card-clean .service-archive-thumb--placeholder {
    height: 220px;
    min-height: 220px;
  }

  .project-card-clean-body {
    padding: 14px 12px 16px !important;
  }

  .project-card-clean-body h2,
  .project-card-clean-body h3 {
    font-size: 18px;
  }
}

/* Final correction: same project-card design for Home slider + Project archive */
.home-projects-track .project-card-clean,
.project-archive-page .project-card-clean {
  background: #ffffff !important;
  border: 1px solid #d8e2ee !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
  transform: none;
}

/* Match same project-card design on Service archive + Related services */
.service-archive-page:not(.project-archive-page) .project-card-clean,
.service-related-grid .project-card-clean {
  background: #ffffff !important;
  border: 1px solid #d8e2ee !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
  transform: none !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean:hover,
.service-archive-page:not(.project-archive-page) .project-card-clean:focus-within,
.service-related-grid .project-card-clean:hover,
.service-related-grid .project-card-clean:focus-within {
  transform: none !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb img,
.service-related-grid .project-card-clean .service-archive-thumb img {
  height: 260px !important;
  transform: scale(1) !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean:hover .service-archive-thumb img,
.service-archive-page:not(.project-archive-page) .project-card-clean:focus-within .service-archive-thumb img,
.service-related-grid .project-card-clean:hover .service-archive-thumb img,
.service-related-grid .project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.045) !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb--placeholder,
.service-related-grid .project-card-clean .service-archive-thumb--placeholder {
  min-height: 260px !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean-body,
.service-related-grid .project-card-clean-body {
  position: static !important;
  background: #ffffff !important;
  padding: 14px 14px 16px !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean-body h2,
.service-related-grid .project-card-clean-body h2 {
  font-size: 20px !important;
  color: var(--ps-primary) !important;
  text-transform: none !important;
}

.service-archive-page:not(.project-archive-page) .project-card-clean-body p,
.service-related-grid .project-card-clean-body p {
  margin-top: 8px !important;
  color: #5b6d83 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Service cards: no hover effect on title/paragraph, image hover only */
.service-archive-page:not(.project-archive-page) .project-card-clean:hover .project-card-clean-body h2,
.service-archive-page:not(.project-archive-page) .project-card-clean:focus-within .project-card-clean-body h2,
.service-related-grid .project-card-clean:hover .project-card-clean-body h2,
.service-related-grid .project-card-clean:focus-within .project-card-clean-body h2,
.service-archive-page:not(.project-archive-page) .project-card-clean:hover .project-card-clean-body p,
.service-archive-page:not(.project-archive-page) .project-card-clean:focus-within .project-card-clean-body p,
.service-related-grid .project-card-clean:hover .project-card-clean-body p,
.service-related-grid .project-card-clean:focus-within .project-card-clean-body p {
  opacity: 1 !important;
  transform: none !important;
}

.service-archive-page:not(.project-archive-page) .service-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* 3 cards per row/view: project archive + home project section */
.project-archive-page .service-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.home-projects-track .project-card-clean {
  flex: 0 0 calc(33.333% - 11px) !important;
}

.home-projects-track .project-card-clean:hover,
.home-projects-track .project-card-clean:focus-within,
.project-archive-page .project-card-clean:hover,
.project-archive-page .project-card-clean:focus-within {
  transform: translateY(-3px);
  border-color: #c6d3e5 !important;
  box-shadow: 0 14px 28px rgba(8, 26, 48, 0.14) !important;
}

.home-projects-track .project-card-clean .service-archive-thumb,
.project-archive-page .project-card-clean .service-archive-thumb {
  border-radius: 0 !important;
  background: #e2eaf4;
}

.home-projects-track .project-card-clean .service-archive-thumb img,
.project-archive-page .project-card-clean .service-archive-thumb img {
  height: 260px !important;
  width: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.32s ease;
}

.home-projects-track .project-card-clean:hover .service-archive-thumb img,
.home-projects-track .project-card-clean:focus-within .service-archive-thumb img,
.project-archive-page .project-card-clean:hover .service-archive-thumb img,
.project-archive-page .project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.035);
}

.home-projects-track .project-card-clean .service-archive-thumb--placeholder,
.project-archive-page .project-card-clean .service-archive-thumb--placeholder {
  min-height: 260px !important;
}

.home-projects-track .project-card-clean-body,
.project-archive-page .project-card-clean-body {
  position: static !important;
  background: #ffffff !important;
  padding: 14px 14px 16px !important;
}

.home-projects-track .project-card-clean-body h2,
.home-projects-track .project-card-clean-body h3,
.project-archive-page .project-card-clean-body h2,
.project-archive-page .project-card-clean-body h3 {
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  color: var(--ps-primary) !important;
  text-transform: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.home-projects-track .project-card-clean-body p,
.project-archive-page .project-card-clean-body p {
  margin: 8px 0 0 !important;
  color: #5b6d83 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Consistent line layout for card titles + paragraphs across cards */
.service-archive-body h2,
.service-archive-body h3,
.project-card-clean-body h2,
.project-card-clean-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.service-archive-body p,
.project-card-clean-body p,
.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Hard lock: no hover/pop animation for card text and title links */
.service-archive-card .service-archive-body h2,
.service-archive-card .service-archive-body h3,
.service-archive-card .service-archive-body p,
.project-card-clean .project-card-clean-body h2,
.project-card-clean .project-card-clean-body h3,
.project-card-clean .project-card-clean-body p,
.service-archive-card .service-archive-body h2 a,
.service-archive-card .service-archive-body h3 a {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.service-archive-card:hover .service-archive-body h2,
.service-archive-card:hover .service-archive-body h3,
.service-archive-card:hover .service-archive-body p,
.service-archive-card:focus-within .service-archive-body h2,
.service-archive-card:focus-within .service-archive-body h3,
.service-archive-card:focus-within .service-archive-body p,
.project-card-clean:hover .project-card-clean-body h2,
.project-card-clean:hover .project-card-clean-body h3,
.project-card-clean:hover .project-card-clean-body p,
.project-card-clean:focus-within .project-card-clean-body h2,
.project-card-clean:focus-within .project-card-clean-body h3,
.project-card-clean:focus-within .project-card-clean-body p {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 960px) {
  .home-projects-track .project-card-clean .service-archive-thumb img,
  .project-archive-page .project-card-clean .service-archive-thumb img,
  .home-projects-track .project-card-clean .service-archive-thumb--placeholder,
  .project-archive-page .project-card-clean .service-archive-thumb--placeholder {
    height: 220px !important;
    min-height: 220px !important;
  }

  .project-archive-page .service-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-projects-track .project-card-clean-body h2,
  .home-projects-track .project-card-clean-body h3,
  .project-archive-page .project-card-clean-body h2,
  .project-archive-page .project-card-clean-body h3 {
    font-size: 17px !important;
  }
}

@media (max-width: 700px) {
  .home-projects-track .project-card-clean {
    flex: 0 0 100% !important;
  }

  .project-archive-page .service-archive-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final requested behavior:
   - top image
   - bottom white content strip
   - heading + 1-line subtitle
   - hover effect only on image
   - same for home + project archive cards
*/
.home-projects-track .project-card-clean,
.project-archive-page .project-card-clean {
  transform: none !important;
}

.home-projects-track .project-card-clean:hover,
.home-projects-track .project-card-clean:focus-within,
.project-archive-page .project-card-clean:hover,
.project-archive-page .project-card-clean:focus-within {
  transform: none !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
}

.home-projects-track .project-card-clean .service-archive-thumb img,
.project-archive-page .project-card-clean .service-archive-thumb img {
  transform: scale(1) !important;
}

.home-projects-track .project-card-clean:hover .service-archive-thumb img,
.home-projects-track .project-card-clean:focus-within .service-archive-thumb img,
.project-archive-page .project-card-clean:hover .service-archive-thumb img,
.project-archive-page .project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.045) !important;
}

.home-projects-track .project-card-clean-body,
.project-archive-page .project-card-clean-body {
  position: static !important;
  background: #ffffff !important;
  padding: 12px 14px 14px !important;
}

.home-projects-track .project-card-clean-body p,
.project-archive-page .project-card-clean-body p {
  margin-top: 6px !important;
  -webkit-line-clamp: 1 !important;
  line-clamp: 1;
}

/* Card layout repair: fixed text positions for project/service card grids. */
.home-projects-track .project-card-clean,
.project-archive-page .project-card-clean,
.service-archive-page:not(.project-archive-page) .project-card-clean,
.service-related-grid .project-card-clean {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #d8e2ee !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
  transform: none !important;
}

.home-projects-track .project-card-clean:hover,
.home-projects-track .project-card-clean:focus-within,
.project-archive-page .project-card-clean:hover,
.project-archive-page .project-card-clean:focus-within,
.service-archive-page:not(.project-archive-page) .project-card-clean:hover,
.service-archive-page:not(.project-archive-page) .project-card-clean:focus-within,
.service-related-grid .project-card-clean:hover,
.service-related-grid .project-card-clean:focus-within {
  transform: none !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
}

.home-projects-track .project-card-clean .service-archive-thumb,
.project-archive-page .project-card-clean .service-archive-thumb,
.service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb,
.service-related-grid .project-card-clean .service-archive-thumb {
  display: block !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  background: #dfe8f4 !important;
}

.home-projects-track .project-card-clean .service-archive-thumb img,
.project-archive-page .project-card-clean .service-archive-thumb img,
.service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb img,
.service-related-grid .project-card-clean .service-archive-thumb img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1) !important;
  transition: transform 0.32s ease !important;
}

.home-projects-track .project-card-clean:hover .service-archive-thumb img,
.home-projects-track .project-card-clean:focus-within .service-archive-thumb img,
.project-archive-page .project-card-clean:hover .service-archive-thumb img,
.project-archive-page .project-card-clean:focus-within .service-archive-thumb img,
.service-archive-page:not(.project-archive-page) .project-card-clean:hover .service-archive-thumb img,
.service-archive-page:not(.project-archive-page) .project-card-clean:focus-within .service-archive-thumb img,
.service-related-grid .project-card-clean:hover .service-archive-thumb img,
.service-related-grid .project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.045) !important;
}

.home-projects-track .project-card-clean .service-archive-thumb--placeholder,
.project-archive-page .project-card-clean .service-archive-thumb--placeholder,
.service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb--placeholder,
.service-related-grid .project-card-clean .service-archive-thumb--placeholder {
  min-height: 260px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-projects-track .project-card-clean-body,
.project-archive-page .project-card-clean-body,
.service-archive-page:not(.project-archive-page) .project-card-clean-body,
.service-related-grid .project-card-clean-body {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  flex: 1 1 auto !important;
  min-height: 116px !important;
  padding: 14px 14px 16px !important;
  background: #ffffff !important;
  color: var(--ps-primary) !important;
  transform: none !important;
  transition: none !important;
}

.home-projects-track .project-card-clean-body h2,
.home-projects-track .project-card-clean-body h3,
.project-archive-page .project-card-clean-body h2,
.project-archive-page .project-card-clean-body h3,
.service-archive-page:not(.project-archive-page) .project-card-clean-body h2,
.service-related-grid .project-card-clean-body h2 {
  margin: 0 !important;
  min-height: 2.4em !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  color: var(--ps-primary) !important;
  text-transform: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.home-projects-track .project-card-clean-body h2 a,
.home-projects-track .project-card-clean-body h3 a,
.project-archive-page .project-card-clean-body h2 a,
.project-archive-page .project-card-clean-body h3 a,
.service-archive-page:not(.project-archive-page) .project-card-clean-body h2 a,
.service-related-grid .project-card-clean-body h2 a {
  color: inherit !important;
  background: transparent !important;
  padding: 0 !important;
  transform: none !important;
  transition: none !important;
}

.home-projects-track .project-card-clean-body p,
.project-archive-page .project-card-clean-body p,
.service-archive-page:not(.project-archive-page) .project-card-clean-body p,
.service-related-grid .project-card-clean-body p {
  margin: 8px 0 0 !important;
  min-height: 1.45em !important;
  color: #5b6d83 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

@media (max-width: 960px) {
  .home-projects-track .project-card-clean .service-archive-thumb img,
  .project-archive-page .project-card-clean .service-archive-thumb img,
  .service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb img,
  .service-related-grid .project-card-clean .service-archive-thumb img,
  .home-projects-track .project-card-clean .service-archive-thumb--placeholder,
  .project-archive-page .project-card-clean .service-archive-thumb--placeholder,
  .service-archive-page:not(.project-archive-page) .project-card-clean .service-archive-thumb--placeholder,
  .service-related-grid .project-card-clean .service-archive-thumb--placeholder {
    height: 220px !important;
    min-height: 220px !important;
  }

  .home-projects-track .project-card-clean-body h2,
  .home-projects-track .project-card-clean-body h3,
  .project-archive-page .project-card-clean-body h2,
  .project-archive-page .project-card-clean-body h3,
  .service-archive-page:not(.project-archive-page) .project-card-clean-body h2,
  .service-related-grid .project-card-clean-body h2 {
    font-size: 17px !important;
  }
}

@media (max-width: 960px) {
  .home-projects-nav {
    display: none;
  }
}

/* Final card behavior fixes: keep load-more hidden cards hidden and unify archive/slider cards. */
.service-archive-card.is-hidden,
.project-card-clean.is-hidden,
.js-service-card.is-hidden {
  display: none !important;
}

.service-archive-page:not(.project-archive-page) .service-archive-grid,
.service-related-grid,
.project-archive-page .service-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.home-projects-track .project-card-clean {
  flex: 0 0 calc(33.333% - 11px) !important;
}

.home-projects-track .project-card-clean,
.project-archive-page .project-card-clean,
.service-archive-page:not(.project-archive-page) .project-card-clean,
.service-related-grid .project-card-clean {
  min-height: 0 !important;
}

.home-projects-track .project-card-clean-body,
.project-archive-page .project-card-clean-body,
.service-archive-page:not(.project-archive-page) .project-card-clean-body,
.service-related-grid .project-card-clean-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.home-projects-track .project-card-clean-body h2,
.home-projects-track .project-card-clean-body h3,
.project-archive-page .project-card-clean-body h2,
.project-archive-page .project-card-clean-body h3,
.service-archive-page:not(.project-archive-page) .project-card-clean-body h2,
.service-related-grid .project-card-clean-body h2,
.home-projects-track .project-card-clean:hover .project-card-clean-body h2,
.home-projects-track .project-card-clean:hover .project-card-clean-body h3,
.project-archive-page .project-card-clean:hover .project-card-clean-body h2,
.project-archive-page .project-card-clean:hover .project-card-clean-body h3,
.service-archive-page:not(.project-archive-page) .project-card-clean:hover .project-card-clean-body h2,
.service-related-grid .project-card-clean:hover .project-card-clean-body h2 {
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.home-projects-track .project-card-clean-body p,
.project-archive-page .project-card-clean-body p,
.service-archive-page:not(.project-archive-page) .project-card-clean-body p,
.service-related-grid .project-card-clean-body p,
.home-projects-track .project-card-clean:hover .project-card-clean-body p,
.project-archive-page .project-card-clean:hover .project-card-clean-body p,
.service-archive-page:not(.project-archive-page) .project-card-clean:hover .project-card-clean-body p,
.service-related-grid .project-card-clean:hover .project-card-clean-body p {
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 960px) {
  .service-archive-page:not(.project-archive-page) .service-archive-grid,
  .service-related-grid,
  .project-archive-page .service-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-projects-track .project-card-clean {
    flex-basis: calc(50% - 8px) !important;
  }
}

@media (max-width: 700px) {
  .service-archive-page:not(.project-archive-page) .service-archive-grid,
  .service-related-grid,
  .project-archive-page .service-archive-grid {
    grid-template-columns: 1fr !important;
  }

  .home-projects-track .project-card-clean {
    flex-basis: 100% !important;
  }
}

/* Home project slider: force the same card design as the project archive page. */
.home-projects-section .home-projects-track {
  display: flex !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.home-projects-section .home-projects-track .project-card-clean {
  display: flex !important;
  flex: 0 0 calc(33.333% - 11px) !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #d8e2ee !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
  transform: none !important;
}

.home-projects-section .home-projects-track .project-card-clean:hover,
.home-projects-section .home-projects-track .project-card-clean:focus-within {
  transform: none !important;
  box-shadow: 0 8px 20px rgba(8, 26, 48, 0.08) !important;
}

.home-projects-section .home-projects-track .service-archive-thumb {
  display: block !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  background: #dfe8f4 !important;
}

.home-projects-section .home-projects-track .service-archive-thumb img,
.home-projects-section .home-projects-track .service-archive-thumb--placeholder {
  width: 100% !important;
  height: 260px !important;
  min-height: 260px !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1) !important;
  transition: transform 0.32s ease !important;
}

.home-projects-section .home-projects-track .project-card-clean:hover .service-archive-thumb img,
.home-projects-section .home-projects-track .project-card-clean:focus-within .service-archive-thumb img {
  transform: scale(1.045) !important;
}

.home-projects-section .home-projects-track .project-card-clean-body {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 116px !important;
  padding: 14px 14px 16px !important;
  background: #ffffff !important;
  color: var(--ps-primary) !important;
  transform: none !important;
  transition: none !important;
}

.home-projects-section .home-projects-track .project-card-clean-body h2,
.home-projects-section .home-projects-track .project-card-clean-body h3,
.home-projects-section .home-projects-track .project-card-clean:hover .project-card-clean-body h2,
.home-projects-section .home-projects-track .project-card-clean:hover .project-card-clean-body h3 {
  margin: 0 !important;
  min-height: 2.4em !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  color: var(--ps-primary) !important;
  text-transform: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.home-projects-section .home-projects-track .project-card-clean-body h2 a,
.home-projects-section .home-projects-track .project-card-clean-body h3 a {
  color: inherit !important;
  background: transparent !important;
  padding: 0 !important;
}

.home-projects-section .home-projects-track .project-card-clean-body p,
.home-projects-section .home-projects-track .project-card-clean:hover .project-card-clean-body p {
  margin: 8px 0 0 !important;
  min-height: 1.45em !important;
  color: #5b6d83 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

@media (max-width: 960px) {
  .home-projects-section .home-projects-track .project-card-clean {
    flex-basis: calc(50% - 8px) !important;
  }

  .home-projects-section .home-projects-track .service-archive-thumb img,
  .home-projects-section .home-projects-track .service-archive-thumb--placeholder {
    height: 220px !important;
    min-height: 220px !important;
  }
}

@media (max-width: 700px) {
  .home-projects-section .home-projects-track .project-card-clean {
    flex-basis: 100% !important;
  }
}

/* Consistency polish layer (non-breaking) */
:root {
  --ps-radius-sm: 6px;
  --ps-radius-md: 10px;
  --ps-radius-lg: 14px;
  --ps-radius-xl: 16px;
  --ps-shadow-soft: 0 8px 20px rgba(8, 26, 48, 0.08);
  --ps-shadow-soft-hover: 0 14px 28px rgba(8, 26, 48, 0.14);
  --ps-transition-fast: 0.2s ease;
  --ps-transition-base: 0.22s ease;
}

.section-head {
  margin-bottom: 36px;
}

.section-title {
  margin-top: 10px;
  line-height: 1.15;
}

.btn {
  transition: transform var(--ps-transition-base), box-shadow var(--ps-transition-base), filter var(--ps-transition-base);
}

.service-card {
  border-radius: var(--ps-radius-md);
}

.review-card {
  border-radius: var(--ps-radius-xl);
  transition: transform var(--ps-transition-base), box-shadow var(--ps-transition-base), border-color var(--ps-transition-base);
}

.faq-item {
  border-radius: var(--ps-radius-md);
}

.consult-form-card {
  border-radius: var(--ps-radius-md);
  box-shadow: var(--ps-shadow-soft);
}

.project-card-clean {
  box-shadow: var(--ps-shadow-soft) !important;
  transition: transform var(--ps-transition-base), box-shadow var(--ps-transition-base), border-color var(--ps-transition-base) !important;
}

.project-card-clean:hover,
.project-card-clean:focus-within {
  box-shadow: var(--ps-shadow-soft-hover) !important;
}

.service-feature-strip {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}

.service-feature-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 24, 0.72);
}

.service-feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 52px 0;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-feature-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  color: var(--ps-accent-orange);
  flex: 0 0 64px;
}

.service-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-feature-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2.4vw, 46px);
  line-height: 1.15;
}

@media (max-width: 1100px) {
  .service-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0;
  }

  .service-feature-item h3 {
    font-size: clamp(20px, 5.2vw, 34px);
  }
}

/* Single service: cleaner content + right sidebar related list */
.service-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.service-single-sidebar {
  padding: 16px 0 0;
  position: sticky;
  top: 110px;
}

.service-single-sidebar h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ps-primary);
}

.service-sidebar-cta {
  margin-top: 16px;
  padding: 16px;
  background: #f4f8fc;
  border-left: 3px solid var(--ps-accent-orange);
}

.service-sidebar-cta h4 {
  margin: 0 0 8px;
  color: var(--ps-primary);
  font-size: 20px;
  line-height: 1.25;
}

.service-sidebar-cta p {
  margin: 0 0 12px;
  color: #395271;
  font-size: 14px;
  line-height: 1.45;
}

.service-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--ps-accent-orange);
}

.service-sidebar-list li {
  margin: 0;
}

.service-sidebar-list a {
  display: block;
  padding: 10px 0 10px 14px;
  color: #203955;
  font-weight: 600;
  line-height: 1.35;
  border-bottom: 1px solid #d9e4f0;
}

.service-sidebar-list a:hover,
.service-sidebar-list a:focus-visible {
  color: var(--ps-accent-orange);
}

/* Full-width, shorter feature strip */
.service-single-page .service-feature-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.service-single-page .service-feature-grid {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 48px 28px;
  gap: 20px;
}

.service-single-page .service-feature-icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  color: var(--ps-accent-orange);
}

.service-single-page .service-feature-item h3 {
  font-size: clamp(18px, 2vw, 34px);
}

.service-single-card {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.service-single-content {
  padding: 0 0 14px !important;
}

@media (max-width: 1100px) {
  .service-single-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-single-sidebar {
    padding-top: 2px;
    position: static;
  }

  .service-single-page .service-feature-grid {
    padding: 32px 16px;
  }
}

.service-single-top-cta {
  background: #f4f8fc;
  border-bottom: 1px solid #d7e2ef;
}

.service-single-top-cta .about-wrap {
  padding-top: 10px;
  padding-bottom: 10px;
}

.service-single-top-cta .service-action-btn {
  background: #ffffff;
  color: var(--ps-primary);
  border: 1px solid #cfdceb;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.service-single-top-cta .service-action-btn:hover,
.service-single-top-cta .service-action-btn:focus-visible {
  border-color: var(--ps-accent-orange);
  color: var(--ps-accent-orange);
  background: #ffffff;
}

/* Single service content typography polish */
.service-single-content {
  font-size: clamp(17px, 1.08vw, 19px) !important;
  line-height: 1.85 !important;
  color: var(--ps-primary) !important;
}

.service-single-content h2 {
  font-size: clamp(34px, 3vw, 48px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.2px;
  margin-bottom: 14px !important;
}

.service-single-content h3 {
  font-size: clamp(27px, 2.2vw, 36px) !important;
  line-height: 1.18 !important;
  margin-top: 30px !important;
  margin-bottom: 12px !important;
  color: var(--ps-primary) !important;
}

.service-single-content h4 {
  font-size: clamp(22px, 1.7vw, 28px) !important;
  line-height: 1.25 !important;
  margin-top: 24px !important;
  margin-bottom: 10px !important;
  color: var(--ps-primary) !important;
}

.service-single-content p {
  margin: 0 0 16px !important;
  max-width: 72ch;
}

.service-single-content ul,
.service-single-content ol {
  margin: 0 0 18px !important;
  padding-left: 22px !important;
}

.service-single-content li {
  margin-bottom: 6px;
}

.service-single-content blockquote {
  margin: 18px 0;
  padding: 10px 0 10px 16px;
  border-left: 3px solid var(--ps-accent-orange);
  color: #29486a;
  font-style: italic;
  background: #f6f9fd;
}

.service-content-gallery {
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-content-gallery-title {
  margin: 20px 0 10px !important;
  color: var(--ps-primary) !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1.2 !important;
}

.service-content-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e5edf7;
  border: 1px solid #d7e2ef;
  box-shadow: 0 8px 18px rgba(8, 24, 46, 0.08);
}

.service-content-gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(6, 22, 43, 0) 0%, rgba(6, 22, 43, 0.84) 100%);
  pointer-events: none;
  z-index: 1;
}

.service-content-gallery-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.service-content-gallery-item:hover img,
.service-content-gallery-item:focus-visible img {
  transform: scale(1.04);
}

.service-content-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
}

.service-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 15, 30, 0.92);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.service-gallery-lightbox[hidden] {
  display: none !important;
}

.service-gallery-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.service-gallery-lightbox-stage img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
  background: var(--ps-primary);
}

.service-gallery-lightbox-close {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.service-gallery-lightbox-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

body.service-gallery-open {
  overflow: hidden;
}

.service-content-cta {
  margin-top: 20px !important;
}

.service-content-cta .service-action-btn {
  background: var(--ps-accent-orange) !important;
  border-color: var(--ps-accent-orange) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.service-content-cta .service-action-btn:hover,
.service-content-cta .service-action-btn:focus-visible {
  background: #df6d00 !important;
  border-color: #df6d00 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.service-mission-vision {
  background: #f2f2f2;
  padding: 52px 0 48px;
}

.service-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.service-mv-item h3 {
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 2px solid var(--ps-accent-orange);
  color: var(--ps-accent-orange);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-mv-item p {
  margin: 0;
  color: #2e3e55;
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 960px) {
  .service-mission-vision {
    padding: 34px 0;
  }

  .service-mv-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-mv-item h3 {
    font-size: 24px;
  }

  .service-mv-item p {
    font-size: 16px;
    line-height: 1.65;
  }
}

.service-archive-feature-strip .service-feature-grid {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 38px 22px;
}

.service-archive-feature-strip .service-feature-icon {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.service-archive-feature-strip .service-feature-item h3 {
  font-size: clamp(24px, 2.1vw, 38px);
}

.service-mv-cta {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #d6dde7;
  text-align: center;
}

.service-mv-cta h2 {
  margin: 0 0 10px;
  color: var(--ps-primary);
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.15;
}

.service-mv-cta p {
  margin: 0 auto 18px;
  max-width: 780px;
  color: #3f5877;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .service-archive-feature-strip .service-feature-grid {
    padding: 28px 14px;
  }

  .service-mv-cta {
    margin-top: 24px;
    padding-top: 18px;
  }
}

@media (max-width: 960px) {
  .service-single-content {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .service-single-content h2 {
    font-size: clamp(28px, 7vw, 36px) !important;
  }

  .service-single-content h3 {
    font-size: clamp(23px, 6vw, 30px) !important;
  }

  .service-content-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-content-gallery-item img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .service-content-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-content-gallery-item img {
    height: 210px;
  }

  .service-content-gallery-caption {
    padding: 9px 10px;
    font-size: 13px;
  }

  .service-gallery-lightbox {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 10px 16px;
  }

  .service-gallery-lightbox-stage img {
    max-width: 94vw;
    max-height: 72vh;
  }

  .service-gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .service-gallery-lightbox-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .service-gallery-lightbox-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Global rounded button system */
:root {
  --ps-btn-radius: 999px;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
.quote-btn,
.home-blog-cta,
.service-archive-actions .js-services-load-more,
.service-archive-actions .service-load-more-link,
.consult-submit,
.error-404-search .search-submit,
.blog-pagination .page-numbers,
.home-projects-nav,
.reviews-nav,
.service-hero-nav,
.blog-toc-toggle,
.team-link,
.consult-social a,
.footer-social a {
  border-radius: var(--ps-btn-radius) !important;
}

.consult-file input[type="file"]::file-selector-button,
.consult-file input[type="file"]::-webkit-file-upload-button {
  border-radius: var(--ps-btn-radius) !important;
}

/* Font split: site sections use previous sans-style look, content areas keep Playfair SemiBold. */
:root {
  --ps-font-site: "Segoe UI", Tahoma, Arial, sans-serif;
  --ps-font-content: "Playfair Display", Georgia, "Times New Roman", serif;
}

body {
  font-family: var(--ps-font-site);
}

.site-header,
.hero-home,
.hero-overlay,
.services-section,
.home-projects-section,
.home-blog-section,
.reviews-section,
.faq-section,
.site-footer,
.contact-page .about-hero,
.about-quality-strip,
.service-feature-strip,
.stats-strip {
  font-family: var(--ps-font-site);
}

.default-content-body,
.blog-single-body,
.service-single-content,
.default-page-section .about-wrap,
.default-page-section .default-content-card,
.default-page-section .default-list-card,
.default-list-card p,
.default-list-card h2,
.default-list-card h2 a {
  font-family: var(--ps-font-content) !important;
  font-weight: 600;
}

