/* =========================================================
   PGRT Modern Redesign
   Primary #00205b · Secondary / Action #f4772e
   ========================================================= */

body.pgrt-body {
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(244, 119, 46, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at -10% 20%, rgba(0, 32, 91, 0.05), transparent 45%),
    #ffffff;
  color: #243247;
}

h1, h2, h3, h4 {
  color: var(--pgrt-primary);
  letter-spacing: -0.02em;
}

a { color: var(--pgrt-primary); }
a:hover { color: var(--pgrt-secondary); }

/* ---------- Buttons ---------- */
.pgrt-btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.pgrt-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.pgrt-btn:hover::after { transform: translateX(120%); }
.pgrt-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 119, 46, 0.28);
}

.pgrt-btn--primary,
.pgrt-btn:not([class*="--"]),
.pgrt-btn--blue,
.pgrt-btn--blue-sm,
.pgrt-btn--gold-sm,
.pgrt-btn--teal {
  background: var(--pgrt-secondary);
  border-color: var(--pgrt-secondary);
  color: #fff;
}
.pgrt-btn--primary:hover,
.pgrt-btn:not([class*="--"]):hover,
.pgrt-btn--blue:hover,
.pgrt-btn--blue-sm:hover,
.pgrt-btn--gold-sm:hover,
.pgrt-btn--teal:hover {
  background: var(--pgrt-secondary-hover);
  border-color: var(--pgrt-secondary-hover);
  color: #fff;
}

.pgrt-btn--outline-dark {
  border-color: var(--pgrt-primary);
  color: var(--pgrt-primary);
  background: transparent;
}
.pgrt-btn--outline-dark:hover {
  background: var(--pgrt-primary);
  border-color: var(--pgrt-primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 32, 91, 0.22);
}

.pgrt-btn--outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.pgrt-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* ---------- Header ---------- */
.pgrt-header {
  height: 84px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 32, 91, 0.06);
  box-shadow: 0 10px 30px rgba(0, 32, 91, 0.04);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
}
.pgrt-body--home .pgrt-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-logo__title,
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-nav__list a,
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-nav__search {
  color: #ffffff;
}
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-logo__tagline {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-logo__tagline-line {
  background: rgba(255, 255, 255, 0.7);
}
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-nav__list a:hover,
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-nav__list .current-menu-item > a {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.pgrt-body--home .pgrt-header:not(.is-scrolled) .pgrt-nav-toggle__bar {
  background: #ffffff;
}
.pgrt-header.is-scrolled,
.pgrt-body:not(.pgrt-body--home) .pgrt-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(0, 32, 91, 0.1);
}
.pgrt-header__inner { height: 84px; }

.pgrt-logo__title { color: var(--pgrt-primary); }
.pgrt-logo__title::after {
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(244, 119, 46, 0.12) 44%,
    rgba(255, 143, 74, 0.55) 50%,
    rgba(244, 119, 46, 0.12) 56%,
    transparent 62%
  );
}
.pgrt-logo__tagline { background: var(--pgrt-primary); }
.pgrt-logo__tagline-line { background: var(--pgrt-primary); }
.pgrt-logo__tagline-line::after {
  background: linear-gradient(90deg, transparent, var(--pgrt-secondary), transparent);
}

.pgrt-nav__list a {
  color: var(--pgrt-primary);
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pgrt-nav__list a:hover,
.pgrt-nav__list .current-menu-item > a {
  background: rgba(244, 119, 46, 0.12);
  color: var(--pgrt-secondary-hover);
}
.pgrt-nav__search { color: var(--pgrt-primary); }

/* ---------- Full-bleed image hero ---------- */
.pgrt-hero.pgrt-hero--fullbleed,
.pgrt-body--home .pgrt-hero.pgrt-hero--fullbleed {
  --pgrt-hero-banner-height: 100svh;
  position: relative;
  min-height: var(--pgrt-hero-banner-height);
  height: var(--pgrt-hero-banner-height);
  padding: 0;
  margin: 0;
  border: none;
  background: #00153d;
  overflow: hidden;
}
.pgrt-hero--fullbleed::before,
.pgrt-hero--fullbleed::after {
  display: none;
}
.pgrt-hero--fullbleed .pgrt-hero-slider,
.pgrt-body--home .pgrt-hero--fullbleed .pgrt-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: var(--pgrt-hero-banner-height);
  background: transparent;
}
.pgrt-hero--fullbleed .pgrt-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.pgrt-hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.pgrt-hero-slide__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7.5s ease;
}
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero-slide__media img {
  transform: scale(1);
}
.pgrt-hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(0, 21, 61, 0.88) 0%,
      rgba(0, 32, 91, 0.72) 42%,
      rgba(0, 32, 91, 0.38) 68%,
      rgba(0, 32, 91, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(0, 16, 47, 0.45) 0%, transparent 42%);
  pointer-events: none;
}
.pgrt-hero--fullbleed .pgrt-hero__inner,
.pgrt-body--home .pgrt-hero--fullbleed .pgrt-container.pgrt-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  min-height: var(--pgrt-hero-banner-height);
  margin: 0 auto;
  padding: calc(84px + 48px) clamp(20px, 4vw, 56px) 96px;
  grid-template-columns: none;
  gap: 0;
}
.pgrt-hero--fullbleed .pgrt-hero__inner::before,
.pgrt-hero--fullbleed .pgrt-hero__inner::after {
  display: none;
}
.pgrt-hero--fullbleed .pgrt-hero__copy {
  max-width: 640px;
  padding: 0;
  color: #ffffff;
}
.pgrt-hero--fullbleed .pgrt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #ffc49a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pgrt-hero--fullbleed .pgrt-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pgrt-secondary);
  display: block;
}
.pgrt-hero--fullbleed .pgrt-hero__title {
  margin: 0 0 18px;
  max-width: 14ch;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.pgrt-hero--fullbleed .pgrt-hero__sub {
  margin: 0 0 32px;
  max-width: 34ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.pgrt-hero--fullbleed .pgrt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pgrt-hero--fullbleed .pgrt-hero__cta .pgrt-btn--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: transparent;
}
.pgrt-hero--fullbleed .pgrt-hero__cta .pgrt-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.pgrt-hero--fullbleed .pgrt-hero__art {
  display: none;
}

.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero__title {
  animation: pgrt-title-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero__sub,
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero__cta,
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero__eyebrow {
  animation: pgrt-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero__sub { animation-delay: 0.1s; }
.pgrt-hero--fullbleed .pgrt-hero-slide.is-active .pgrt-hero__cta { animation-delay: 0.18s; }

.pgrt-hero--fullbleed .pgrt-hero-slider__nav {
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 21, 61, 0.35);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.pgrt-hero--fullbleed .pgrt-hero-slider__nav:hover {
  background: var(--pgrt-secondary);
  border-color: var(--pgrt-secondary);
  color: #fff;
}
.pgrt-hero--fullbleed .pgrt-hero-slider__nav--prev { left: clamp(12px, 2vw, 28px); }
.pgrt-hero--fullbleed .pgrt-hero-slider__nav--next { right: clamp(12px, 2vw, 28px); }
.pgrt-hero--fullbleed .pgrt-hero-slider__dots {
  z-index: 5;
  bottom: 28px;
}
.pgrt-hero--fullbleed .pgrt-hero-slider__dots button {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
}
.pgrt-hero--fullbleed .pgrt-hero-slider__dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--pgrt-secondary);
}

/* ---------- Stats ---------- */
.pgrt-stats-bar {
  background: linear-gradient(120deg, var(--pgrt-primary) 0%, #0a3a7a 60%, #173d7a 100%);
  border-top: 0;
  position: relative;
  overflow: hidden;
  padding: 52px 0;
}
.pgrt-stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244, 119, 46, 0.28), transparent 35%),
    radial-gradient(circle at 80% 40%, rgba(255, 143, 74, 0.16), transparent 32%);
  pointer-events: none;
}
.pgrt-stats-bar .pgrt-container { position: relative; z-index: 1; }
.pgrt-stat__value {
  background: linear-gradient(90deg, #fff, var(--pgrt-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pgrt-stat__label { color: rgba(255,255,255,0.88); }

/* ---------- Sections ---------- */
.pgrt-section { padding: 88px 0; }
.pgrt-section--muted,
.pgrt-section--alt {
  background:
    linear-gradient(180deg, rgba(0,32,91,0.02), transparent 40%),
    var(--pgrt-surface);
}
.pgrt-section--dark {
  background: linear-gradient(145deg, var(--pgrt-primary), #0a3a7a 70%);
  position: relative;
  overflow: hidden;
}
.pgrt-section--dark::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,119,46,0.28), transparent 68%);
  animation: pgrt-orb-float 10s ease-in-out infinite;
  pointer-events: none;
}
.pgrt-section-head__title { color: var(--pgrt-primary); }
.pgrt-section--dark .pgrt-section-head__title { color: #fff; }
.pgrt-section-head__sub { color: var(--pgrt-muted); }

/* ---------- Cards (generic) ---------- */
.pgrt-home-cred__item,
.pgrt-card:not(.pgrt-card--service):not(.pgrt-card--industry),
.pgrt-feature,
.pgrt-testimonial,
.pgrt-about-pillar,
.pgrt-about-panel,
.pgrt-contact-card {
  border-radius: var(--pgrt-radius);
  border: 1px solid rgba(0, 32, 91, 0.08);
  background: var(--pgrt-surface-elevated);
  box-shadow: 0 10px 28px rgba(0, 32, 91, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.pgrt-home-cred__item:hover,
.pgrt-card:not(.pgrt-card--service):not(.pgrt-card--industry):hover,
.pgrt-feature:hover,
.pgrt-testimonial:hover,
.pgrt-about-pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--pgrt-shadow);
  border-color: rgba(244, 119, 46, 0.35);
}

.pgrt-home-cred__label { color: var(--pgrt-secondary); }
.pgrt-home-cred__icon {
  background: linear-gradient(145deg, rgba(244,119,46,0.14), rgba(0,32,91,0.06));
  color: var(--pgrt-primary);
  border-radius: 14px;
}

/* Sector expertise — readable on dark background */
.pgrt-section--dark .pgrt-section-head__sub {
  color: rgba(255, 255, 255, 0.78);
}
.pgrt-section--dark .pgrt-card--industry {
  display: block;
  position: relative;
  padding: 26px 24px 28px;
  border-radius: var(--pgrt-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}
.pgrt-section--dark .pgrt-card--industry:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(244, 119, 46, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.pgrt-section--dark .pgrt-card--industry h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.35;
}
.pgrt-section--dark .pgrt-card--industry p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}
.pgrt-section--dark .pgrt-card--industry .pgrt-card__arrow {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pgrt-secondary);
  transition: transform 0.3s ease, color 0.3s ease;
}
.pgrt-section--dark .pgrt-card--industry:hover .pgrt-card__arrow {
  color: #ffc49a;
  transform: translateX(4px);
}

/* Light industry cards (hub page) */
.pgrt-card--industry-light {
  background: #ffffff;
  border: 1px solid rgba(0, 32, 91, 0.08);
  color: var(--pgrt-primary);
  box-shadow: 0 10px 28px rgba(0, 32, 91, 0.05);
}
.pgrt-card--industry-light h3 { color: var(--pgrt-primary); }
.pgrt-card--industry-light p { color: var(--pgrt-muted); }
.pgrt-card--industry-light:hover {
  border-color: rgba(244, 119, 46, 0.35);
  box-shadow: var(--pgrt-shadow);
}

/* ---------- Services showcase ---------- */
.pgrt-services-showcase {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(0, 32, 91, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(244, 119, 46, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 45%, #f7f9fc 100%);
}
.pgrt-services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 32, 91, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 32, 91, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.pgrt-services-showcase .pgrt-container { position: relative; z-index: 1; }

.pgrt-services-showcase__head {
  max-width: 640px;
  margin: 0 0 48px;
}
.pgrt-services-showcase__eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pgrt-secondary);
}
.pgrt-services-showcase__head .pgrt-section-head__title {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.15;
}
.pgrt-services-showcase__head .pgrt-section-head__sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pgrt-muted);
}

.pgrt-services-showcase__board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 32, 91, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 60px rgba(0, 32, 91, 0.08);
  backdrop-filter: blur(8px);
}

.pgrt-services-showcase .pgrt-card--service {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 18px;
  row-gap: 0;
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 32px 34px 28px;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(0, 32, 91, 0.07);
  border-bottom: 1px solid rgba(0, 32, 91, 0.07);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transform: none;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}
.pgrt-services-showcase .pgrt-card--service:nth-child(2n) {
  border-right: none;
}
.pgrt-services-showcase .pgrt-card--service:nth-last-child(-n+2) {
  border-bottom: none;
}
.pgrt-services-showcase .pgrt-card--service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pgrt-secondary), var(--pgrt-primary));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pgrt-services-showcase .pgrt-card--service::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 119, 46, 0.1), transparent 42%),
    linear-gradient(135deg, rgba(0, 32, 91, 0.035), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pgrt-services-showcase .pgrt-card--service:hover {
  background: #ffffff;
  box-shadow: none;
  border-color: rgba(0, 32, 91, 0.07);
  transform: none;
}
.pgrt-services-showcase .pgrt-card--service:hover::before,
.pgrt-services-showcase .pgrt-card--service:hover::after {
  opacity: 1;
}

.pgrt-card--service__index {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: start;
  margin-top: 2px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(0, 32, 91, 0.18);
  transition: color 0.35s ease, transform 0.35s ease;
  z-index: 1;
}
.pgrt-services-showcase .pgrt-card--service:hover .pgrt-card--service__index {
  color: var(--pgrt-secondary);
  transform: translateY(-2px);
}

.pgrt-services-showcase .pgrt-card--service__top {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin-bottom: 16px;
  z-index: 1;
}
.pgrt-services-showcase .pgrt-card--service__tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pgrt-primary);
  background: rgba(0, 32, 91, 0.06);
  border: none;
}
.pgrt-services-showcase .pgrt-card--service:hover .pgrt-card--service__tag {
  color: var(--pgrt-secondary-hover);
  background: rgba(244, 119, 46, 0.12);
}

.pgrt-services-showcase .pgrt-card--service .pgrt-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 32, 91, 0.06), rgba(244, 119, 46, 0.1));
  color: var(--pgrt-primary);
  border: 1px solid rgba(0, 32, 91, 0.08);
  animation: none;
  box-shadow: none;
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__icon::after { display: none; }
.pgrt-services-showcase .pgrt-card--service[data-service-icon] .pgrt-card__icon {
  background: linear-gradient(145deg, rgba(0, 32, 91, 0.06), rgba(244, 119, 46, 0.1));
  color: var(--pgrt-primary);
  border-color: rgba(0, 32, 91, 0.08);
}
.pgrt-services-showcase .pgrt-card--service:hover .pgrt-card__icon {
  background: var(--pgrt-primary);
  color: #fff;
  border-color: var(--pgrt-primary);
  box-shadow: 0 12px 28px rgba(0, 32, 91, 0.22);
}
.pgrt-services-showcase .pgrt-card--service:hover .pgrt-card__icon svg {
  transform: scale(1.06);
}

.pgrt-services-showcase .pgrt-card--service .pgrt-card__title,
.pgrt-services-showcase .pgrt-card--service .pgrt-card__excerpt,
.pgrt-services-showcase .pgrt-card--service .pgrt-card__link {
  grid-column: 2;
  padding-left: 0;
  padding-right: 0;
  z-index: 1;
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__title {
  grid-row: 2;
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__title a {
  color: var(--pgrt-primary);
  text-decoration: none;
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__title a:hover {
  color: var(--pgrt-secondary);
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__excerpt {
  grid-row: 3;
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pgrt-muted);
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__link {
  grid-row: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pgrt-secondary);
  background: none;
}
.pgrt-services-showcase .pgrt-card--service .pgrt-card__link svg {
  transition: transform 0.3s ease;
}
.pgrt-services-showcase .pgrt-card--service:hover .pgrt-card__link {
  color: var(--pgrt-primary);
}
.pgrt-services-showcase .pgrt-card--service:hover .pgrt-card__link svg {
  transform: translateX(5px);
}

.pgrt-services-showcase .pgrt-section__cta {
  margin-top: 40px;
}

.pgrt-feature__icon {
  background: rgba(244, 119, 46, 0.12);
  color: var(--pgrt-secondary);
}
.pgrt-testimonial { border-top: 4px solid var(--pgrt-secondary); }
.pgrt-card--insight { border-top: 3px solid var(--pgrt-primary); }

/* ---------- CTA / Footer ---------- */
.pgrt-cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(244,119,46,0.28), transparent 35%),
    linear-gradient(120deg, var(--pgrt-primary), #0a3a7a);
  border-top: 4px solid var(--pgrt-secondary);
}
.pgrt-page-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(244,119,46,0.22), transparent 30%),
    linear-gradient(120deg, var(--pgrt-primary), #0a3a7a);
}
.pgrt-breadcrumbs a { color: var(--pgrt-gold-light); }

.pgrt-footer {
  background: linear-gradient(165deg, #00102f 0%, var(--pgrt-primary) 70%);
}
.pgrt-footer__newsletter {
  background: linear-gradient(90deg, var(--pgrt-primary), #0a3a7a);
  position: relative;
  overflow: hidden;
}
.pgrt-footer__newsletter::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,119,46,0.28), transparent 68%);
  pointer-events: none;
}
.pgrt-footer__links a:hover { color: var(--pgrt-secondary); }
.pgrt-footer .pgrt-logo__title { color: #ffffff; }
.pgrt-footer .pgrt-logo__tagline {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.pgrt-footer .pgrt-logo__title::after {
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255,255,255,0.08) 44%,
    rgba(244,119,46,0.5) 50%,
    rgba(255,255,255,0.08) 56%,
    transparent 62%
  );
}

/* ---------- About / Contact ---------- */
.pgrt-about-redesign__eyebrow,
.pgrt-contact-premium__eyebrow { color: var(--pgrt-secondary); }
.pgrt-about-redesign__intro-band {
  background: linear-gradient(135deg, var(--pgrt-primary) 0%, #0a3a7a 100%);
}
.pgrt-about-redesign__stats {
  background: linear-gradient(135deg, var(--pgrt-primary), #0a3a7a);
}
.pgrt-about-values-grid span {
  border-color: rgba(244, 119, 46, 0.25);
  background: rgba(244, 119, 46, 0.08);
  color: var(--pgrt-primary);
}
.pgrt-about-timeline__year { color: var(--pgrt-secondary); }
.pgrt-about-timeline__item::before {
  background: var(--pgrt-secondary);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(244, 119, 46, 0.35);
}

/* ---------- Scroll reveal ---------- */
.pgrt-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.pgrt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pgrt-reveal[data-delay="1"] { transition-delay: 0.08s; }
.pgrt-reveal[data-delay="2"] { transition-delay: 0.16s; }
.pgrt-reveal[data-delay="3"] { transition-delay: 0.24s; }
.pgrt-reveal[data-delay="4"] { transition-delay: 0.32s; }

.pgrt-body--home .pgrt-section:not(.pgrt-section--dark)::before {
  background: linear-gradient(90deg, transparent, rgba(0,32,91,0.25), rgba(244,119,46,0.45), transparent);
  height: 2px;
  opacity: 0.7;
}

@keyframes pgrt-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pgrt-title-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes pgrt-diagonal-pulse {
  0%, 100% { transform: skewX(-24deg) translateY(0); filter: brightness(1); }
  50% { transform: skewX(-24deg) translateY(-4px); filter: brightness(1.08); }
}
@keyframes pgrt-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-24px, 18px, 0) scale(1.08); }
}

@media (max-width: 1024px) {
  .pgrt-hero.pgrt-hero--fullbleed,
  .pgrt-body--home .pgrt-hero.pgrt-hero--fullbleed {
    --pgrt-hero-banner-height: min(100svh, 900px);
  }
  .pgrt-services-showcase__board {
    grid-template-columns: 1fr;
  }
  .pgrt-services-showcase .pgrt-card--service {
    border-right: none;
  }
  .pgrt-services-showcase .pgrt-card--service:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(0, 32, 91, 0.07);
  }
  .pgrt-services-showcase .pgrt-card--service:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .pgrt-hero.pgrt-hero--fullbleed,
  .pgrt-body--home .pgrt-hero.pgrt-hero--fullbleed {
    --pgrt-hero-banner-height: 100svh;
  }
  .pgrt-hero--fullbleed .pgrt-hero__inner,
  .pgrt-body--home .pgrt-hero--fullbleed .pgrt-container.pgrt-hero__inner {
    padding: calc(76px + 36px) 20px 88px;
    align-items: flex-end;
  }
  .pgrt-hero--fullbleed .pgrt-hero__title {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }
  .pgrt-hero--fullbleed .pgrt-hero__sub {
    max-width: none;
  }
  .pgrt-hero--fullbleed .pgrt-hero-slider__nav {
    display: none;
  }
  .pgrt-header,
  .pgrt-header__inner { height: 76px; }
  .pgrt-section { padding: 64px 0; }
  .pgrt-services-showcase { padding: 72px 0; }
  .pgrt-services-showcase__board { border-radius: 20px; }
  .pgrt-services-showcase .pgrt-card--service {
    grid-template-columns: 1fr;
    padding: 26px 22px 24px;
  }
  .pgrt-card--service__index {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 12px;
    font-size: 1.35rem;
  }
  .pgrt-services-showcase .pgrt-card--service__top,
  .pgrt-services-showcase .pgrt-card--service .pgrt-card__title,
  .pgrt-services-showcase .pgrt-card--service .pgrt-card__excerpt,
  .pgrt-services-showcase .pgrt-card--service .pgrt-card__link {
    grid-column: 1;
  }
  .pgrt-services-showcase .pgrt-card--service__top { grid-row: 2; }
  .pgrt-services-showcase .pgrt-card--service .pgrt-card__title { grid-row: 3; }
  .pgrt-services-showcase .pgrt-card--service .pgrt-card__excerpt { grid-row: 4; }
  .pgrt-services-showcase .pgrt-card--service .pgrt-card__link { grid-row: 5; }
}

@media (prefers-reduced-motion: reduce) {
  .pgrt-btn::after,
  .pgrt-section--dark::before,
  .pgrt-hero-slide.is-active .pgrt-hero__title,
  .pgrt-hero-slide.is-active .pgrt-hero__sub,
  .pgrt-hero-slide.is-active .pgrt-hero__cta,
  .pgrt-hero-slide.is-active .pgrt-hero__eyebrow,
  .pgrt-hero-slide__media img {
    animation: none !important;
    transition: none !important;
  }
  .pgrt-hero-slide__media img {
    transform: none !important;
  }
  .pgrt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Kill legacy compact-hero rules when full-bleed is active */
.pgrt-body--home .pgrt-hero.pgrt-hero--fullbleed {
  padding-top: 0 !important;
  min-height: 100svh !important;
  height: 100svh !important;
  background: #00153d !important;
  border: none !important;
  color: #fff;
}
.pgrt-body--home .pgrt-hero.pgrt-hero--fullbleed .pgrt-hero-slider {
  height: 100% !important;
  min-height: 100% !important;
}
.pgrt-body--home .pgrt-hero.pgrt-hero--fullbleed .pgrt-container.pgrt-hero__inner {
  display: flex !important;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  min-height: 100%;
}
