/* PGRT Corporate — Premium advisory theme */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pgrt-body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #1f2937;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pgrt-ink);
}
a { color: var(--pgrt-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pgrt-gold); }
img { max-width: 100%; height: auto; }
.pgrt-container { width: min(1140px, 100% - 48px); margin: 0 auto; }
.screen-reader-text, .pgrt-skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.pgrt-skip:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 12px 16px; background: var(--pgrt-ink); color: #fff; z-index: 10001; }

/* Buttons */
.pgrt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.pgrt-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.12); }
.pgrt-btn--primary,
.pgrt-btn:not([class*="--"]),
.pgrt-btn--blue,
.pgrt-btn--blue-sm,
.pgrt-btn--gold-sm,
.pgrt-btn--teal {
  background: var(--pgrt-blue);
  color: #fff;
  border-color: var(--pgrt-blue);
}
.pgrt-btn--blue-sm,
.pgrt-btn--gold-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}
.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-blue-hover);
  color: #fff;
  border-color: var(--pgrt-blue-hover);
}
.pgrt-btn--outline { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.pgrt-btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.pgrt-btn--outline-dark { background: transparent; border-color: var(--pgrt-blue); color: var(--pgrt-blue); }
.pgrt-btn--outline-dark:hover { background: var(--pgrt-blue); color: #fff; border-color: var(--pgrt-blue); }

/* Header */
.pgrt-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.35s;
}
.pgrt-header.is-scrolled, .pgrt-body:not(.pgrt-body--home) .pgrt-header {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.pgrt-header__inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
  padding: 0 clamp(18px, 3.2vw, 56px);
}
.pgrt-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.pgrt-logo--text {
  align-items: center;
  gap: 14px;
}
.pgrt-logo__img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.pgrt-logo--text .pgrt-logo__img {
  height: 58px;
}
.pgrt-logo__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}
.pgrt-logo__title {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: "Libre Baskerville", Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  font-weight: 700;
  color: var(--pgrt-navy);
  letter-spacing: 0.015em;
  white-space: nowrap;
  isolation: isolate;
}
.pgrt-logo__title::after {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(201, 169, 98, 0.08) 44%,
    rgba(232, 213, 163, 0.42) 50%,
    rgba(201, 169, 98, 0.08) 56%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: pgrt-logo-gleam 5.5s ease-in-out infinite;
  pointer-events: none;
}
.pgrt-logo__tagline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  width: 100%;
}
.pgrt-logo__tagline-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: var(--pgrt-navy);
  opacity: 0.85;
  min-width: 18px;
  max-width: 42px;
  overflow: hidden;
}
.pgrt-logo__tagline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.95), transparent);
  transform: translateX(-120%);
  animation: pgrt-logo-line-sweep 5.5s ease-in-out infinite;
}
.pgrt-logo__tagline-line:last-child::after {
  animation-delay: 2.75s;
}
.pgrt-logo__tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--pgrt-navy);
  color: #ffffff;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
}
.pgrt-logo__mark {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--pgrt-gold), var(--pgrt-gold-light));
  color: var(--pgrt-ink); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.pgrt-body:not(.pgrt-body--home) .pgrt-logo,
.pgrt-header.is-scrolled .pgrt-logo { color: #1f2937; }

@keyframes pgrt-logo-gleam {
  0%, 72%, 100% { transform: translateX(-130%); }
  38% { transform: translateX(130%); }
}
@keyframes pgrt-logo-line-sweep {
  0%, 72%, 100% { transform: translateX(-120%); opacity: 0; }
  38% { transform: translateX(120%); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .pgrt-logo__title::after,
  .pgrt-logo__tagline-line::after {
    animation: none;
  }
}

.pgrt-nav { display: flex; align-items: center; gap: 8px; }
.pgrt-nav__list {
  display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.pgrt-nav__list a {
  color: #374151; padding: 10px 14px; font-size: 0.9rem; font-weight: 500; border-radius: 4px;
}
.pgrt-nav__list a:hover { color: var(--pgrt-accent-text); background: #f3f4f6; }
.pgrt-nav__list > li { position: relative; }
.pgrt-nav__list > li.is-mega-open > a {
  color: var(--pgrt-accent-text);
  background: #eef4fb;
}
.pgrt-nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.pgrt-nav__search {
  color: #374151;
  padding: 8px;
  display: inline-flex;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}
.pgrt-nav__search:hover { background: #f3f4f6; border-color: #e5e7eb; }
.pgrt-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.pgrt-nav-toggle__bar {
  display: block; width: 24px; height: 2px; background: #374151; margin: 5px 0; transition: 0.3s;
}

.pgrt-main { padding-top: 80px; min-height: 60vh; }

/* Mega menu */
.pgrt-mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(8px);
  width: min(1240px, calc(100vw - 56px));
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.pgrt-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pgrt-mega__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  gap: 22px;
  padding: 22px;
}
.pgrt-mega__col h4,
.pgrt-mega__cta h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--pgrt-deep);
}
.pgrt-mega__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.pgrt-mega__col a {
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.4;
  padding: 6px 8px;
  border-radius: 6px;
  display: block;
}
.pgrt-mega__col a:hover {
  color: var(--pgrt-accent-text);
  background: #f3f7fb;
}
.pgrt-mega__cta {
  border-left: 1px solid #e5e7eb;
  padding-left: 18px;
}
.pgrt-mega__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d7c8c;
}
.pgrt-mega__cta p {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 0.88rem;
}

/* Resources mega — icon + title + description list */
.pgrt-mega--resources {
  left: auto;
  right: auto;
  width: min(420px, calc(100vw - 48px));
  transform: translateY(8px);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  /* Override centered services mega */
  margin: 0;
}
.pgrt-mega--resources.is-open {
  transform: translateY(0);
}
.pgrt-mega-resources {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 2px;
}
.pgrt-mega-resources__link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background 0.18s ease;
}
.pgrt-mega-resources__link:hover {
  background: #f3f4f6;
}
.pgrt-mega-resources__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-mega-resources__link:hover .pgrt-mega-resources__icon {
  background: #e8eef5;
  color: var(--pgrt-accent-text);
}
.pgrt-mega-resources__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-top: 1px;
}
.pgrt-mega-resources__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
}
.pgrt-mega-resources__desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.35;
}
.pgrt-nav__list a.pgrt-has-mega,
.pgrt-nav__list .menu-item-has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pgrt-nav__list a.pgrt-has-mega::after,
.pgrt-nav__list .menu-item-has-mega > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 1px;
}

/* Header search suggest */
.pgrt-search-panel {
  position: absolute;
  right: 116px;
  top: calc(100% + 12px);
  width: min(460px, calc(100vw - 36px));
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  padding: 12px;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.pgrt-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.pgrt-search-panel__input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}
.pgrt-search-panel__input:focus {
  outline: 2px solid var(--pgrt-blue);
  border-color: var(--pgrt-blue);
}
.pgrt-search-panel__results {
  margin-top: 10px;
  max-height: 320px;
  overflow: auto;
}
.pgrt-search-result {
  display: block;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  padding: 10px 11px;
  margin-bottom: 8px;
  color: #111827;
}
.pgrt-search-result:hover {
  background: #f8fbff;
  border-color: var(--pgrt-accent-border);
}
.pgrt-search-result__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pgrt-deep);
}
.pgrt-search-result__meta {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pgrt-search-panel__empty {
  font-size: 0.86rem;
  color: #6b7280;
  padding: 10px 4px;
}
.pgrt-search-panel__all {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--pgrt-blue);
}

/* Hero */
.pgrt-hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(232, 213, 163, 0.18), transparent 30%),
    radial-gradient(circle at 8% 78%, rgba(255, 255, 255, 0.09), transparent 26%),
    linear-gradient(130deg, var(--pgrt-hero-a) 0%, var(--pgrt-hero-b) 46%, var(--pgrt-hero-c) 100%);
  color: #fff;
  padding: 48px 0 80px;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pgrt-body--home .pgrt-main { padding-top: 0; }
.pgrt-body--home .pgrt-hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.pgrt-body--home .pgrt-hero .pgrt-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 96px;
  padding-bottom: 56px;
  padding-left: clamp(24px, 4.5vw, 72px);
  padding-right: clamp(24px, 4.5vw, 72px);
  box-sizing: border-box;
}
.pgrt-body--home .pgrt-hero-slider {
  min-height: calc(100vh - 152px);
  min-height: calc(100dvh - 152px);
  display: flex;
  align-items: center;
  width: 100%;
}
.pgrt-body--home .pgrt-hero-slide.is-active {
  display: flex;
  align-items: center;
  width: 100%;
}
.pgrt-body--home .pgrt-hero-slide.is-active .pgrt-hero__grid {
  width: 100%;
}
.pgrt-body--home .pgrt-hero-slider__dots {
  bottom: 12px;
}
.pgrt-body--home .pgrt-hero-slider__nav--prev { left: clamp(4px, 1.5vw, 16px); }
.pgrt-body--home .pgrt-hero-slider__nav--next { right: clamp(4px, 1.5vw, 16px); }
.pgrt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
  opacity: 0.8;
  pointer-events: none;
  z-index: -2;
}
.pgrt-hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: -24%;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 58%);
  filter: blur(1px);
  pointer-events: none;
  z-index: -1;
}
.pgrt-hero__ambient {
  position: absolute;
  inset: auto 8% 10% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2), transparent 68%);
  animation: pgrt-hero-glow 9s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes pgrt-hero-glow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate3d(-20px, -12px, 0) scale(1.08); opacity: 1; }
}
.pgrt-hero .pgrt-container {
  position: relative;
  z-index: 2;
}
.pgrt-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.pgrt-hero-slider {
  position: relative;
  min-height: 560px;
}
.pgrt-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
}
.pgrt-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}
.pgrt-hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pgrt-hero-slider__nav:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}
.pgrt-hero-slider__nav--prev { left: -8px; }
.pgrt-hero-slider__nav--next { right: -8px; }
.pgrt-hero-slider__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
  display: flex;
  gap: 8px;
  z-index: 6;
}
.pgrt-hero-slider__dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s, background 0.2s;
}
.pgrt-hero-slider__dots button.is-active {
  width: 30px;
  background: var(--pgrt-gold-light);
  border-color: var(--pgrt-gold-light);
}
.pgrt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--pgrt-gold-light);
  margin: 0 0 18px;
  font-weight: 700;
}
.pgrt-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}
.pgrt-hero__title {
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  margin: 0 0 22px;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 11.8em;
}
.pgrt-hero__sub {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.84);
  max-width: 620px;
  margin: 0 0 30px;
}
.pgrt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.pgrt-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}
.pgrt-hero__proof span {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.74);
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}
.pgrt-hero__proof strong {
  display: block;
  color: #ffffff;
  font-size: 1.34rem;
  line-height: 1;
  font-family: "DM Sans", system-ui, sans-serif;
}
.pgrt-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 620px;
  font-size: 0.84rem;
}
.pgrt-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
}
.pgrt-hero__trust li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232, 213, 163, 0.16);
  color: var(--pgrt-gold-light);
  font-size: 0.72rem;
}
.pgrt-hero__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgrt-hero__visual::before,
.pgrt-hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.pgrt-hero__visual::before {
  inset: 20px 22px;
  border: 1px solid rgba(255,255,255,0.16);
  transform: rotate(-7deg);
}
.pgrt-hero__visual::after {
  width: 170px;
  height: 170px;
  right: 8%;
  bottom: 3%;
  background: radial-gradient(circle, rgba(232, 213, 163, 0.18), transparent 66%);
}
.pgrt-hero-panel {
  width: min(440px, 100%);
  min-height: 360px;
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.pgrt-hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 32%, rgba(232,213,163,0.18) 70%, transparent);
  opacity: 0.9;
  pointer-events: none;
}
.pgrt-hero-panel > * { position: relative; z-index: 1; }
.pgrt-hero-panel__top,
.pgrt-hero-panel__score,
.pgrt-hero-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pgrt-hero-panel__top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pgrt-hero-panel__top span,
.pgrt-hero-panel__score span,
.pgrt-hero-calendar__head span {
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
}
.pgrt-hero-panel__top strong,
.pgrt-hero-calendar__head strong {
  color: var(--pgrt-gold-light);
  font-size: 0.84rem;
}
.pgrt-hero-panel__score {
  margin: 26px 0 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(0,0,0,0.14);
}
.pgrt-hero-panel__score strong {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}
.pgrt-hero-panel__score--row {
  margin: 22px 0 0;
}
.pgrt-hero-panel__score--row strong {
  font-size: 1rem;
  color: var(--pgrt-gold-light);
}
.pgrt-hero-panel__bars {
  display: grid;
  gap: 13px;
  margin: 24px 0;
}
.pgrt-hero-panel__bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.pgrt-hero-panel__bars span::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pgrt-gold-light), rgba(255,255,255,0.86));
}
.pgrt-hero-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pgrt-hero-panel__chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
}
.pgrt-hero-calendar {
  padding: 22px;
  border-radius: 22px;
  background: rgba(0,0,0,0.14);
  margin-bottom: 22px;
}
.pgrt-hero-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.pgrt-hero-calendar__grid span {
  aspect-ratio: 1;
  border-radius: 9px;
  background: rgba(255,255,255,0.12);
}
.pgrt-hero-calendar__grid span.is-marked {
  background: linear-gradient(135deg, var(--pgrt-gold-light), var(--pgrt-gold-bright));
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.pgrt-hero-chart {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 22px;
  margin: 26px 0 0;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    rgba(0,0,0,0.14);
  background-size: 100% 42px;
}
.pgrt-hero-chart span {
  flex: 1;
  height: var(--h);
  min-height: 38px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--pgrt-gold-light), rgba(255,255,255,0.28));
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

/* Stats */
.pgrt-stats-bar { background: var(--pgrt-ink); padding: 40px 0; border-top: 3px solid var(--pgrt-gold); }
.pgrt-stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.pgrt-stat__value { display: block; font-size: 2.5rem; font-weight: 700; color: var(--pgrt-gold-bright); font-family: "DM Sans", sans-serif; }
.pgrt-stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* Sections */
.pgrt-section { padding: 88px 0; }
.pgrt-section--muted { background: #f7f8fa; }
.pgrt-section--dark { background: var(--pgrt-ink); color: #fff; }
.pgrt-section--dark h2, .pgrt-section--dark .pgrt-section-head__title { color: #fff; }
.pgrt-section--dark .pgrt-section-head__sub { color: rgba(255,255,255,0.75); }
.pgrt-section-head { margin-bottom: 48px; max-width: 640px; }
.pgrt-section-head__title { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 12px; }
.pgrt-section-head__sub { margin: 0; color: #6b7280; font-size: 1.05rem; }
.pgrt-section--dark .pgrt-section-head { margin-left: auto; margin-right: auto; text-align: center; max-width: 720px; }
.pgrt-section__cta { text-align: center; margin-top: 40px; }

/* Split / image placeholder */
.pgrt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pgrt-image-placeholder {
  aspect-ratio: 4/3; background: linear-gradient(145deg, #eef0f4, #d8dce6);
  border-radius: 12px; display: flex; align-items: flex-end; padding: 24px;
  border: 1px solid #eef0f4;
}
.pgrt-image-placeholder span { font-weight: 600; color: var(--pgrt-ink); }
.pgrt-image-figure {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  aspect-ratio: 4 / 3;
}
.pgrt-image-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transform: scale(1.02);
}
.pgrt-image-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.42));
}
.pgrt-image-figure figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.01em;
}
.pgrt-checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.pgrt-checklist li {
  padding: 12px 0 12px 32px; position: relative; border-bottom: 1px solid #eef0f4;
}
.pgrt-checklist li::before {
  content: ""; position: absolute; left: 0; top: 18px; width: 18px; height: 18px;
  background: #0d7c8c; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* Cards */
.pgrt-cards { display: grid; gap: 24px; }
.pgrt-cards--services { grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pgrt-cards--services-hub { margin-top: 8px; }
.pgrt-cards--industries { grid-template-columns: repeat(4, 1fr); }
.pgrt-cards--industries-light .pgrt-card--industry-light {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #0f172a;
}
.pgrt-cards--industries-light .pgrt-card--industry-light h3 { color: var(--pgrt-deep); }
.pgrt-cards--industries-light .pgrt-card--industry-light p { color: #475569; }
.pgrt-cards--team { grid-template-columns: repeat(3, 1fr); }
.pgrt-cards--insights { grid-template-columns: repeat(3, 1fr); }
.pgrt-card {
  background: #fff; border: 1px solid #eef0f4; border-radius: 10px; padding: 28px;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.pgrt-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,22,40,0.1); }
.pgrt-card__icon { color: var(--pgrt-blue); margin-bottom: 16px; }
.pgrt-card__title { font-size: 1.15rem; margin: 0 0 10px; }
.pgrt-card__title a { color: var(--pgrt-ink); text-decoration: none; }
.pgrt-card__title a:hover { color: var(--pgrt-blue); }
.pgrt-card__excerpt { color: #6b7280; font-size: 0.95rem; margin: 0 0 16px; }
.pgrt-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--pgrt-blue); }
.pgrt-card__role { color: #0d7c8c; font-weight: 600; margin: 0 0 8px; font-size: 0.9rem; }
.pgrt-card__avatar {
  width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, #152a4d, var(--pgrt-blue));
  color: #fff; font-size: 1.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-family: "DM Sans", sans-serif;
}
.pgrt-card__avatar--lg { width: 140px; height: 140px; font-size: 2.5rem; }
.pgrt-card__avatar--photo {
  background: #eef0f4;
  overflow: hidden;
  padding: 0;
  border: 3px solid rgba(184, 149, 74, 0.35);
}
.pgrt-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.pgrt-cards--team {
  grid-template-columns: repeat(3, 1fr);
}
.pgrt-cards--team-layout {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
  justify-items: stretch;
}
.pgrt-cards--team-layout .pgrt-card--team:nth-child(1) { grid-column: 1 / 3; }
.pgrt-cards--team-layout .pgrt-card--team:nth-child(2) { grid-column: 3 / 5; }
.pgrt-cards--team-layout .pgrt-card--team:nth-child(3) { grid-column: 5 / 7; }
.pgrt-cards--team-layout .pgrt-card--team:nth-child(4) { grid-column: 2 / 4; }
.pgrt-cards--team-layout .pgrt-card--team:nth-child(5) { grid-column: 4 / 6; }
.pgrt-card--team-lead {
  border-color: rgba(184, 149, 74, 0.45);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.08);
}
.pgrt-card--team {
  text-align: center;
  padding-top: 28px;
}
.pgrt-card--team .pgrt-card__avatar {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
}
.pgrt-card--team h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
}
.pgrt-card__qualifications {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0 0 12px;
}
.pgrt-team-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.pgrt-team-profile__quals {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 0.95rem;
  max-width: 640px;
}
.pgrt-team-profile__content {
  max-width: 760px;
}
.pgrt-card--industry { display: block; text-decoration: none; color: inherit; position: relative; }
.pgrt-card--industry h3 { margin: 0 0 8px; font-size: 1.05rem; }
.pgrt-card--industry p { margin: 0; font-size: 0.88rem; color: #6b7280; }
.pgrt-card__arrow { position: absolute; bottom: 24px; right: 24px; color: var(--pgrt-gold); }
.pgrt-card__tag {
  display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  background: #eef0f4; color: var(--pgrt-blue); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; font-weight: 600;
}
.pgrt-card--insight time { display: block; font-size: 0.8rem; color: #9ca3af; margin-bottom: 8px; }

/* Features */
.pgrt-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pgrt-feature {
  padding: 28px; background: #f7f8fa; border-radius: 10px; border: 1px solid #eef0f4;
}
.pgrt-feature__icon { color: var(--pgrt-blue); margin-bottom: 12px; }
.pgrt-feature h3 { font-size: 1.05rem; margin: 0 0 8px; }
.pgrt-feature p { margin: 0; font-size: 0.92rem; color: #6b7280; }

/* Testimonials */
.pgrt-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pgrt-testimonial {
  margin: 0; padding: 32px; background: #fff; border-radius: 10px;
  border: 1px solid #eef0f4; box-shadow: 0 4px 24px rgba(10,22,40,0.05);
  position: relative;
}
.pgrt-testimonial__quote { font-size: 3rem; line-height: 1; color: var(--pgrt-gold); opacity: 0.5; font-family: Georgia, serif; }
.pgrt-testimonial p { margin: 0 0 16px; color: #374151; font-style: italic; }
.pgrt-testimonial cite { font-style: normal; font-weight: 700; color: var(--pgrt-ink); display: block; }
.pgrt-testimonial footer span { display: block; font-size: 0.85rem; color: #6b7280; margin-top: 4px; }
.pgrt-home-inline-image {
  margin-top: 26px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
}
.pgrt-home-inline-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CTA band */
.pgrt-cta-band {
  background: linear-gradient(135deg, var(--pgrt-ink), var(--pgrt-surface-dark));
  color: #fff; text-align: center; padding: 72px 0;
  border-top: 4px solid var(--pgrt-gold);
}
.pgrt-cta-band h2 { color: #fff; margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2rem); }
.pgrt-cta-band p { opacity: 0.85; margin: 0 0 24px; }
.pgrt-cta-band--compact { padding: 48px 0; }

/* Page hero */
.pgrt-page-hero {
  background: linear-gradient(135deg, var(--pgrt-ink) 0%, var(--pgrt-surface-dark) 100%);
  color: #fff; padding: 48px 0 56px;
}
.pgrt-page-hero__title, .pgrt-page-hero h1 { color: #fff; margin: 12px 0 8px; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.pgrt-page-hero__sub { opacity: 0.88; max-width: 640px; margin: 0; }
.pgrt-breadcrumbs { margin-bottom: 8px; }
.pgrt-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.pgrt-breadcrumbs a { color: var(--pgrt-gold-bright); }
.pgrt-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; color: #fff; }
.pgrt-breadcrumbs li[aria-current] { color: rgba(255,255,255,0.8); }

.pgrt-prose { max-width: 760px; }
.pgrt-prose h2 { margin-top: 2em; }
.pgrt-prose ul, .pgrt-prose ol { padding-left: 1.25em; }
.pgrt-service-layout .pgrt-prose { max-width: 920px; }
.pgrt-service-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 8px;
}
.pgrt-service-offer {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 18px 18px 16px;
}
.pgrt-service-offer h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--pgrt-navy);
  line-height: 1.35;
}
.pgrt-service-offer p {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .pgrt-service-offers { grid-template-columns: 1fr; }
}

/* Litigation & Advisory — kcmehta-style layout, PGRT tokens */
.pgrt-lit__hero {
  position: relative;
  padding: 48px 0 56px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(255, 255, 255, 0.96) 70%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, 0.08), transparent 55%),
    #f8fafc;
  border-bottom: 1px solid #eef2f7;
}
.pgrt-lit__hero .pgrt-breadcrumbs a { color: var(--pgrt-blue, #2563eb); }
.pgrt-lit__hero .pgrt-breadcrumbs li:not(:last-child)::after { color: #94a3b8; }
.pgrt-lit__hero .pgrt-breadcrumbs li[aria-current] { color: #64748b; }
.pgrt-lit__title {
  margin: 18px 0 16px;
  max-width: 18ch;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.2;
  color: var(--pgrt-navy);
  font-weight: 700;
}
.pgrt-lit__lead {
  margin: 0 0 28px;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
}
.pgrt-lit__story {
  padding: 48px 0 24px;
}
.pgrt-lit__story-text {
  margin: 0 0 36px;
  max-width: 78ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
}
.pgrt-lit__story-text--tight {
  margin-top: 36px;
  margin-bottom: 0;
}
.pgrt-lit__split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.pgrt-lit__callout {
  background: #f3eee6;
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
}
.pgrt-lit__callout p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #1e293b;
}
.pgrt-lit__visual {
  border-radius: 4px;
  min-height: 280px;
  background:
    linear-gradient(145deg, #0f2744 0%, #1e3a5f 45%, #243b55 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pgrt-lit__visual-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #d4a574;
  text-align: center;
  padding: 24px;
}
.pgrt-lit__visual-art svg {
  width: min(220px, 70%);
  height: auto;
}
.pgrt-lit__visual-art span {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}
.pgrt-lit__offers {
  padding: 40px 0 56px;
}
.pgrt-lit__offers h2 {
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--pgrt-navy);
}
.pgrt-lit-acc {
  border-top: 1px solid #e2e8f0;
}
.pgrt-lit-acc__item {
  border-bottom: 1px solid #e2e8f0;
}
.pgrt-lit-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pgrt-navy);
  font-family: inherit;
}
.pgrt-lit-acc__trigger:hover {
  color: var(--pgrt-blue, #2563eb);
}
.pgrt-lit-acc__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}
.pgrt-lit-acc__icon::before,
.pgrt-lit-acc__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.pgrt-lit-acc__icon::before {
  left: 4px;
  right: 4px;
  top: 10px;
  height: 2px;
}
.pgrt-lit-acc__icon::after {
  top: 4px;
  bottom: 4px;
  left: 10px;
  width: 2px;
}
.pgrt-lit-acc__item.is-open .pgrt-lit-acc__icon::after {
  opacity: 0;
  transform: scaleY(0);
}
.pgrt-lit-acc__panel {
  padding: 0 4px 20px;
  max-width: 72ch;
}
.pgrt-lit-acc__panel p {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
}
.pgrt-lit__connect {
  background: var(--pgrt-navy);
  color: #fff;
  padding: 40px 0;
}
.pgrt-lit__connect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.pgrt-lit__connect h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: #fff;
}
.pgrt-lit__connect p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .pgrt-lit__split,
  .pgrt-lit__connect-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .pgrt-lit__title { max-width: none; }
  .pgrt-lit__visual { min-height: 220px; }
}
.pgrt-section--page { padding: 64px 0 88px; }
.pgrt-plain-list { list-style: none; margin: 0; padding: 0; }
.pgrt-plain-list li { padding: 6px 0; border-bottom: 1px solid #eef0f4; font-size: 0.92rem; }

/* About */
.pgrt-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.pgrt-about__cards { display: flex; flex-direction: column; gap: 16px; }
.pgrt-mini-card { background: #f7f8fa; padding: 20px; border-radius: 8px; border-left: 4px solid var(--pgrt-gold); }
.pgrt-mini-card h3 { margin: 0 0 8px; font-size: 1rem; }
.pgrt-mini-card p { margin: 0; font-size: 0.92rem; color: #6b7280; }
.pgrt-timeline { display: grid; gap: 16px; }
.pgrt-timeline__item { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid #eef0f4; }
.pgrt-timeline__item span { font-weight: 700; color: var(--pgrt-gold); font-family: "DM Sans", sans-serif; }

/* About page redesign */
.pgrt-section--about-page {
  padding-top: 0;
  padding-bottom: 72px;
}
.pgrt-about-redesign { display: grid; gap: 0; }
.pgrt-about-redesign__intro-band {
  background: linear-gradient(135deg, var(--pgrt-ink) 0%, var(--pgrt-deep) 58%, var(--pgrt-gradient-mid) 100%);
  padding: 44px 0 52px;
  margin-bottom: 48px;
}
.pgrt-about-redesign__intro-inner { max-width: 780px; }
.pgrt-about-redesign__eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pgrt-gold-bright);
  font-weight: 700;
}
.pgrt-about-redesign__lead {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.pgrt-about-redesign__body {
  display: grid;
  gap: 32px;
}
.pgrt-about-redesign__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pgrt-about-pillar {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px 22px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pgrt-about-pillar:hover {
  border-color: #bfdbfe;
  box-shadow: 0 14px 34px rgba(15, 63, 111, 0.1);
  transform: translateY(-2px);
}
.pgrt-about-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--pgrt-accent-soft) 0%, #f8fbff 100%);
  color: var(--pgrt-accent-text);
}
.pgrt-about-pillar h3 {
  margin: 0 0 10px;
  color: var(--pgrt-ink);
  font-size: 1.08rem;
}
.pgrt-about-pillar p {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.7;
}
.pgrt-about-redesign__dual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}
.pgrt-about-panel {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 28px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}
.pgrt-about-panel--values {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.pgrt-about-panel__head { margin-bottom: 22px; }
.pgrt-about-panel__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--pgrt-accent-soft);
  color: var(--pgrt-accent-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pgrt-about-panel__head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--pgrt-ink);
}
.pgrt-about-timeline {
  list-style: none;
  margin: 0;
  padding: 4px 0 0 18px;
  border-left: 2px solid var(--pgrt-accent-border);
}
.pgrt-about-timeline__item {
  position: relative;
  padding: 0 0 22px 22px;
}
.pgrt-about-timeline__item:last-child { padding-bottom: 0; }
.pgrt-about-timeline__item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pgrt-blue);
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px #bfdbfe;
}
.pgrt-about-timeline__year {
  display: block;
  margin-bottom: 4px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pgrt-gold);
  letter-spacing: 0.04em;
}
.pgrt-about-timeline__item p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}
.pgrt-about-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pgrt-about-values-grid span {
  border: 1px solid var(--pgrt-accent-border);
  background: #ffffff;
  color: var(--pgrt-accent-text);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
}
.pgrt-about-panel__note {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}
.pgrt-about-redesign__stats {
  background: linear-gradient(135deg, var(--pgrt-ink) 0%, var(--pgrt-deep) 100%);
  border-radius: 16px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.pgrt-about-redesign__stats .pgrt-stat__value {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  color: var(--pgrt-gold-light);
  line-height: 1.1;
}
.pgrt-about-redesign__stats .pgrt-stat__label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  margin-top: 6px;
}
.pgrt-about-redesign__leadership {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}
.pgrt-about-redesign__leadership .pgrt-section-head { margin-bottom: 28px; max-width: none; }
.pgrt-about-redesign__leadership-cta { margin-top: 24px; }

/* Contact */
.pgrt-contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.pgrt-form label { display: block; margin-bottom: 16px; font-weight: 600; font-size: 0.9rem; }
.pgrt-form input, .pgrt-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 16px; border: 1px solid #d8dce6;
  border-radius: 6px; font: inherit;
}
.pgrt-form input:focus, .pgrt-form textarea:focus { outline: 2px solid var(--pgrt-blue); border-color: var(--pgrt-blue); }
.pgrt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pgrt-contact-quick { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.pgrt-office-card, .pgrt-offices .pgrt-office-card {
  background: #f7f8fa; padding: 20px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #eef0f4;
}
.pgrt-office-card h3 { margin: 0 0 8px; font-size: 1rem; }
.pgrt-office-card__badge { background: var(--pgrt-gold); color: var(--pgrt-ink); font-size: 0.65rem; padding: 2px 8px; border-radius: 4px; margin-left: 8px; }
.pgrt-contact-details {
  max-width: 980px;
  border-top: 1px solid #9fcf9f;
}
.pgrt-contact-details__row {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 18px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #9fcf9f;
}
.pgrt-contact-details__row span {
  color: #1f2937;
}
.pgrt-contact-details__row strong {
  font-size: 1.05rem;
  color: #0f172a;
}
.pgrt-contact-details__address {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #9fcf9f;
}
.pgrt-contact-details__address span {
  color: #1f2937;
}
.pgrt-contact-details__address strong {
  line-height: 1.7;
  color: #0f172a;
  font-size: 1.05rem;
}

/* Contact page redesign */
.pgrt-contact-premium {
  display: grid;
  gap: 28px;
}
.pgrt-contact-premium__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: 28px;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: linear-gradient(160deg, #f8fbff 0%, #f3f8ff 70%, #eef5ff 100%);
}
.pgrt-contact-premium__top h2 {
  margin: 6px 0 10px;
}
.pgrt-contact-premium__top p {
  margin: 0;
  max-width: 66ch;
  color: #475569;
}
.pgrt-contact-premium__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d7c8c;
  font-weight: 700;
}
.pgrt-contact-premium__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pgrt-contact-premium__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.pgrt-contact-premium__cards {
  display: grid;
  gap: 16px;
}
.pgrt-contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}
.pgrt-contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--pgrt-deep);
}
.pgrt-contact-card p {
  margin: 0 0 10px;
  color: #334155;
}
.pgrt-contact-card p:last-child {
  margin-bottom: 0;
}
.pgrt-contact-premium__meta {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}
.pgrt-contact-premium__meta h3 {
  margin: 0 0 12px;
}
.pgrt-contact-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pgrt-contact-meta-list li {
  display: grid;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f7;
}
.pgrt-contact-meta-list li:last-child {
  border-bottom: none;
}
.pgrt-contact-meta-list span {
  color: #6b7280;
  font-size: 0.82rem;
}
.pgrt-contact-meta-list strong {
  color: #111827;
  font-size: 0.95rem;
}
.pgrt-contact-map {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.pgrt-contact-map__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #eef2f7;
  background: #f8fbff;
}
.pgrt-contact-map__head h3 {
  margin: 0;
}
.pgrt-contact-map__frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.pgrt-contact-map__photo img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-top: 1px solid #e5e7eb;
}

/* Jobs */
.pgrt-job {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px; border: 1px solid #eef0f4; border-radius: 8px; margin-bottom: 12px;
}
.pgrt-job h3 { margin: 0 0 4px; font-size: 1.1rem; }

/* Profile page */
.pgrt-profile-section { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.pgrt-profile-section:last-child { border-bottom: none; }
.pgrt-profile-section h2 { margin-top: 0; color: var(--pgrt-deep); }
.pgrt-profile-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Footer */
.pgrt-footer { background: var(--pgrt-ink); color: rgba(255,255,255,0.85); }
.pgrt-footer__newsletter {
  background: var(--pgrt-newsletter); padding: 40px 0;
}
.pgrt-footer__newsletter-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.pgrt-footer__newsletter h3 { color: #fff; margin: 0 0 4px; }
.pgrt-footer__newsletter p { margin: 0; opacity: 0.9; font-size: 0.95rem; }
.pgrt-newsletter-form { display: flex; gap: 8px; flex: 1; max-width: 420px; }
.pgrt-newsletter-form input {
  flex: 1; padding: 12px 16px; border: none; border-radius: 4px; font: inherit;
}
.pgrt-footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px;
  padding: 64px 0 48px;
}
.pgrt-footer__brand p { font-size: 0.9rem; opacity: 0.75; max-width: 280px; }
.pgrt-footer .pgrt-logo { margin-bottom: 16px; }
.pgrt-footer .pgrt-logo--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.pgrt-footer .pgrt-logo--stacked .pgrt-logo__img {
  height: 64px;
}
.pgrt-footer .pgrt-logo--stacked .pgrt-logo__brand {
  align-items: flex-start;
  text-align: left;
}
.pgrt-footer .pgrt-logo__title { color: #ffffff; }
.pgrt-footer .pgrt-logo__title::after {
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.06) 44%,
    rgba(232, 213, 163, 0.38) 50%,
    rgba(255, 255, 255, 0.06) 56%,
    transparent 62%
  );
}
.pgrt-footer .pgrt-logo__tagline-line { background: rgba(255, 255, 255, 0.75); opacity: 1; }
.pgrt-footer .pgrt-logo__tagline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
.pgrt-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; }
.pgrt-footer__links { list-style: none; padding: 0; margin: 0; }
.pgrt-footer__links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: block; padding: 4px 0; }
.pgrt-footer__links a:hover { color: var(--pgrt-gold-bright); }
.pgrt-footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.pgrt-footer__contact li { display: grid; gap: 4px; }
.pgrt-footer__contact span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pgrt-footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  word-break: break-word;
}
.pgrt-footer__contact a:hover { color: var(--pgrt-gold-bright); }
.pgrt-footer-offices { display: grid; gap: 12px; }
.pgrt-footer-office {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pgrt-footer-office:last-child { border-bottom: none; }
.pgrt-footer-office__title {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.pgrt-footer-office__text {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  line-height: 1.55;
}
.pgrt-footer-office__text p { margin: 0 0 6px; }
.pgrt-footer-office__text p:last-child { margin-bottom: 0; }
.pgrt-footer__bar { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.pgrt-footer__bar-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
}
.pgrt-footer__bar ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.pgrt-footer__bar a { color: rgba(255,255,255,0.6); }

/* FAQ from plugin */
.pgrt-faq { max-width: 800px; margin-top: 32px; }
.pgrt-faq__question {
  width: 100%; text-align: left; padding: 18px 20px; background: #f7f8fa; border: none;
  border-bottom: 1px solid #eef0f4; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 1rem;
}
.pgrt-faq__answer { padding: 16px 20px 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .pgrt-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .pgrt-hero__content {
    max-width: 760px;
  }
  .pgrt-hero__visual {
    min-height: 280px;
    justify-content: flex-start;
  }
  .pgrt-hero__visual::before {
    inset: 16px auto 16px 20px;
    width: min(86vw, 520px);
  }
  .pgrt-hero-panel {
    width: min(520px, 100%);
    min-height: auto;
  }
  .pgrt-hero-slider { min-height: 720px; }
  .pgrt-body--home .pgrt-hero .pgrt-container {
    padding-top: 104px;
    padding-bottom: 48px;
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
  }
  .pgrt-body--home .pgrt-hero-slider {
    min-height: auto;
  }
  .pgrt-hero-slider__nav { display: none; }
  .pgrt-cards--services, .pgrt-features, .pgrt-testimonials { grid-template-columns: repeat(2, 1fr); }
  .pgrt-cards--industries { grid-template-columns: repeat(2, 1fr); }
  .pgrt-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .pgrt-split, .pgrt-about__grid, .pgrt-contact-grid, .pgrt-profile-split, .pgrt-team-profile { grid-template-columns: 1fr; }
  .pgrt-contact-details__row,
  .pgrt-contact-details__address { grid-template-columns: 1fr; gap: 6px; }
  .pgrt-about-redesign__pillars,
  .pgrt-about-redesign__dual { grid-template-columns: 1fr; }
  .pgrt-about-redesign__stats { grid-template-columns: repeat(2, 1fr); }
  .pgrt-contact-premium__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .pgrt-contact-premium__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pgrt-body--home .pgrt-hero {
    min-height: auto;
  }
  .pgrt-body--home .pgrt-hero .pgrt-container {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 62px;
  }
  .pgrt-hero-slider {
    min-height: 760px;
  }
  .pgrt-hero__title {
    font-size: clamp(2rem, 11vw, 3rem);
    letter-spacing: -0.035em;
  }
  .pgrt-hero__sub {
    font-size: 1rem;
  }
  .pgrt-hero__proof {
    grid-template-columns: 1fr;
  }
  .pgrt-hero__proof span {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 10px;
  }
  .pgrt-hero__visual {
    min-height: 250px;
  }
  .pgrt-hero-panel {
    border-radius: 22px;
    padding: 18px;
  }
  .pgrt-hero-panel__score {
    padding: 18px;
    margin: 18px 0;
  }
  .pgrt-hero-chart {
    height: 160px;
    gap: 10px;
    padding: 16px;
  }
  .pgrt-hero-slider__dots {
    bottom: -28px;
  }
  .pgrt-logo__img { height: 40px; }
  .pgrt-logo--text .pgrt-logo__img { height: 44px; }
  .pgrt-logo__title { font-size: 0.98rem; }
  .pgrt-logo__tagline { font-size: 0.56rem; padding: 3px 10px; }
  .pgrt-logo__tagline-line { min-width: 12px; max-width: 28px; }
  .pgrt-nav-toggle { display: block; }
  .pgrt-header__inner { padding: 0 16px; }
  .pgrt-mega { display: none !important; }
  .pgrt-search-panel { right: 12px; left: 12px; width: auto; top: 88px; }
  .pgrt-nav {
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--pgrt-ink); flex-direction: column; padding: 24px;
    transform: translateX(100%); transition: transform 0.35s; overflow-y: auto;
  }
  .pgrt-nav.is-open { transform: translateX(0); }
  .pgrt-nav__list { flex-direction: column; width: 100%; }
  .pgrt-nav__list a { display: block; padding: 14px 0; font-size: 1.05rem; color: #f8fafc; }
  .pgrt-nav__search { color: #f8fafc; }
  .pgrt-nav__actions { flex-direction: column; width: 100%; margin: 24px 0 0; }
  .pgrt-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .pgrt-cards--services, .pgrt-cards--team, .pgrt-cards--insights, .pgrt-testimonials, .pgrt-features {
    grid-template-columns: 1fr;
  }
  .pgrt-cards--team-layout .pgrt-card--team {
    grid-column: 1 / -1 !important;
  }
  .pgrt-section { padding: 56px 0; }
  .pgrt-footer__grid { grid-template-columns: 1fr; }
  .pgrt-form__row { grid-template-columns: 1fr; }
  .pgrt-job { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pgrt-card, .pgrt-btn, .pgrt-header { transition: none; }
  .pgrt-hero__ambient,
  .pgrt-card--service .pgrt-card__icon,
  .pgrt-card--service .pgrt-card__icon::after { animation: none; }
}

/* Home page premium refinements */
.pgrt-body--home .pgrt-section {
  position: relative;
}
.pgrt-body--home .pgrt-section:not(.pgrt-section--dark)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8dce6 18%, #d8dce6 82%, transparent);
}

.pgrt-body--home .pgrt-section-head__title {
  letter-spacing: -0.02em;
}
.pgrt-body--home .pgrt-section-head__sub {
  max-width: 62ch;
}

.pgrt-hero__content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 22px 60px rgba(10, 22, 40, 0.24);
  backdrop-filter: blur(6px);
}
.pgrt-hero__eyebrow {
  display: inline-flex;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 40px;
  padding: 6px 12px;
}
.pgrt-hero__cta .pgrt-btn {
  min-width: 190px;
}
.pgrt-hero__card {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.pgrt-home-cred {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 36px 0 48px;
  border-bottom: 1px solid #eef2f7;
}
.pgrt-home-cred__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pgrt-home-cred__item {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  padding: 28px 26px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  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::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pgrt-blue), #0d7c8c);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pgrt-home-cred__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}
.pgrt-home-cred__item:hover::before {
  opacity: 1;
}
.pgrt-home-cred__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #eff6ff, var(--pgrt-accent-border));
  color: var(--pgrt-blue);
  border: 1px solid rgba(37, 99, 184, 0.12);
}
.pgrt-home-cred__item[data-cred="coverage"] .pgrt-home-cred__icon {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  color: #047857;
  border-color: rgba(4, 120, 87, 0.12);
}
.pgrt-home-cred__item[data-cred="philosophy"] .pgrt-home-cred__icon {
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  color: #c2410c;
  border-color: rgba(194, 65, 12, 0.12);
}
.pgrt-home-cred__label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  color: var(--pgrt-blue);
  font-weight: 700;
  background: rgba(37, 99, 184, 0.08);
  border: 1px solid rgba(37, 99, 184, 0.1);
}
.pgrt-home-cred__item[data-cred="coverage"] .pgrt-home-cred__label {
  color: #047857;
  background: rgba(4, 120, 87, 0.08);
  border-color: rgba(4, 120, 87, 0.1);
}
.pgrt-home-cred__item[data-cred="philosophy"] .pgrt-home-cred__label {
  color: #c2410c;
  background: rgba(194, 65, 12, 0.08);
  border-color: rgba(194, 65, 12, 0.1);
}
.pgrt-home-cred__item h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--pgrt-ink);
}
.pgrt-home-cred__item p {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.65;
}

.pgrt-body--home .pgrt-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(10, 22, 40, 0.04);
}
.pgrt-body--home .pgrt-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(10, 22, 40, 0.12);
}

.pgrt-card--service {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  min-height: 100%;
}
.pgrt-card--service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pgrt-blue), #0d7c8c);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pgrt-card--service:hover::before { opacity: 1; }
.pgrt-card--service:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}
.pgrt-card--service__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 26px 0;
}
.pgrt-card--service__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pgrt-blue);
  background: rgba(37, 99, 184, 0.08);
  border: 1px solid rgba(37, 99, 184, 0.12);
  white-space: nowrap;
}
.pgrt-card--service .pgrt-card__title,
.pgrt-card--service .pgrt-card__excerpt,
.pgrt-card--service .pgrt-card__link {
  padding-left: 26px;
  padding-right: 26px;
}
.pgrt-card--service .pgrt-card__title {
  margin: 18px 0 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}
.pgrt-card--service .pgrt-card__excerpt {
  margin: 0 0 22px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #64748b;
  flex: 1;
}
.pgrt-card--service .pgrt-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--pgrt-accent-soft), var(--pgrt-accent-border));
  color: var(--pgrt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 184, 0.12);
  animation: pgrt-icon-float 3.8s ease-in-out infinite;
}
.pgrt-card--service[data-service-icon="gst"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="direct-tax"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="tax-advisory"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="transfer-pricing"] .pgrt-card__icon {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  color: #047857;
  border-color: rgba(4, 120, 87, 0.12);
}
.pgrt-card--service[data-service-icon="risk"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="compliance"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="audit"] .pgrt-card__icon {
  background: linear-gradient(145deg, #eff6ff, var(--pgrt-accent-border));
  color: var(--pgrt-blue-hover);
  border-color: rgba(29, 79, 143, 0.12);
}
.pgrt-card--service[data-service-icon="startup"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="structure"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="cfo"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="diligence"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="accounting"] .pgrt-card__icon,
.pgrt-card--service[data-service-icon="global"] .pgrt-card__icon {
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  color: #c2410c;
  border-color: rgba(194, 65, 12, 0.12);
}
.pgrt-card--service .pgrt-card__icon svg {
  transition: transform 0.35s ease, color 0.35s ease;
}
.pgrt-card--service .pgrt-card__icon::after {
  content: "";
  position: absolute;
  inset: -35% -45%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: pgrt-icon-sheen 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.pgrt-card--service:hover .pgrt-card__icon {
  box-shadow: 0 12px 28px rgba(37, 99, 184, 0.22);
}
.pgrt-card--service:hover .pgrt-card__icon svg {
  transform: scale(1.1) rotate(-3deg);
}
.pgrt-card--service .pgrt-card__link {
  margin-top: auto;
  padding-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pgrt-blue);
  border-top: 1px solid #eef2f7;
  padding-top: 18px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
}
.pgrt-card--service .pgrt-card__link:hover {
  color: var(--pgrt-blue-hover);
}

.pgrt-feature {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
}
.pgrt-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
}

.pgrt-section--dark .pgrt-card--industry {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pgrt-section--dark .pgrt-card--industry h3 {
  color: #fff;
}
.pgrt-section--dark .pgrt-card--industry p {
  color: rgba(255, 255, 255, 0.72);
}

.pgrt-testimonial {
  border-top: 4px solid var(--pgrt-gold);
}
.pgrt-card--insight {
  border-top: 3px solid var(--pgrt-blue);
}

@media (max-width: 1024px) {
  .pgrt-home-cred__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pgrt-home-cred {
    padding: 28px 0 36px;
  }
}

@keyframes pgrt-icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

@keyframes pgrt-icon-sheen {
  0%   { transform: translateX(-120%); opacity: 0; }
  25%  { opacity: 0.7; }
  60%  { opacity: 0.45; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* Color theme switcher */
.pgrt-theme-switcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.pgrt-theme-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--pgrt-accent-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--pgrt-navy);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pgrt-theme-switcher__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
  border-color: var(--pgrt-blue);
}
.pgrt-theme-switcher__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--pgrt-accent-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}
.pgrt-theme-switcher__head { margin-bottom: 14px; }
.pgrt-theme-switcher__title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pgrt-ink);
}
.pgrt-theme-switcher__sub {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}
.pgrt-theme-switcher__options {
  display: grid;
  gap: 8px;
}
.pgrt-theme-switcher__option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.pgrt-theme-switcher__option:hover {
  border-color: var(--pgrt-accent-border);
  background: var(--pgrt-accent-soft);
}
.pgrt-theme-switcher__option.is-active {
  border-color: var(--pgrt-blue);
  background: var(--pgrt-accent-soft);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 184, 0.08);
}
.pgrt-theme-switcher__swatches {
  display: inline-flex;
  gap: 4px;
  flex-shrink: 0;
}
.pgrt-theme-switcher__swatches span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.pgrt-theme-switcher__copy {
  display: grid;
  gap: 2px;
}
.pgrt-theme-switcher__copy strong {
  font-size: 0.88rem;
  color: var(--pgrt-ink);
}
.pgrt-theme-switcher__copy small {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .pgrt-theme-switcher {
    right: 12px;
    bottom: 12px;
  }
  .pgrt-theme-switcher__toggle span:last-child {
    display: none;
  }
  .pgrt-theme-switcher__panel {
    right: 0;
    left: auto;
  }
}

/* Reference-style sophisticated hero banner */
.pgrt-hero {
  --pgrt-hero-banner-height: clamp(370px, 35vw, 470px);
  min-height: auto;
  padding: 0;
  background: #ffffff;
  color: var(--pgrt-ink);
  overflow: hidden;
  border-bottom: 1px solid #edf0f5;
}
.pgrt-hero::before,
.pgrt-hero::after,
.pgrt-hero__ambient {
  display: none;
}
.pgrt-body--home .pgrt-hero {
  min-height: auto;
  display: block;
  padding-top: 80px;
}
.pgrt-body--home .pgrt-hero .pgrt-container {
  min-height: 0;
  padding: 0;
}
.pgrt-body--home .pgrt-hero .pgrt-container.pgrt-hero__inner {
  display: grid;
  flex-direction: initial;
  justify-content: initial;
  width: min(1140px, 100% - 48px);
  margin: 0 auto;
}
.pgrt-hero-slider {
  position: relative;
  height: var(--pgrt-hero-banner-height);
  min-height: var(--pgrt-hero-banner-height);
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #f8fafc 100%);
}
.pgrt-body--home .pgrt-hero-slider {
  height: var(--pgrt-hero-banner-height);
  min-height: var(--pgrt-hero-banner-height);
  display: block;
}
.pgrt-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
}
.pgrt-hero-slide.is-active {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.pgrt-body--home .pgrt-hero-slide.is-active {
  display: block;
}
.pgrt-hero__inner {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
  isolation: isolate;
}
.pgrt-hero__inner::before,
.pgrt-hero__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skewX(-24deg);
  pointer-events: none;
  z-index: -1;
}
.pgrt-hero__inner::before {
  left: 12%;
  width: 22%;
  background: rgba(15, 23, 42, 0.045);
}
.pgrt-hero__inner::after {
  left: 39%;
  width: 13%;
  background: linear-gradient(180deg, var(--pgrt-blue), var(--pgrt-deep));
  box-shadow: 24px 26px 28px rgba(15, 23, 42, 0.12);
  opacity: 0.92;
}
.pgrt-hero__copy {
  align-self: center;
  padding: clamp(42px, 5vw, 72px) 24px clamp(42px, 5vw, 72px) clamp(18px, 3vw, 42px);
  margin-left: clamp(0px, 3vw, 48px);
  max-width: 520px;
  z-index: 2;
}
.pgrt-hero__eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--pgrt-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pgrt-hero__eyebrow::before {
  display: none;
}
.pgrt-hero__title {
  margin: 0;
  color: var(--pgrt-navy);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 9.5em;
}
.pgrt-hero__sub {
  margin: 16px 0 0;
  max-width: 36rem;
  color: #475569;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}
.pgrt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}
.pgrt-hero__cta .pgrt-btn--outline-dark {
  background: rgba(255, 255, 255, 0.72);
}
.pgrt-hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: inherit;
  padding: 30px clamp(22px, 4vw, 70px) 28px 20px;
  overflow: hidden;
}
.pgrt-hero__art::before {
  content: "";
  position: absolute;
  inset: 0 0 0 12%;
  background: linear-gradient(90deg, transparent, rgba(248,250,252,0.62), #ffffff);
  z-index: -2;
}
.pgrt-hero__art::after {
  content: "";
  position: absolute;
  right: clamp(26px, 6vw, 96px);
  bottom: 16px;
  width: min(42vw, 440px);
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.16), transparent 68%);
  filter: blur(2px);
  z-index: -1;
}
.pgrt-hero-coins {
  height: 210px;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 1.2vw, 16px);
  transform: translateY(6px);
}
.pgrt-hero-coins span {
  position: relative;
  width: clamp(52px, 6vw, 78px);
  height: var(--h);
  border-radius: 999px 999px 10px 10px;
  background:
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.34) 0 2px, transparent 2px 7px),
    linear-gradient(90deg, #8a6035, #d4a15c 42%, #7c5430);
  box-shadow: inset 7px 0 13px rgba(255,255,255,0.24), inset -8px 0 14px rgba(0,0,0,0.12), 0 14px 26px rgba(15,23,42,0.14);
  animation: pgrt-banner-rise 0.7s ease both;
  animation-delay: var(--d);
}
.pgrt-hero-coins span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #9a6a3c, #e5b46f 45%, #7b502c);
  border: 1px solid rgba(255,255,255,0.28);
}
.pgrt-hero-risk {
  width: min(36vw, 370px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  transform: perspective(700px) rotateY(-8deg);
}
.pgrt-hero-risk span {
  aspect-ratio: 1.8 / 1;
  border-radius: 4px;
  background: linear-gradient(180deg, #e9c28d, #c89050);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.3), 0 8px 14px rgba(15,23,42,0.12);
}
.pgrt-hero-risk span.is-active {
  background: linear-gradient(180deg, #f4a460, #c56d32);
  transform: translateX(-24px);
}
.pgrt-hero-risk__pointer {
  position: absolute;
  right: clamp(26px, 7vw, 118px);
  top: 46%;
  width: 150px;
  height: 22px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, rgba(212,156,114,0), #d49c72 34%, #8b4a35);
  box-shadow: -12px 8px 18px rgba(15,23,42,0.14);
}
.pgrt-hero-risk__pointer::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -9px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c88b67;
}
.pgrt-hero-growth {
  width: min(38vw, 420px);
  height: 220px;
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 1.4vw, 18px);
  padding: 28px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(37,99,184,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,184,0.08) 1px, transparent 1px),
    rgba(255,255,255,0.68);
  background-size: 100% 44px, 54px 100%, auto;
  box-shadow: 0 18px 42px rgba(15,23,42,0.12);
}
.pgrt-hero-growth span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--pgrt-blue), var(--pgrt-deep));
  box-shadow: inset 0 8px 12px rgba(255,255,255,0.2);
}
.pgrt-hero-slider__nav {
  top: auto;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0,32,91,0.16);
  background: #ffffff;
  color: var(--pgrt-navy);
  box-shadow: 0 8px 18px rgba(15,23,42,0.08);
  backdrop-filter: none;
}
.pgrt-hero-slider__nav:hover {
  background: var(--pgrt-blue);
  color: #ffffff;
  border-color: var(--pgrt-blue);
}
.pgrt-hero-slider__nav--prev {
  left: 50%;
  transform: translateX(-58px);
}
.pgrt-hero-slider__nav--next {
  right: auto;
  left: 50%;
  transform: translateX(20px);
}
.pgrt-hero-slider__dots {
  bottom: 24px;
  left: auto;
  right: clamp(20px, 5vw, 74px);
  transform: none;
}
.pgrt-hero-slider__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  background: rgba(0,32,91,0.22);
}
.pgrt-hero-slider__dots button.is-active {
  width: 28px;
  background: var(--pgrt-blue);
}
@keyframes pgrt-banner-rise {
  from { transform: translateY(22px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 1024px) {
  .pgrt-hero {
    --pgrt-hero-banner-height: 620px;
  }
  .pgrt-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 54px;
  }
  .pgrt-hero__inner::before {
    left: 8%;
    width: 28%;
  }
  .pgrt-hero__inner::after {
    left: auto;
    right: 16%;
    width: 15%;
  }
  .pgrt-hero__copy {
    max-width: 680px;
    padding: 46px 24px 18px;
    margin-left: 0;
  }
  .pgrt-hero__art {
    min-height: 230px;
    justify-content: center;
    padding: 0 24px 28px;
  }
  .pgrt-hero-coins,
  .pgrt-hero-growth {
    width: min(560px, 100%);
  }
  .pgrt-hero-risk {
    width: min(480px, 100%);
  }
}
@media (max-width: 768px) {
  .pgrt-hero {
    --pgrt-hero-banner-height: 650px;
  }
  .pgrt-body--home .pgrt-hero {
    padding-top: 80px;
  }
  .pgrt-hero-slider,
  .pgrt-body--home .pgrt-hero-slider {
    height: var(--pgrt-hero-banner-height);
    min-height: var(--pgrt-hero-banner-height);
  }
  .pgrt-hero__copy {
    padding: 36px 22px 14px;
  }
  .pgrt-hero__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
    max-width: 8em;
  }
  .pgrt-hero__sub {
    max-width: 100%;
  }
  .pgrt-hero__cta {
    gap: 8px;
  }
  .pgrt-hero__art {
    min-height: 190px;
    padding-bottom: 58px;
  }
  .pgrt-hero__inner::after {
    right: 10%;
    width: 18%;
    opacity: 0.7;
  }
  .pgrt-hero-coins {
    height: 150px;
    gap: 8px;
  }
  .pgrt-hero-coins span {
    width: 42px;
  }
  .pgrt-hero-risk__pointer {
    display: none;
  }
  .pgrt-hero-growth {
    height: 160px;
    padding: 18px;
  }
  .pgrt-hero-slider__dots {
    right: 20px;
    bottom: 24px;
  }
  .pgrt-hero-slider__nav {
    display: none;
  }
}

/* Knowledge Hub */
.pgrt-section--knowledge-page {
  padding: 0;
  background: #fff;
}
.pgrt-knowledge__hero {
  padding: 48px 0 36px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(37, 99, 184, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #eef2f7;
}
.pgrt-knowledge__hero .pgrt-breadcrumbs a {
  color: var(--pgrt-accent-text);
}
.pgrt-knowledge__hero .pgrt-breadcrumbs li:not(:last-child)::after {
  color: #94a3b8;
}
.pgrt-knowledge__hero .pgrt-breadcrumbs li[aria-current] {
  color: #64748b;
}
.pgrt-knowledge__eyebrow {
  margin: 18px 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.pgrt-knowledge__title {
  margin: 0 0 16px;
  max-width: 16ch;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--pgrt-navy);
}
.pgrt-knowledge__lead {
  margin: 0 0 28px;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
}
.pgrt-knowledge__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pgrt-knowledge__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.pgrt-knowledge__chip:hover,
.pgrt-knowledge__chip.is-active {
  border-color: #cbd5e1;
  color: var(--pgrt-navy);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.pgrt-knowledge__chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-knowledge__body {
  padding: 48px 0 72px;
  display: grid;
  gap: 48px;
}
.pgrt-knowledge__section {
  scroll-margin-top: 104px;
}
.pgrt-knowledge__section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  max-width: 720px;
}
.pgrt-knowledge__section-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-knowledge__section-head h2 {
  margin: 2px 0 6px;
  font-size: 1.45rem;
  color: var(--pgrt-navy);
}
.pgrt-knowledge__section-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}
.pgrt-knowledge__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pgrt-knowledge-card {
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.pgrt-knowledge-card:hover,
.pgrt-knowledge-card.is-open {
  border-color: #dbe3ee;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.pgrt-knowledge-card__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 18px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
.pgrt-knowledge-card__q {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
}
.pgrt-knowledge-card__chevron {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
}
.pgrt-knowledge-card.is-open .pgrt-knowledge-card__chevron {
  transform: rotate(45deg);
  margin-top: 6px;
}
.pgrt-knowledge-card__answer {
  padding: 0 18px 18px;
}
.pgrt-knowledge-card__answer p {
  margin: 0;
  padding-top: 2px;
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .pgrt-knowledge__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pgrt-knowledge__title {
    max-width: none;
  }
  .pgrt-knowledge__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .pgrt-knowledge__chip {
    flex: 0 0 auto;
  }
  .pgrt-knowledge__cards {
    grid-template-columns: 1fr;
  }
}

/* Income Tax Calculator */
.pgrt-section--itc-page {
  padding: 0;
  background: #fff;
}
.pgrt-itc__hero {
  padding: 40px 0 28px;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(37, 99, 184, 0.07), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #eef2f7;
}
.pgrt-itc__hero .pgrt-breadcrumbs a { color: var(--pgrt-accent-text); }
.pgrt-itc__hero .pgrt-breadcrumbs li:not(:last-child)::after { color: #94a3b8; }
.pgrt-itc__hero .pgrt-breadcrumbs li[aria-current] { color: #64748b; }
.pgrt-itc__tool-badge {
  width: 44px;
  height: 44px;
  margin: 18px 0 14px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-itc__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.pgrt-itc__title {
  margin: 0 0 14px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--pgrt-navy);
}
.pgrt-itc__lead {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #64748b;
}
.pgrt-itc__back {
  display: inline-flex;
  color: var(--pgrt-accent-text);
  font-size: 0.92rem;
  font-weight: 600;
}
.pgrt-itc__back:hover { color: var(--pgrt-link-hover); }
.pgrt-itc__main {
  padding: 36px 0 72px;
  display: grid;
  gap: 56px;
  max-width: 980px;
}
.pgrt-itc-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.pgrt-itc-card__ay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e8edf3;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
}
.pgrt-itc-card__ay-sep {
  width: 1px;
  height: 14px;
  background: #cbd5e1;
}
.pgrt-itc-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 22px 22px 8px;
}
.pgrt-itc-field {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}
.pgrt-itc-field--full {
  padding: 8px 22px 18px;
}
.pgrt-itc-field__label,
.pgrt-itc-field legend {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}
.pgrt-itc-input {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: #0f172a;
  background: #fff;
}
.pgrt-itc-input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 184, 0.15);
}
.pgrt-itc-seg {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pgrt-itc-seg--wide .pgrt-itc-seg__opt { flex: 1 1 200px; }
.pgrt-itc-seg__opt {
  position: relative;
  cursor: pointer;
}
.pgrt-itc-seg__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pgrt-itc-seg__opt span {
  display: block;
  padding: 10px 14px;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.pgrt-itc-seg__opt input:checked + span {
  background: var(--pgrt-navy);
  border-color: var(--pgrt-navy);
  color: #fff;
}
.pgrt-itc-hint {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}
.pgrt-itc-deductions {
  border-top: 1px solid #eef2f7;
  margin-top: 4px;
}
.pgrt-itc-deductions__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}
.pgrt-itc-deductions__add {
  color: var(--pgrt-accent-text);
  font-weight: 700;
}
.pgrt-itc-deductions__panel {
  border-top: 1px solid #eef2f7;
  padding-bottom: 12px;
}
.pgrt-itc-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 16px 22px 20px;
  color: #64748b;
  font-size: 0.9rem;
  border-top: 1px solid #eef2f7;
}
.pgrt-itc-results {
  border-top: 1px solid #eef2f7;
  padding: 20px 22px 22px;
}
.pgrt-itc-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pgrt-itc-result {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  background: #fafbfc;
}
.pgrt-itc-result.is-better {
  border-color: #93c5fd;
  background: #f0f7ff;
}
.pgrt-itc-result h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #334155;
}
.pgrt-itc-result__tax {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--pgrt-navy);
  font-variant-numeric: tabular-nums;
}
.pgrt-itc-result__note {
  margin: 4px 0 14px;
  font-size: 0.8rem;
  color: #64748b;
}
.pgrt-itc-result__meta {
  margin: 0;
  display: grid;
  gap: 8px;
}
.pgrt-itc-result__meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}
.pgrt-itc-result__meta dt { color: #64748b; }
.pgrt-itc-result__meta dd {
  margin: 0;
  font-weight: 600;
  color: #1e293b;
  font-variant-numeric: tabular-nums;
}
.pgrt-itc-results__verdict {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
}
.pgrt-itc-slabs h2,
.pgrt-itc-explain h2 {
  margin: 0 0 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--pgrt-navy);
}
.pgrt-itc-slabs__lead {
  margin: 0 0 24px;
  max-width: 62ch;
  color: #64748b;
  line-height: 1.6;
}
.pgrt-itc-slabs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pgrt-itc-slab-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.pgrt-itc-slab-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #1e293b;
}
.pgrt-itc-slab-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.pgrt-itc-slab-card th,
.pgrt-itc-slab-card td {
  padding: 10px 0;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
}
.pgrt-itc-slab-card th {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}
.pgrt-itc-slab-card td:last-child,
.pgrt-itc-slab-card th:last-child {
  text-align: right;
  font-weight: 600;
}
.pgrt-itc-slab-card__note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}
.pgrt-itc-explain__list {
  display: grid;
  gap: 20px;
  margin-bottom: 22px;
}
.pgrt-itc-explain__list h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #1e293b;
}
.pgrt-itc-explain__list p,
.pgrt-itc-explain__caveat {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}
.pgrt-itc-explain__caveat { margin-bottom: 20px; }
.pgrt-itc-note {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.pgrt-itc-note__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-itc-note h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #1e293b;
}
.pgrt-itc-note p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}
.pgrt-itc-related__eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #94a3b8;
}
.pgrt-itc-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pgrt-itc-related__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.pgrt-itc-related__card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.pgrt-itc-related__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pgrt-itc-related__text strong {
  font-size: 0.98rem;
  color: #1e293b;
}
.pgrt-itc-related__text span {
  font-size: 0.85rem;
  color: #64748b;
}
.pgrt-itc-related__arrow {
  color: var(--pgrt-accent-text);
  font-size: 1.1rem;
}

@media (max-width: 800px) {
  .pgrt-itc-card__grid,
  .pgrt-itc-results__grid,
  .pgrt-itc-slabs__grid,
  .pgrt-itc-related__grid {
    grid-template-columns: 1fr;
  }
  .pgrt-itc-card__ay-sep { display: none; }
}

/* Residential Status calculator */
.pgrt-rs-profile {
  padding-top: 4px !important;
}
.pgrt-rs-choices {
  display: grid;
  gap: 10px;
}
.pgrt-rs-choice {
  position: relative;
  cursor: pointer;
  display: block;
}
.pgrt-rs-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pgrt-rs-choice span {
  display: block;
  padding: 14px 16px 14px 44px;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  position: relative;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.pgrt-rs-choice span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
.pgrt-rs-choice input:checked + span {
  border-color: #93c5fd;
  background: #f0f7ff;
  color: var(--pgrt-navy);
  box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.35);
}
.pgrt-rs-choice input:checked + span::before {
  border-color: var(--pgrt-navy);
  box-shadow: inset 0 0 0 4px var(--pgrt-navy);
}
.pgrt-rs-checks {
  display: grid;
  gap: 12px;
  padding: 4px 22px 18px;
}
.pgrt-rs-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
}
.pgrt-rs-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--pgrt-navy);
  flex: 0 0 auto;
}
.pgrt-rs-outcome {
  border-top: 1px solid #eef2f7;
  padding: 18px 22px 20px;
}
.pgrt-rs-outcome__empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  color: #64748b;
  font-size: 0.9rem;
  background: #fafbfc;
}
.pgrt-rs-outcome__result {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
  background: #f0f7ff;
}
.pgrt-rs-outcome__result[data-status="NR"] {
  border-color: #e2e8f0;
  background: #f8fafc;
}
.pgrt-rs-outcome__result[data-status="RNOR"] {
  border-color: #fcd34d;
  background: #fffbeb;
}
.pgrt-rs-outcome__result[data-status="ROR"] {
  border-color: #86efac;
  background: #f0fdf4;
}
.pgrt-rs-outcome__status {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pgrt-navy);
}
.pgrt-rs-outcome__detail {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* TDS & TCS rates reference */
.pgrt-tds__hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}
.pgrt-tds__lead-2 {
  margin: 0;
  max-width: 62ch;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.98rem;
}
.pgrt-tds__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
  padding: 28px 0 72px;
  max-width: none;
  width: 100%;
}
.pgrt-tds__content {
  min-width: 0;
  display: grid;
  gap: 28px;
}
.pgrt-tds-tools {
  border-radius: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 18px;
}
.pgrt-tds-tools h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #1e293b;
}
.pgrt-tds-tools > p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: #64748b;
}
.pgrt-tds-tools ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.pgrt-tds-tools a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.pgrt-tds-tools a:hover { background: #fff; }
.pgrt-tds-tools__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-tds-tools__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pgrt-tds-tools__text strong {
  font-size: 0.88rem;
  color: #1e293b;
}
.pgrt-tds-tools__text span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}
.pgrt-tds-tools--side {
  position: sticky;
  top: 96px;
}
.pgrt-tds-tools--hero { margin-top: 28px; }
.pgrt-tds-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pgrt-tds-search { flex: 1 1 280px; }
.pgrt-tds-search input {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.92rem;
}
.pgrt-tds-search input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 184, 0.14);
}
.pgrt-tds-filters {
  display: flex;
  gap: 8px;
}
.pgrt-tds-filter {
  border: 1px solid #dbe3ee;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
}
.pgrt-tds-filter.is-active {
  background: var(--pgrt-navy);
  border-color: var(--pgrt-navy);
  color: #fff;
}
.pgrt-tds-count {
  margin: -12px 0 0;
  font-size: 0.85rem;
  color: #64748b;
}
.pgrt-tds-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
}
.pgrt-tds-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  font-size: 0.86rem;
}
.pgrt-tds-table th,
.pgrt-tds-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
}
.pgrt-tds-table th {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f8fafc;
  white-space: nowrap;
}
.pgrt-tds-table tbody tr:last-child td { border-bottom: 0; }
.pgrt-tds-table tbody tr:hover td { background: #fafbfc; }
.pgrt-tds-table strong {
  display: block;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 3px;
}
.pgrt-tds-table__group {
  display: block;
  color: #94a3b8;
  font-size: 0.78rem;
}
.pgrt-tds-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef2f7;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pgrt-tds-empty {
  margin: 0;
  padding: 24px;
  text-align: center;
  color: #64748b;
}
.pgrt-tds-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.pgrt-tds-cta p {
  margin: 0;
  max-width: 58ch;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
}
.pgrt-tds-moved h2,
.pgrt-tds-faq h2 {
  margin: 0 0 16px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: var(--pgrt-navy);
}
.pgrt-tds-moved {
  display: grid;
  gap: 12px;
}
.pgrt-tds-moved__card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
}
.pgrt-tds-moved__card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: #1e293b;
}
.pgrt-tds-moved__card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}
.pgrt-tds-faq__item {
  padding: 16px 0;
  border-bottom: 1px solid #eef2f7;
}
.pgrt-tds-faq__item:last-child { border-bottom: 0; }
.pgrt-tds-faq__item h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: #1e293b;
}
.pgrt-tds-faq__item p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .pgrt-tds__hero-layout,
  .pgrt-tds__layout {
    grid-template-columns: 1fr;
  }
  .pgrt-tds-tools--hero { display: none; }
  .pgrt-tds-tools--side { position: static; }
}

/* IT Act 2025 mapping */
.pgrt-map-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pgrt-map-stat {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pgrt-map-stat strong {
  font-size: 1.8rem;
  color: var(--pgrt-navy);
  line-height: 1;
}
.pgrt-map-stat span {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.35;
}
.pgrt-map-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 12px;
  background: #eef2f7;
  width: fit-content;
}
.pgrt-map-tab {
  border: 0;
  background: transparent;
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
}
.pgrt-map-tab span {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 0.75rem;
}
.pgrt-map-tab.is-active {
  background: #fff;
  color: var(--pgrt-navy);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.pgrt-map-new-toggle {
  border: 1px solid #dbe3ee;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
}
.pgrt-map-new-toggle.is-active {
  background: var(--pgrt-navy);
  border-color: var(--pgrt-navy);
  color: #fff;
}
.pgrt-map-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 0;
  font-size: 0.95rem;
}
.pgrt-map-table th,
.pgrt-map-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
}
.pgrt-map-table th {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f8fafc;
  white-space: nowrap;
}
.pgrt-map-table th:nth-child(1),
.pgrt-map-table td:nth-child(1) {
  width: 12%;
}
.pgrt-map-table th:nth-child(2),
.pgrt-map-table td:nth-child(2) {
  width: 58%;
}
.pgrt-map-table th:nth-child(3),
.pgrt-map-table td:nth-child(3) {
  width: 30%;
}
.pgrt-map-table__sec {
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}
.pgrt-map-table strong {
  display: block;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.45;
}
.pgrt-map-table__chapter {
  display: block;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.4;
}
.pgrt-map-table__was {
  color: #334155;
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
  line-height: 1.45;
}
.pgrt-map-note-inline {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.pgrt-section--itc-page .pgrt-container {
  width: min(1280px, 100% - 48px);
}
.pgrt-map .pgrt-tds__hero-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
}
.pgrt-map .pgrt-tds-table-wrap {
  background: #fafbfc;
}
.pgrt-map .pgrt-map-table tbody tr {
  background: #fff;
}
.pgrt-map .pgrt-map-table tbody tr:hover td {
  background: #f8fafc;
}

@media (max-width: 800px) {
  .pgrt-map-stats { grid-template-columns: 1fr; }
  .pgrt-map-table th:nth-child(1),
  .pgrt-map-table td:nth-child(1),
  .pgrt-map-table th:nth-child(2),
  .pgrt-map-table td:nth-child(2),
  .pgrt-map-table th:nth-child(3),
  .pgrt-map-table td:nth-child(3) {
    width: auto;
  }
  .pgrt-map-table {
    table-layout: auto;
    min-width: 720px;
  }
}

/* DTAA rates */
.pgrt-dtaa-calc {
  margin-bottom: 8px;
}
.pgrt-dtaa-calc h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--pgrt-navy);
}
.pgrt-dtaa-calc__lead,
.pgrt-dtaa-table-lead {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}
.pgrt-dtaa-calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 18px;
}
.pgrt-dtaa-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.pgrt-dtaa-result__item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pgrt-dtaa-result__item span {
  font-size: 0.78rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.pgrt-dtaa-result__item strong {
  font-size: 1.15rem;
  color: #0f172a;
  line-height: 1.3;
}
.pgrt-dtaa-result__item--accent {
  background: var(--pgrt-navy);
  border-color: var(--pgrt-navy);
}
.pgrt-dtaa-result__item--accent span,
.pgrt-dtaa-result__item--accent strong {
  color: #fff;
}
.pgrt-dtaa-calc__note {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pgrt-dtaa-calc__note:empty,
.pgrt-dtaa-calc__note[hidden] {
  display: none;
}
.pgrt-dtaa-calc__hint {
  margin: 0;
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.55;
}
.pgrt-dtaa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 680px;
}
.pgrt-dtaa-table th,
.pgrt-dtaa-table td {
  padding: 14px 14px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
}
.pgrt-dtaa-table th {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f8fafc;
  white-space: nowrap;
}
.pgrt-dtaa-table tbody tr {
  background: #fff;
}
.pgrt-dtaa-table tbody tr:hover td {
  background: #f8fafc;
}
.pgrt-dtaa-table strong {
  display: block;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 4px;
}
.pgrt-dtaa-table__note {
  display: block;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.4;
}
.pgrt-dtaa-table td:nth-child(n+2) {
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}
.pgrt-dtaa #pgrt-dtaa-table-title {
  margin: 8px 0 6px;
  font-size: 1.25rem;
  color: var(--pgrt-navy);
}
@media (max-width: 800px) {
  .pgrt-dtaa-calc__grid {
    grid-template-columns: 1fr;
  }
  .pgrt-dtaa-result {
    grid-template-columns: 1fr;
  }
}

/* Calculators hub */
.pgrt-calcs__body {
  display: grid;
  gap: 48px;
  padding-block: 8px 24px;
}
.pgrt-calcs__group-head {
  margin-bottom: 18px;
}
.pgrt-calcs__group-head h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: var(--pgrt-navy);
}
.pgrt-calcs__group-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}
.pgrt-calcs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pgrt-calcs-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon tag"
    "icon title"
    "icon desc"
    "icon cta";
  column-gap: 14px;
  row-gap: 4px;
  align-content: start;
  padding: 18px 18px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
a.pgrt-calcs-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.pgrt-calcs-card--soon {
  opacity: 0.72;
  background: #fafbfc;
}
.pgrt-calcs-card__icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef2f7;
  color: var(--pgrt-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pgrt-calcs-card__tag {
  grid-area: tag;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 999px;
}
.pgrt-calcs-card__tag--soon {
  color: #92400e;
  background: #fef3c7;
}
.pgrt-calcs-card__title {
  grid-area: title;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.pgrt-calcs-card__desc {
  grid-area: desc;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}
.pgrt-calcs-card__cta {
  grid-area: cta;
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pgrt-blue, #2563eb);
}
.pgrt-calcs-suggest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}
.pgrt-calcs-suggest h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--pgrt-navy);
}
.pgrt-calcs-suggest p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 58ch;
}
@media (max-width: 800px) {
  .pgrt-calcs__grid {
    grid-template-columns: 1fr;
  }
  .pgrt-calcs-suggest {
    flex-direction: column;
    align-items: flex-start;
  }
}