/*
Theme Name:     GRS Astra Child
Theme URI:      https://globalreportsstore.com/
Description:    Custom child theme for Global Reports Store. Optimized for market research reports and data delivery.
Author:         Fat Mango Solutions
Author URI:     https://fatmangosolutions.com/
Template:       astra
Version:        1.0.0
Text Domain:    grs-astra-child
*/

@font-face {
  font-family: "ITC Franklin Gothic Std Book";
  src: url("ITC Franklin Gothic Std Book/ITC Franklin Gothic Std Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --grs-font-main: "ITC Franklin Gothic Std Book", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  --grs-container-max-width: 1360px;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--grs-font-main);
}

/* --- Custom Styles for Global Reports Store --- */
/* Basic UI */
.grs-container {
  width: 100%;
  max-width: var(--grs-container-max-width);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.grs-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
@media (max-width: 960px) {
  .grs-container {
    padding: 20px 16px;
  }

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

.grs-card { border: 1px solid #e6e6e6; border-radius: 10px; padding: 16px; background: #fff; }
.grs-muted { color: #666; font-size: 14px; }
.grs-title { margin: 0 0 8px; }
.grs-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0 0; position: sticky; top: 12px; z-index: 9; background: #fff; padding: 8px 0; }
.grs-tabs a { text-decoration: none; padding: 8px 10px; border: 1px solid #ddd; border-radius: 999px; font-size: 14px; }
.grs-section { margin-top: 18px; }
.grs-section h2 { margin: 0 0 10px; }

.grs-btn { display: inline-block; padding: 10px 14px; border-radius: 8px; text-decoration: none; border: 1px solid #111; }
.grs-btn-primary { background: #111; color: #fff; }
.grs-btn-outline { background: #fff; color: #111; }
.grs-btn-block { display: block; width: 100%; text-align: center; }

.grs-prices { display: grid; gap: 10px; margin-top: 10px; }
.grs-price-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px; border: 1px solid #eee; border-radius: 8px; }
.grs-sticky { position: sticky; top: 24px; }

.grs-form p { margin: 0 0 12px; }
.grs-form label { display:block; font-size: 14px; margin-bottom: 6px; }
.grs-form input, .grs-form textarea, .grs-form select {
  width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px;
}

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

.grs-checkbox-line label {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
}

.grs-checkbox-line input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.grs-checkbox-line span {
  font-size: 14px;
  line-height: 1.4;
}

.grs-alert { padding: 12px; border-radius: 8px; margin: 12px 0; }
.grs-alert-success { background: #e7f7ee; border: 1px solid #bfe7cf; }
.grs-alert-error { background: #fdecec; border: 1px solid #f3b9b9; }

.grs-paybox { margin-top: 10px; }
.grs-pay-methods { display:flex; gap:10px; margin:10px 0; flex-wrap: wrap; }
.grs-pay-methods button {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d6dbe8 !important;
  background: #fff !important;
  color: #2f3342 !important;
  cursor: pointer;
  font-weight: 600;
}
.grs-pay-methods button:hover,
.grs-pay-methods button:focus-visible {
  border-color: #35124f !important;
  background: #f7f2fb !important;
  color: #35124f !important;
}
.grs-pay-methods button.active {
  border-color: #35124f !important;
  background: #35124f !important;
  color: #fff !important;
}

.grs-pay-methods button[disabled],
.grs-pay-methods button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  border-color: #c8cfdd !important;
  color: #8890a3 !important;
  background: #f4f6fb !important;
}

.grs-list { display: grid; gap: 14px; }
.grs-list-item { border: 1px solid #e6e6e6; border-radius: 10px; padding: 14px; background: #fff; }
.grs-list-title { margin: 0; font-size: 20px; line-height: 1.3; }
.grs-list-title a { text-decoration: none; color: #111; }
.grs-list-title a:hover { text-decoration: underline; }

.grs-pagination { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.grs-pagination .page-numbers { border: 1px solid #ddd; border-radius: 8px; padding: 6px 10px; text-decoration: none; color: #222; }
.grs-pagination .page-numbers.current { border-color: #111; background: #111; color: #fff; }

.grs-order-status-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.grs-status-chip { display: inline-block; border-radius: 999px; color: #fff; font-size: 12px; padding: 4px 10px; }
.grs-status-pending { background: #6b7280; }
.grs-status-paid { background: #16a34a; }
.grs-status-failed { background: #dc2626; }
.grs-status-cancelled { background: #ea580c; }

.grs-checkout-page,
.grs-payment-page,
.grs-press-room-page,
.grs-thank-you-page,
.grs-sample-page {
  font-size: 14px;
  line-height: 1.55;
}

.grs-checkout-page .grs-title,
.grs-payment-page .grs-title,
.grs-press-room-page .grs-title,
.grs-thank-you-page .grs-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.grs-checkout-page h2,
.grs-payment-page h2,
.grs-press-room-page h2,
.grs-checkout-page h3,
.grs-payment-page h3,
.grs-press-room-page h3 {
  font-size: 16px;
  line-height: 1.35;
}

.grs-checkout-page .grs-muted,
.grs-payment-page .grs-muted,
.grs-press-room-page .grs-muted,
.grs-checkout-page label,
.grs-checkout-page input,
.grs-checkout-page select,
.grs-checkout-page textarea,
.grs-payment-page .grs-price-row span,
.grs-payment-page .grs-price-row strong {
  font-size: 14px;
}

.grs-checkout-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.grs-checkout-main,
.grs-checkout-summary {
  min-width: 0;
}

.grs-checkout-card h2 {
  margin-bottom: 10px;
}

.grs-checkout-license-title {
  margin: 0 0 10px;
  font-size: 15px;
  color: #2f3342;
}

.grs-checkout-summary .grs-section p {
  margin: 0 0 10px;
}

.grs-checkout-summary .grs-section label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  justify-content: space-between;
}

.grs-checkout-summary .grs-section input[type="radio"] {
  width: 16px;
  height: 16px;
}

.grs-checkout-license-label {
  flex: 1;
}

.grs-checkout-license-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: #1f2433;
}

.grs-checkout-old-price {
  color: #7a8195;
  text-decoration: line-through;
  font-size: 12px;
}

.grs-checkout-price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e4e8f2;
  padding-top: 12px;
  margin-top: 12px;
  font-size: 14px;
}

.grs-checkout-price-summary strong {
  color: #35124f;
  font-size: 18px;
}

.grs-checkout-discount-note {
  margin: 8px 0 0;
  color: #136338;
  font-size: 12px;
  line-height: 1.4;
}

.grs-checkout-summary hr {
  margin: 14px 0;
}

.grs-payment-response-card {
  max-width: 840px;
}

.grs-payment-response-summary {
  margin: 14px 0 4px;
  border: 1px solid #d8deea;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  background: #fbfdff;
}

.grs-payment-response-summary .grs-price-row {
  border: 0;
  border-bottom: 1px solid #e6ebf3;
  border-radius: 0;
  padding: 10px 0;
}

.grs-payment-response-summary .grs-price-row:last-child {
  border-bottom: 0;
}

@media (max-width: 960px) {
  .grs-checkout-layout {
    grid-template-columns: 1fr;
  }

  .grs-checkout-summary {
    position: static;
  }
}

.grs-press-room-page .grs-list-title {
  font-size: 16px;
}

.grs-thank-you-card {
  max-width: 700px;
  margin: 18px auto;
  padding: 26px 20px;
  border: 1px solid #d7dce5;
  border-radius: 12px;
  text-align: center;
  background: #fff;
}

.grs-thank-you-animation {
  margin: 0 auto 8px;
  width: 150px;
  height: 150px;
}

.grs-thank-you-animation video {
  width: 100%;
  height: 100%;
  display: block;
}

.grs-thank-you-title {
  margin: 8px 0 6px;
  font-size: 24px;
  line-height: 1.2;
  color: #35124f;
}

.grs-thank-you-subtitle {
  margin: 0 0 10px;
  font-size: 15px;
  color: #2e3140;
}

.grs-thank-you-report {
  margin: 0 0 18px;
  font-size: 14px;
  color: #343749;
}

.grs-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* --- Homepage --- */
.grs-home-primary,
.grs-home-main {
  width: 100%;
  float: none !important;
  margin: 0 !important;
}

.home .site-content > .ast-container {
  display: block !important;
  max-width: 100% !important;
}

.grs-home-main {
  display: block !important;
}

.grs-home-main > section {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100% !important;
}

.grs-home-main > section > .grs-container {
  display: block !important;
  width: 100%;
}

.grs-home-hero-wrap {
  background: #eef4f8;
  padding: 56px 0 48px;
}

@media (min-width: 1024px) {
  .grs-home-hero-wrap {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
  }

  .grs-home-main > section > .grs-container {
    width: 100%;
  }
}

.grs-home-hero {
  text-align: center;
}

.grs-home-hero-title {
  margin: 0;
  color: #35124f;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.grs-home-search-form {
  max-width: 1110px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 0;
  align-items: stretch;
  border: 2px solid #54b6de;
  border-radius: 40px;
  background: #fff;
  overflow: visible;
}

.grs-home-search-control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  background: transparent;
  border: 0;
  border-radius: 38px 0 0 38px;
}

.grs-home-search-icon {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: #44195f;
  pointer-events: none;
}

.grs-home-search-icon svg {
  width: 34px;
  height: 34px;
}

.grs-home-search-input {
  width: 100%;
  min-height: 70px;
  border: 0 !important;
  border-radius: 38px 0 0 38px !important;
  background: transparent !important;
  color: #333845 !important;
  font-size: 18px;
  line-height: 1.35;
  padding: 14px 18px 14px 98px !important;
}

.grs-home-search-input:focus {
  outline: none;
  box-shadow: none;
}

.grs-home-search-input::placeholder {
  color: #5d616d;
  opacity: 1;
}

.grs-home-search-btn {
  border: 0 !important;
  min-height: 72px;
  border-radius: 0 38px 38px 0 !important;
  background: #54b6de !important;
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  padding: 0 26px;
}

.grs-home-search-btn:hover,
.grs-home-search-btn:focus-visible {
  background: #1888b6 !important;
  color: #fff !important;
}

.grs-home-search-suggestions {
  position: absolute;
  top: calc(100% - 1px);
  left: -2px;
  right: auto;
  width: min(860px, calc(100% - 180px));
  min-width: 540px;
  background: #fff;
  border: 1px solid #c4cad5;
  border-radius: 36px;
  box-shadow: 0 14px 28px rgba(19, 23, 33, 0.12);
  text-align: left;
  z-index: 50;
  overflow: hidden;
  max-height: 560px;
  overflow-y: auto;
  padding: 10px 0 12px;
}

.grs-home-search-suggest-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.grs-home-search-suggest-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: auto;
  margin: 0 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #303440;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.3;
  border-top: 0;
}

.grs-home-search-suggest-link:hover,
.grs-home-search-suggest-link.is-active {
  background: #e9edf3;
  color: #2c3140;
}

.grs-home-search-suggest-icon {
  color: #5f2f7e;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grs-home-search-suggest-icon svg {
  width: 100%;
  height: 100%;
}

.grs-home-popular {
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.grs-home-popular-label {
  color: #1f2534;
  font-size: 16px;
  font-weight: 600;
}

.grs-home-popular-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.grs-home-popular-pill {
  color: #42185f;
  border: 1px solid #6a3d85;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  background: #fff;
}

.grs-home-popular-pill:hover,
.grs-home-popular-pill:focus-visible {
  color: #fff;
  background: #42185f;
  border-color: #42185f;
}

.grs-home-hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.grs-home-cta-primary {
  min-height: 52px;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3e1457;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.grs-home-cta-primary:hover,
.grs-home-cta-primary:focus-visible {
  color: #fff;
  background: #2f0f44;
}

.grs-home-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #3e1457;
  font-size: 16px;
}

.grs-home-cta-link:hover,
.grs-home-cta-link:focus-visible {
  color: #1888b6;
}

.grs-home-logo-strip {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 12px;
  align-items: center;
}

.grs-home-logo-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  text-align: center;
  color: #9ba1a9;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1.2;
  font-weight: 700;
}

.grs-home-logo-item img {
  display: block;
  max-width: 100%;
  width: auto;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.76);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.grs-home-logo-item:hover img,
.grs-home-logo-item:focus-within img {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-1px);
}

.grs-home-latest-reports {
  background: #ffffff;
  padding: 50px 0;
}

.grs-home-section-head {
  text-align: center;
  margin: 0 0 24px;
}

.grs-home-section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  color: #35124f;
}

.grs-home-section-head p {
  margin: 8px auto 0;
  max-width: 860px;
  color: #3e4050;
  font-size: 15px;
  line-height: 1.6;
}

.grs-home-industry-browser {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.grs-home-industry-nav {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #d8dae2;
  border-radius: 12px;
  background: #f9fbff;
}

.grs-home-industry-tab {
  width: 100%;
  border: 1px solid #d0d5df;
  background: #fff;
  border-radius: 9px;
  padding: 11px 12px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  color: #2f3140;
  font-size: 14px;
  font-weight: 600;
}

.grs-home-industry-tab small {
  color: #6c7280;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.grs-home-industry-tab:hover,
.grs-home-industry-tab:focus-visible {
  border-color: #1888b6;
  color: #0d5f8a;
  background: #f4fafe;
}

.grs-home-industry-tab.is-active {
  background: #35124f;
  border-color: #35124f;
  color: #fff;
}

.grs-home-industry-tab.is-active small {
  color: #cad0df;
}

.grs-home-industry-panel {
  border: 1px solid #d8dae2;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
}

.grs-home-industry-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.grs-home-industry-panel-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.grs-home-industry-panel-head h3 a {
  color: #35124f;
  text-decoration: none;
}

.grs-home-industry-panel-head h3 a:hover {
  color: #1888b6;
}

.grs-home-industry-view-all {
  color: #1888b6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.grs-home-report-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.grs-home-report-empty {
  margin: 0;
  grid-column: 1 / -1;
  border: 1px dashed #d6dde9;
  border-radius: 10px;
  padding: 16px;
  color: #53586a;
  font-size: 14px;
  line-height: 1.5;
}

.grs-home-report-item {
  border: 1px solid #e3e6ee;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  display: grid;
  gap: 8px;
  align-content: start;
}

.grs-home-report-item h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.grs-home-report-item h4 a {
  color: #2f3140;
  text-decoration: none;
}

.grs-home-report-item h4 a:hover {
  color: #1888b6;
}

.grs-home-report-date {
  margin: 0;
  color: #6d7382;
  font-size: 13px;
  line-height: 1.2;
}

.grs-home-report-excerpt {
  margin: 0;
  color: #3e4050;
  font-size: 14px;
  line-height: 1.55;
}

.grs-home-report-actions {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grs-home-report-read,
.grs-home-report-sample {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.grs-home-report-read {
  color: #1888b6;
}

.grs-home-report-sample {
  color: #3e1457;
}

.grs-home-press-section {
  padding: 52px 0;
  background: #f4f8fc;
}

.grs-home-press-head {
  text-align: left;
}

.grs-home-press-head h2,
.grs-home-press-head p {
  margin-left: 0;
  margin-right: 0;
}

.grs-home-press-list {
  border-top: 1px solid #d7dce7;
  background: transparent;
  padding: 0;
}

.grs-home-press-item {
  padding: 20px 0;
  border-bottom: 1px solid #e6ebf3;
}

.grs-home-press-item:last-child {
  border-bottom: 0;
}

.grs-home-press-date {
  margin: 0;
  color: #6a7080;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.grs-home-press-item h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.grs-home-press-item h3 a {
  color: #35124f;
  text-decoration: none;
}

.grs-home-press-item h3 a:hover {
  color: #1888b6;
}

.grs-home-press-item p {
  margin: 8px 0 0;
  color: #414452;
  font-size: 14px;
  line-height: 1.6;
}

.grs-home-press-read {
  display: inline-block;
  margin-top: 10px;
  color: #1888b6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.grs-home-press-foot {
  margin-top: 18px;
}

.grs-home-press-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: #54b6de;
  font-size: 14px;
  font-weight: 700;
}

.grs-home-press-btn:hover,
.grs-home-press-btn:focus-visible {
  color: #fff;
  background: #1888b6;
}

@media (max-width: 1200px) {
  .grs-home-hero-title {
    font-size: clamp(24px, 2.8vw, 30px);
  }

  .grs-home-search-form {
    grid-template-columns: minmax(0, 1fr) 152px;
  }

  .grs-home-popular-label {
    font-size: 15px;
  }

  .grs-home-cta-primary,
  .grs-home-cta-link {
    font-size: 15px;
  }

  .grs-home-industry-browser {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .grs-home-report-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .grs-home-hero-wrap {
    padding: 36px 0 30px;
  }

  .grs-home-hero-title {
    font-size: clamp(22px, 7vw, 28px);
  }

  .grs-home-search-form {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .grs-home-search-control {
    border-radius: 16px;
    border-right: 1px solid #c4cad5;
    min-height: 54px;
    border: 1px solid #c4cad5;
    background: #fff;
  }

  .grs-home-search-input {
    border-radius: 16px !important;
    min-height: 54px;
    font-size: 16px;
    padding: 12px 12px 12px 54px;
  }

  .grs-home-search-icon {
    left: 14px;
  }

  .grs-home-search-icon svg {
    width: 20px;
    height: 20px;
  }

  .grs-home-search-btn {
    border-radius: 16px !important;
    min-height: 48px;
    font-size: 18px;
    padding: 0 20px;
  }

  .grs-home-search-suggest-link {
    font-size: 15px;
    padding: 10px 12px;
  }

  .grs-home-search-suggestions {
    right: 0;
    left: 0;
    width: auto;
    min-width: 0;
    border-radius: 14px;
    padding: 8px 0 10px;
  }

  .grs-home-popular-label {
    font-size: 15px;
  }

  .grs-home-popular-pill {
    font-size: 13px;
  }

  .grs-home-hero-cta {
    margin-top: 22px;
    gap: 14px;
  }

  .grs-home-cta-primary,
  .grs-home-cta-link {
    font-size: 16px;
  }

  .grs-home-logo-strip {
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .grs-home-logo-item {
    min-height: 56px;
    padding: 4px 6px;
  }

  .grs-home-logo-item img {
    max-height: 42px;
  }

  .grs-home-section-head h2 {
    font-size: 24px;
  }

  .grs-home-industry-browser {
    grid-template-columns: 1fr;
  }

  .grs-home-industry-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
  }

  .grs-home-industry-tab {
    flex: 0 0 auto;
    min-width: 210px;
  }

  .grs-home-industry-panel {
    padding: 16px;
  }

  .grs-home-industry-panel-head h3 {
    font-size: 20px;
  }

  .grs-home-press-list {
    padding: 4px 16px;
  }

  .grs-home-press-item h3 {
    font-size: 19px;
  }
}

@media (max-width: 640px) {
  .grs-home-hero-title {
    font-size: 22px;
  }

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

  .grs-home-section-head h2 {
    font-size: 24px;
  }

  .grs-home-section-head p {
    font-size: 14px;
  }

  .grs-home-report-item h4 {
    font-size: 16px;
  }

  .grs-home-report-excerpt {
    font-size: 13px;
  }

  .grs-home-press-item h3 {
    font-size: 20px;
  }
}

/* --- Single Report (Screenshot Style) --- */
.single-report .grs-container.grs-report-page {
  max-width: var(--grs-container-max-width);
  padding-top: 30px;
  padding-bottom: 34px;
}

.grs-report-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
  color: #444655;
  font-size: 14px;
  line-height: 1.35;
}

.grs-report-breadcrumb a {
  color: #2a2c39;
  text-decoration: none;
}

.grs-report-breadcrumb a:hover {
  text-decoration: underline;
}

.grs-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.grs-report-main {
  min-width: 0;
  grid-column: 1;
  overflow: hidden;
}

.grs-report-top-block {
  margin-bottom: 12px;
}

.grs-report-hero-card {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
}

.grs-report-cover {
  width: 152px;
}

.grs-report-cover img {
  width: 152px;
  height: 186px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.grs-report-cover-fallback {
  width: 152px;
  height: 186px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 16px 14px;
  background:
    linear-gradient(165deg, rgba(33, 204, 243, 0.2) 0%, rgba(33, 204, 243, 0) 45%),
    linear-gradient(180deg, #0d255f 0%, #181a63 54%, #6d1f8f 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.grs-report-cover-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.25) 1px, transparent 0) 0 0 / 9px 9px;
  opacity: 0.35;
  pointer-events: none;
}

.grs-report-cover-fallback::before {
  content: "";
  position: absolute;
  inset: auto -28px 20px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.grs-report-pdf-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 24px;
  padding: 0 8px;
  border-radius: 5px;
  background: #f46239;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.grs-report-cover-text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(5, 6, 21, 0.2);
}

.grs-report-head {
  min-width: 0;
}

.grs-report-title {
  margin: 0;
  color: #35124f;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.grs-report-title-sub {
  display: block;
  margin-top: 10px;
  color: #38374b;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
}

.grs-report-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0 0 14px;
}

.grs-report-tab {
  text-decoration: none;
  color: #2e2f3b;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 10px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.grs-report-tab:hover,
.grs-report-tab:focus-visible {
  color: #0d5f8a;
  border-bottom-color: #0d86c8;
}

.grs-report-tab.is-active {
  color: #0d5f8a;
  font-weight: 700;
  border-bottom-color: #0d86c8;
}

.grs-report-tab-sample {
  margin-left: auto;
  background: #ff6e3b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  padding: 10px 24px;
  font-weight: 700;
  border: 0;
}

.grs-report-discount-banner {
  margin: 0 0 14px;
  padding: 8px 0;
  border-radius: 10px;
  border: 1px solid #f3c4c4;
  background: linear-gradient(90deg, #fff2f2 0%, #ffe9e9 100%);
  color: #b11a1a;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.grs-report-discount-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  text-decoration: none;
  animation: grs-discount-marquee 16s linear infinite;
  will-change: transform;
}

.grs-report-discount-seq {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.grs-report-discount-seq > span {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  min-width: max-content;
  color: #b11a1a;
  font-weight: 700;
}

.grs-report-discount-banner:hover .grs-report-discount-track,
.grs-report-discount-track:hover,
.grs-report-discount-track:focus-visible {
  animation-play-state: paused;
}

@keyframes grs-discount-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .grs-report-discount-track {
    animation: none;
    width: 100%;
    min-width: 100%;
    justify-content: center;
  }

  .grs-report-discount-seq[aria-hidden="true"] {
    display: none;
  }
}

.grs-report-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 16px;
}

.grs-report-section {
  border: 1px solid #d7d8df;
  border-radius: 3px;
  background: #fff;
  padding: 28px 34px;
  margin-bottom: 16px;
}

.grs-report-pane {
  display: none;
}

.grs-report-pane.is-active {
  display: block;
}

.grs-report-section-title {
  margin: 0 0 18px;
  color: #35124f;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.grs-report-content {
  color: #2f3340;
  font-size: 17px;
  line-height: 1.65;
}

.grs-report-content h2 {
  margin: 20px 0 12px;
  color: #35124f;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.grs-report-content h2:first-child {
  margin-top: 0;
}

.grs-report-content p {
  margin: 0 0 13px;
}

.grs-report-content h3,
.grs-report-content h4 {
  color: #35124f;
  margin-top: 16px;
  margin-bottom: 8px;
}

.grs-report-content ul,
.grs-report-content ol {
  margin: 0 0 13px 20px;
}

.grs-report-content li {
  margin-bottom: 8px;
}

.grs-report-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  display: table;
  overflow: visible;
  margin: 0 0 14px;
}

.grs-report-content th,
.grs-report-content td {
  padding: 10px 12px;
  border: 1px solid #d6d8e0;
  vertical-align: top;
}

.grs-report-content th {
  background: #f2f4f8;
  font-weight: 700;
}

.grs-report-toc {
  font-size: 16px;
}

.grs-report-toc.grs-toc-mode-rich {
  white-space: normal;
}

.grs-report-toc.grs-toc-mode-rich p,
.grs-report-toc.grs-toc-mode-rich div,
.grs-report-toc.grs-toc-mode-rich li {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.grs-report-toc.grs-toc-mode-plain {
  white-space: normal;
}

.grs-toc-line {
  margin: 0 0 7px;
  color: #2f3340;
  white-space: pre-line;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.grs-toc-level-1 {
  font-weight: 600;
  color: #35124f;
  margin-top: 8px;
}

.grs-toc-level-2 {
  padding-left: 14px;
}

.grs-toc-level-3 {
  padding-left: 28px;
}

.grs-toc-level-4 {
  padding-left: 42px;
}

.grs-toc-level-5 {
  padding-left: 56px;
}

.grs-report-sidebar {
  display: grid;
  gap: 16px;
  align-self: start;
  grid-column: 2;
  min-width: 0;
}

.grs-report-sidebar-main,
.grs-report-sidebar-sticky {
  display: grid;
  gap: 16px;
}

.grs-report-sidebar-sticky {
  position: relative;
  top: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}

.grs-report-sidebar-sticky.is-fixed {
  position: fixed;
  z-index: 30;
}

.grs-report-sidebar-sticky.is-entering {
  animation: grs-sticky-enter .4s linear forwards;
}

.grs-report-sidebar-sticky.is-hidden {
  opacity: 0;
  transform: translateY(-34px);
  pointer-events: none;
}

@keyframes grs-sticky-enter {
  from {
    opacity: 0;
    transform: translateY(-260px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grs-report-side-card {
  border: 1px solid #cbccd4;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}

.grs-report-side-title {
  margin: 0;
  color: #35124f;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.grs-report-side-head {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.grs-report-side-head,
.grs-report-side-head:hover,
.grs-report-side-head:active {
  color: inherit;
  background: transparent;
}

.grs-report-side-head:hover .grs-report-side-title,
.grs-report-side-head:focus-visible .grs-report-side-title {
  color: #35124f;
}

.single-report .grs-report-side-head:hover,
.single-report .grs-report-side-head:focus,
.single-report .grs-report-side-head:active {
  color: #35124f !important;
  background: transparent !important;
  border-color: transparent !important;
}

.grs-report-side-head:focus-visible {
  outline: 2px solid #5cbbe3;
  outline-offset: 3px;
  border-radius: 4px;
}

.grs-report-side-panel {
  margin-top: 14px;
}

.grs-report-side-panel[hidden] {
  display: none !important;
}

.grs-report-side-toggle {
  color: #3d2256;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.grs-report-details-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.grs-report-details-list li {
  margin: 0 0 12px;
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.35;
  color: #292b33;
}

.grs-report-details-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  top: 0;
  color: #0e1017;
  font-size: 13px;
}

.grs-report-details-list li span {
  color: #0f1017;
}

.grs-report-details-list li strong {
  font-weight: 500;
}

.grs-report-details-list a {
  color: #1f202a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grs-report-details-list a:hover {
  color: #35124f;
}

.grs-report-price-list {
  border-top: 1px solid #e4e4ea;
  margin-top: 8px;
  padding-top: 8px;
}

.grs-report-price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #3b3d46;
}

.grs-report-price-row strong {
  color: #171822;
}

.grs-report-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #2f1a45;
  background: #ddc6ef;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ddc6ef;
}

.grs-report-jump-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.grs-report-jump-list li {
  margin: 0 0 10px;
  padding-left: 18px;
  position: relative;
}

.grs-report-jump-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  color: #10121a;
}

.grs-report-jump-list a {
  color: #1f202a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}

.grs-report-jump-list a:hover {
  color: #35124f;
}

.grs-report-jump-list a.is-active {
  color: #0f6fa0;
  font-weight: 700;
}

.grs-report-tailor-card {
  background: #f8f7fb;
}

.grs-report-tailor-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #373a46;
}

.grs-report-tailor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: #35124f;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #35124f;
}

.grs-report-sample-card {
  background: #f8f8fb;
}

.grs-report-sample-card p {
  margin: 0 0 12px;
  color: #3b3d46;
  font-size: 14px;
  line-height: 1.55;
}

.grs-report-sample-btn,
.grs-report-buy-alt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 10px;
}

.grs-report-sample-btn {
  color: #fff;
  background: #ff6e3b;
  border: 1px solid #ff6e3b;
}

.grs-report-buy-alt-btn {
  color: #fff;
  background: #54b6de;
  border: 1px solid #54b6de;
}

.grs-report-license-note {
  margin: 0 0 8px;
  font-size: 13px;
}

.grs-report-cert-card {
  background: #fff;
}

.grs-report-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.grs-report-cert-badge {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #2f7bc8;
  color: #2f7bc8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.grs-report-cert-line {
  margin: 0 0 10px;
  font-weight: 700;
  color: #2b2d35;
}

.grs-report-cert-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.grs-report-dynamic-body h2 {
  margin-top: 24px;
}

.grs-report-dynamic-body h2:first-child {
  margin-top: 0;
}

.grs-report-dynamic-section-body {
  margin-bottom: 14px;
}

.grs-report-faq-section {
  border-color: #b5a4c6;
  padding: 0;
  overflow: hidden;
}

.grs-report-faq-title {
  margin: 0;
  padding: 22px 30px;
  color: #35124f;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.grs-report-faq-list {
  border-top: 1px solid #c3b2d3;
}

.grs-report-faq-item {
  border-bottom: 1px solid #c3b2d3;
}

.grs-report-faq-item:last-child {
  border-bottom: 0;
}

.grs-report-faq-question-wrap {
  margin: 0;
}

.grs-report-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: #fff;
  color: #32124b;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
  padding: 22px 30px;
}

.grs-report-faq-question:hover,
.grs-report-faq-question:active {
  color: #32124b;
  background: #fff;
}

.single-report .grs-report-faq-question:hover,
.single-report .grs-report-faq-question:focus,
.single-report .grs-report-faq-question:active {
  color: #32124b !important;
  background: #fff !important;
  border-color: transparent !important;
}

.grs-report-faq-question:focus-visible {
  outline: 2px solid #5cbbe3;
  outline-offset: -2px;
}

.grs-report-faq-icon::before {
  content: "\25BE";
  color: #5cbbe3;
  font-size: 24px;
  line-height: 1;
}

.grs-report-faq-question[aria-expanded="true"] .grs-report-faq-icon::before {
  content: "\25B4";
}

.grs-report-faq-answer {
  padding: 0 30px 22px;
  color: #3e4050;
  font-size: 15px;
  line-height: 1.65;
}

.grs-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  min-width: 52px;
  max-width: 52px;
  aspect-ratio: 1 / 1;
  padding: 0 !important;
  box-sizing: border-box;
  border: 0 !important;
  border-radius: 50%;
  background: #27c6de;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 9999;
  text-decoration: none;
}

.grs-scroll-top,
.grs-scroll-top:hover,
.grs-scroll-top:focus,
.grs-scroll-top:active {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  color: #fff !important;
  background: #27c6de !important;
  border-color: transparent !important;
  text-decoration: none !important;
}

.grs-scroll-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

.grs-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.grs-mobile-sticky-cta {
  display: none;
}

.grs-report-mobile-details {
  display: none;
}

.grs-report-faq-answer-inner > *:first-child {
  margin-top: 0;
}

.grs-report-faq-answer-inner > *:last-child {
  margin-bottom: 0;
}

/* --- Request Sample Page --- */
.grs-sample-page {
  max-width: var(--grs-container-max-width);
}

.grs-sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.grs-sample-main {
  min-width: 0;
}

.grs-sample-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.grs-sample-hero {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.grs-sample-hero-cover img,
.grs-sample-hero-cover .grs-report-cover-fallback {
  width: 92px;
  height: 114px;
  display: block;
}

.grs-sample-hero-cover .grs-report-cover-fallback {
  align-content: end;
  padding: 10px 8px;
}

.grs-sample-hero-cover .grs-report-pdf-badge {
  top: 6px;
  left: 6px;
  min-width: 34px;
  height: 18px;
  font-size: 10px;
}

.grs-sample-hero-cover .grs-report-cover-text {
  font-size: 14px;
  line-height: 1.04;
}

.grs-sample-title {
  margin: 0;
  color: #32114a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.grs-sample-title span {
  display: block;
  margin-top: 6px;
  color: #37384b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.grs-sample-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #d8dae2;
  overflow-x: auto;
}

.grs-sample-tabs a {
  text-decoration: none;
  color: #2b2d36;
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 10px;
  border-bottom: 3px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.grs-sample-tabs a:hover,
.grs-sample-tabs a:focus-visible {
  color: #0d5f8a;
  border-bottom-color: #0d86c8;
}

.grs-sample-tabs a.is-active {
  color: #0d5f8a;
  font-weight: 700;
  border-bottom-color: #0d86c8;
}

.grs-sample-tabs-buy {
  margin-left: auto;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 100px;
  padding: 10px 18px !important;
  background: #ddc6ef;
  color: #2f1a45 !important;
  font-weight: 700;
}

.grs-sample-tabs-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  background: #3e1457;
}

.grs-sample-form-section {
  max-width: 640px;
  margin: 26px auto 18px;
}

.grs-sample-form-section h2 {
  margin: 0;
  color: #32114a;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.grs-sample-form-section > p {
  margin: 6px 0 14px;
  color: #33154a;
  font-size: 15px;
  line-height: 1.4;
}

.grs-sample-form .grs-form-grid p {
  margin-bottom: 8px;
}

.grs-sample-form input,
.grs-sample-form select,
.grs-sample-form textarea {
  min-height: 42px;
  border-color: #cfc4d6;
  font-size: 14px;
  border-radius: 8px;
}

.grs-sample-form textarea {
  min-height: 94px;
  resize: vertical;
}

.grs-sample-form .iti {
  width: 100%;
}

.grs-sample-submit {
  min-width: 220px;
  min-height: 44px;
  border-radius: 999px;
  margin-top: 8px;
  border: none;
  color: #fff;
  background: #3d1456;
  font-size: 14px;
  font-weight: 700;
}

.grs-sample-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: #2d2f38;
  font-size: 14px;
}

.grs-sample-trust span::before {
  content: "\2713";
  color: #00a47c;
  margin-right: 8px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .grs-report-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
  }

  .grs-report-title {
    font-size: 28px;
  }

  .grs-report-title-sub {
    font-size: 15px;
    max-width: 100%;
  }

  .grs-report-tab {
    font-size: 14px;
    padding: 8px 12px;
  }

  .grs-report-section-title {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .single-report .grs-container.grs-report-page {
    padding-top: 0;
  }

  .single-report .site-content,
  .single-report #content {
    padding-top: 0 !important;
  }

  .grs-form-grid {
    grid-template-columns: 1fr;
  }

  /* Allow top-block full-bleed background to extend beyond container gutters. */
  .grs-report-main,
  .grs-report-layout {
    overflow: visible;
  }

  .grs-report-layout {
    grid-template-columns: 1fr;
  }

  .grs-report-top-block {
    margin: 0 0 12px;
    padding: 14px 0 12px;
    position: relative;
    z-index: 0;
  }

  .grs-report-top-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #35124f 0%, #16566f 100%);
    z-index: -1;
  }

  .grs-report-sidebar {
    display: none;
  }

  .grs-report-sidebar-sticky {
    position: static;
    top: auto;
  }

  .grs-report-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .grs-report-tab,
  .grs-report-tab-sample {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    text-align: center;
    border: 1px solid #565861;
    border-radius: 0;
    border-bottom-width: 1px;
    font-size: 12px;
    background: #ffffff;
    color: #35124f;
  }

  .grs-report-tab.is-active {
    background: #1888b6;
    color: #ffffff;
    border-color: #1888b6;
  }

  .grs-report-tab:hover,
  .grs-report-tab:focus-visible {
    color: #35124f;
    border-bottom-color: #565861;
  }

  .grs-report-tab-sample {
    display: none;
  }

  .grs-report-mobile-details {
    display: block;
    margin: 0 0 12px;
  }

  .grs-report-mobile-details-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .grs-report-mobile-details-list li {
    margin: 0 0 7px;
    font-size: 11px;
    line-height: 1.35;
    color: #eef4ff;
  }

  .grs-report-mobile-details-list li strong {
    font-weight: 600;
  }

  .grs-report-mobile-details-list a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .grs-report-title {
    font-size: 16px;
    line-height: 1.28;
    color: #f3f6ff;
  }

  .grs-report-title-sub {
    display: inline;
    margin-top: 0;
    margin-left: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }

  .grs-report-title-sub::before {
    content: " ";
  }

  .grs-report-content,
  .grs-report-content p,
  .grs-report-content li,
  .grs-report-content table,
  .grs-report-content td,
  .grs-report-content th {
    font-size: 15px;
  }

  .grs-report-content table {
    display: table;
    width: 100%;
    table-layout: fixed;
    overflow: visible;
  }

  .grs-report-content th,
  .grs-report-content td {
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 13px;
    padding: 8px;
  }

  .grs-sample-title {
    font-size: 20px;
  }

  .grs-sample-title span {
    font-size: 14px;
  }

  .grs-sample-form-section {
    margin-top: 28px;
  }

  .grs-sample-layout {
    grid-template-columns: 1fr;
  }

  .grs-sample-sidebar {
    position: static;
    top: auto;
    order: 2;
  }

  .grs-sample-main {
    order: 1;
  }

  .grs-sample-hero-cover {
    display: none;
  }

  .grs-sample-hero {
    grid-template-columns: 1fr;
  }

  .grs-sample-form-section h2 {
    font-size: 20px;
  }

  .grs-sample-form-section > p {
    font-size: 15px;
  }

  .grs-sample-form input,
  .grs-sample-form select,
  .grs-sample-form textarea {
    font-size: 14px;
    min-height: 42px;
  }

  .grs-sample-submit {
    font-size: 14px;
    min-height: 44px;
    min-width: 220px;
  }

  .grs-sample-trust {
    font-size: 14px;
    gap: 10px;
  }

  .grs-mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #ccd0d8;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .grs-mobile-sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .grs-mobile-sticky-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .grs-mobile-cta-sample {
    background: #3e1457;
  }

  .grs-mobile-cta-buy {
    background: #ff6e3b;
  }

  .grs-scroll-top {
    bottom: 84px;
    right: 12px;
  }

  .single-report .site-content,
  .single-report #content {
    padding-bottom: 74px;
  }

  .grs-report-breadcrumb {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

@media (max-width: 720px) {
  .single-report .grs-container.grs-report-page {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .grs-report-hero-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .grs-report-cover {
    display: none;
  }

  .grs-report-title {
    font-size: 16px;
  }

  .grs-report-title-sub {
    font-size: inherit;
    max-width: 100%;
  }

  .grs-report-tab {
    font-size: 12px;
    padding: 7px 10px;
  }

  .grs-report-tab-sample {
    font-size: 14px;
    margin-left: 0;
  }

  .grs-report-discount-banner {
    padding: 9px 10px;
    font-size: 12px;
    border-radius: 8px;
  }

  .grs-report-side-toggle {
    font-size: 24px;
  }

  .grs-report-faq-title {
    padding: 18px 16px;
    font-size: 20px;
  }

  .grs-report-faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .grs-report-faq-answer {
    padding: 0 16px 16px;
    font-size: 15px;
  }

  .grs-report-section {
    padding: 16px;
  }

  .grs-report-section-title {
    font-size: 20px;
  }

  .grs-report-content {
    font-size: 15px;
  }

  .grs-sample-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grs-sample-tabs-cta {
    margin-left: 0;
  }

  .grs-sample-form-section h2 {
    font-size: 20px;
  }

  .grs-sample-form-section > p {
    font-size: 15px;
  }

  .grs-sample-form input,
  .grs-sample-form select,
  .grs-sample-form textarea {
    font-size: 14px;
  }

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

  .grs-toc-level-2 { padding-left: 10px; }
  .grs-toc-level-3 { padding-left: 20px; }
  .grs-toc-level-4 { padding-left: 30px; }
  .grs-toc-level-5 { padding-left: 38px; }
}

/* --- Site Header (Global) --- */
.grs-site-header {
  position: relative;
  z-index: 110;
  background: #151f66;
  color: #ffffff;
  font-size: 15px;
}

.grs-site-header__bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.grs-site-header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 90px;
}

.grs-site-header__brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}

.grs-site-header__logo {
  display: block;
  width: auto;
  height: 58px;
}

.grs-site-header__logo-fallback {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.grs-site-header__nav {
  margin-left: 0;
}

.grs-site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.grs-site-header__menu > li {
  position: relative;
}

.grs-site-header__menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.grs-site-header__menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}

.grs-site-header__menu > li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
}

.grs-site-header__menu > li > a:hover,
.grs-site-header__menu > li > a:focus-visible {
  color: #9ce5ff;
}

.grs-site-header__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 310px;
  max-width: 380px;
  max-height: 600px;
  overflow: auto;
  background: #f8f9fb;
  border: 1px solid #4fbde7;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 30px rgba(12, 20, 40, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(4px);
}

.grs-site-header__menu .sub-menu::-webkit-scrollbar {
  width: 8px;
}

.grs-site-header__menu .sub-menu::-webkit-scrollbar-thumb {
  background: #c7cedb;
  border-radius: 999px;
}

.grs-site-header__menu > li:hover > .sub-menu,
.grs-site-header__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.grs-site-header__menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 34px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: #4fbde7;
  border-top: 1px solid #4fbde7;
  border-left: 1px solid #4fbde7;
}

.grs-site-header__menu .sub-menu li {
  position: relative;
}

.grs-site-header__menu .sub-menu li + li {
  border-top: 1px solid #e3e8f1;
}

.grs-site-header__menu .sub-menu a {
  display: block;
  padding: 12px 22px;
  color: #2b3040;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
}

.grs-site-header__menu .sub-menu a:hover,
.grs-site-header__menu .sub-menu a:focus-visible {
  background: #e8f4fb;
  color: #1a77a1;
}

.grs-site-header__search {
  position: relative;
  width: 260px;
  max-width: 260px;
  flex: 0 0 260px;
}

.grs-site-header__search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: stretch;
  border: 1px solid #60c6ea;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.grs-site-header__search-input {
  width: 100%;
  border: 0 !important;
  background: #ffffff !important;
  color: #2a2f3f !important;
  min-height: 40px;
  padding: 8px 12px !important;
  font-size: 15px;
  line-height: 1.3;
  border-radius: 0 !important;
}

.grs-site-header__search-input:focus {
  outline: none;
  box-shadow: none;
}

.grs-site-header__search-input::placeholder {
  color: #707687;
  opacity: 1;
}

.grs-site-header__search-btn {
  border: 0 !important;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #53bbe3 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  padding: 0;
}

.grs-site-header__search-btn svg {
  width: 24px;
  height: 24px;
}

.grs-site-header__search-btn:hover,
.grs-site-header__search-btn:focus-visible {
  background: #1a90bf !important;
  color: #ffffff !important;
}

.grs-site-header__search-results {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  border: 1px solid #c7cfdd;
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(20, 24, 38, 0.22);
  overflow: hidden;
  z-index: 35;
}

.grs-site-header__search-results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 16px;
  height: 16px;
  transform: translateY(-52%) rotate(45deg);
  background: #ffffff;
  border-top: 1px solid #c7cfdd;
  border-left: 1px solid #c7cfdd;
}

.grs-site-header__search-suggest-list {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  max-height: 420px;
  overflow-y: auto;
}

.grs-site-header__search-suggest-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: #2d3241;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
}

.grs-site-header__search-suggest-list li + li .grs-site-header__search-suggest-link {
  border-top: 1px solid #eceff5;
}

.grs-site-header__search-suggest-link:hover,
.grs-site-header__search-suggest-link.is-active {
  background: #eff5fb;
  color: #1f7faa;
}

.grs-site-header__search-suggest-icon {
  width: 20px;
  height: 20px;
  color: #582772;
  flex: 0 0 auto;
}

.grs-site-header__search-suggest-icon svg {
  width: 100%;
  height: 100%;
}

.grs-site-header__search-more-wrap {
  padding: 10px 18px 14px;
  border-top: 1px solid #eceff5;
}

.grs-site-header__search-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1844db;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.grs-site-header__search-more::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
}

.grs-site-header__search-more:hover,
.grs-site-header__search-more:focus-visible {
  color: #092ea6;
}

.grs-site-header__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 8px;
  color: #ffffff;
  background: transparent !important;
  padding: 0;
}

.grs-site-header__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.grs-site-header__mobile-toggle:hover,
.grs-site-header__mobile-toggle:focus-visible {
  color: #bceeff;
  border-color: #9bdef8 !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.grs-site-header__mobile-panel {
  background: #151f66;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 0 12px;
}

.grs-site-header__mobile-search {
  display: none;
}

.grs-mobile-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
}

.grs-mobile-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.grs-mobile-nav__item > a,
.grs-mobile-nav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 10px 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.grs-mobile-nav__item > a:hover,
.grs-mobile-nav__item > a:focus-visible,
.grs-mobile-nav__toggle:hover,
.grs-mobile-nav__toggle:focus-visible {
  color: #aee8ff;
}

.grs-mobile-nav__caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.grs-mobile-nav__toggle[aria-expanded="true"] .grs-mobile-nav__caret {
  transform: rotate(-135deg) translateY(-1px);
}

.grs-mobile-nav__submenu {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  background: #f5f7fb;
  border-radius: 3px;
}

.grs-mobile-nav__submenu li + li {
  border-top: 1px solid #e1e5ec;
}

.grs-mobile-nav__submenu a {
  display: block;
  padding: 12px 14px;
  color: #2f3445;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
}

.grs-mobile-nav__submenu a:hover,
.grs-mobile-nav__submenu a:focus-visible {
  background: #e9f3fb;
  color: #175d86;
}

@media (max-width: 1260px) {
  .grs-site-header__inner {
    gap: 12px;
  }

  .grs-site-header__menu {
    gap: 18px;
  }

  .grs-site-header__menu > li > a {
    font-size: 14px;
  }

  .grs-site-header__search {
    width: 230px;
    max-width: 230px;
    flex-basis: 230px;
  }
}

@media (max-width: 1024px) {
  .grs-site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 78px;
    padding: 12px 14px;
  }

  .grs-site-header__logo {
    height: 48px;
  }

  .grs-site-header__nav {
    display: none;
  }

  .grs-site-header__mobile-toggle {
    display: inline-flex;
  }

  .grs-site-header__search {
    max-width: none;
    width: 100%;
    flex: 1 1 auto;
  }

  .grs-site-header__search-control {
    grid-template-columns: minmax(0, 1fr) 50px;
    border-radius: 10px;
  }

  .grs-site-header__search-input {
    min-height: 44px;
    font-size: 15px;
    padding: 9px 12px !important;
  }

  .grs-site-header__search-btn {
    min-height: 44px;
  }

  .grs-site-header__search-btn svg {
    width: 24px;
    height: 24px;
  }

  .grs-site-header__mobile-panel .grs-container {
    padding: 8px 14px 0;
  }

  .grs-site-header__search-results {
    border-radius: 0 0 20px 20px;
  }

  .grs-site-header__search-suggest-link {
    padding: 11px 14px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .grs-site-header__inner {
    gap: 10px;
    min-height: 74px;
    padding: 10px 12px;
  }

  .grs-site-header__logo {
    height: 42px;
  }

  .grs-site-header__search-control {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .grs-site-header__search-input {
    min-height: 40px;
    font-size: 15px;
  }

  .grs-site-header__search-btn {
    min-height: 40px;
  }

  .grs-site-header__mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .grs-site-header__mobile-toggle svg {
    width: 22px;
    height: 22px;
  }
}

/* --- Site Footer (Global) --- */
.grs-site-footer {
  background: #151f66;
  color: #ffffff;
}

.grs-site-footer__container {
  max-width: var(--grs-container-max-width);
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.3fr;
  gap: 34px;
}

.grs-site-footer__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.grs-site-footer__subtitle {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.grs-site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
}

.grs-site-footer__logo {
  width: 170px;
  height: auto;
  display: block;
}

.grs-site-footer__logo-fallback {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.grs-site-footer__brand-tagline,
.grs-site-footer__brand-copy {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.34;
  font-weight: 700;
}

.grs-site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.grs-site-footer__list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.grs-site-footer__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.grs-site-footer__quick-icon {
  width: 14px;
  height: 14px;
  color: #8dd9ff;
  flex: 0 0 auto;
}

.grs-site-footer__list a:hover,
.grs-site-footer__list a:focus-visible {
  color: #7dd3fc;
}

.grs-site-footer__list a:hover .grs-site-footer__quick-icon,
.grs-site-footer__list a:focus-visible .grs-site-footer__quick-icon {
  color: #ffffff;
}

.grs-site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.grs-site-footer__contact-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.grs-site-footer__icon {
  color: #ff7a32;
  line-height: 1;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grs-site-footer__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.grs-site-footer__contact-list span,
.grs-site-footer__contact-list a {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  font-weight: 700;
}

.grs-site-footer__phone-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.grs-site-footer__address {
  margin: 0;
  font-style: normal;
}

.grs-site-footer__contact-list a:hover,
.grs-site-footer__contact-list a:focus-visible {
  color: #7dd3fc;
}

.grs-site-footer__sep {
  margin: 0 3px;
  opacity: 0.7;
}

.grs-site-footer__payments {
  display: block;
}

.grs-site-footer__payments-image {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
}

.grs-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.grs-site-footer__bottom-inner {
  max-width: var(--grs-container-max-width);
  margin: 0 auto;
  padding: 14px 20px;
  text-align: center;
}

.grs-site-footer__bottom-inner p {
  margin: 0;
  color: #e6ebff;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1140px) {
  .grs-site-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .grs-site-footer__container {
    padding: 32px 0 22px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grs-site-footer__title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .grs-site-footer__subtitle {
    font-size: 22px;
  }

  .grs-site-footer__logo {
    width: 130px;
  }

  .grs-site-footer__brand-tagline,
  .grs-site-footer__brand-copy,
  .grs-site-footer__list a,
  .grs-site-footer__contact-list span,
  .grs-site-footer__contact-list a {
    font-size: 15px;
    line-height: 1.4;
  }

  .grs-site-footer__bottom-inner {
    padding: 12px 16px;
  }

  .grs-site-footer__bottom-inner p {
    font-size: 13px;
  }

  body.tax-industry .grs-site-footer__container,
  body.post-type-archive-report .grs-site-footer__container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* --- Core Pages + Blog Redesign --- */
.grs-page-shell {
  max-width: var(--grs-container-max-width);
  padding-top: 34px;
  padding-bottom: 44px;
}

.grs-global-breadcrumb-wrap {
  margin-top: 12px;
}

.grs-global-breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #596176;
  font-size: 13px;
  line-height: 1.35;
}

.grs-global-breadcrumb a {
  color: #2f3344;
  text-decoration: none;
}

.grs-global-breadcrumb a:hover,
.grs-global-breadcrumb a:focus-visible {
  color: #177eac;
  text-decoration: underline;
}

.grs-global-breadcrumb__sep {
  color: #8f96a8;
}

.grs-global-breadcrumb__current {
  color: #4a4f63;
}

.grs-page-hero {
  margin-bottom: 24px;
}

.grs-page-kicker {
  margin: 0 0 8px;
  color: #0d7cac;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.grs-page-title {
  margin: 0;
  color: #32124b;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.grs-page-subtitle {
  margin: 12px 0 0;
  color: #3b3e4c;
  font-size: 16px;
  line-height: 1.55;
  max-width: 860px;
}

.grs-page-meta {
  margin: 12px 0 0;
  color: #61697b;
  font-size: 14px;
  line-height: 1.4;
}

.grs-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.grs-page-grid--docs {
  grid-template-columns: minmax(0, 1fr) 290px;
}

.grs-page-grid--contact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.grs-page-card {
  border: 1px solid #d8dce6;
  border-radius: 12px;
  background: #fff;
  padding: 26px;
}

.grs-page-main {
  min-width: 0;
}

.grs-page-aside {
  min-width: 0;
}

.grs-page-aside--toc {
  position: sticky;
  top: 18px;
}

.grs-page-prose {
  color: #30333f;
  font-size: 15px;
  line-height: 1.72;
}

.grs-page-prose > *:first-child {
  margin-top: 0;
}

.grs-page-prose > *:last-child {
  margin-bottom: 0;
}

.grs-page-prose h2 {
  margin: 24px 0 10px;
  color: #32124b;
  font-size: 24px;
  line-height: 1.25;
}

.grs-page-prose h3 {
  margin: 18px 0 8px;
  color: #32124b;
  font-size: 19px;
  line-height: 1.3;
}

.grs-page-prose h4,
.grs-page-prose h5,
.grs-page-prose h6 {
  color: #32124b;
  margin: 16px 0 8px;
}

.grs-page-prose p {
  margin: 0 0 12px;
}

.grs-page-prose ul,
.grs-page-prose ol {
  margin: 0 0 14px 18px;
}

.grs-page-prose li {
  margin-bottom: 6px;
}

.grs-page-prose a {
  color: #177eac;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grs-page-prose a:hover,
.grs-page-prose a:focus-visible {
  color: #0b4f78;
}

.grs-page-prose blockquote {
  margin: 14px 0;
  padding: 14px 16px;
  border-left: 4px solid #58bce3;
  background: #f5f9ff;
  color: #323546;
}

.grs-page-prose pre,
.grs-page-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.grs-page-prose pre {
  overflow: auto;
  border: 1px solid #d5dae7;
  border-radius: 8px;
  padding: 12px;
  background: #f7f9fc;
}

.grs-page-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
}

.grs-page-prose th,
.grs-page-prose td {
  padding: 10px 12px;
  border: 1px solid #d7dce7;
  vertical-align: top;
}

.grs-page-prose th {
  background: #f2f6fa;
  font-weight: 700;
}

.grs-page-toc {
  border: 1px solid #d7dce7;
  border-radius: 12px;
  padding: 16px;
  background: #fbfcff;
}

.grs-page-toc__title {
  margin: 0 0 10px;
  color: #32124b;
  font-size: 18px;
  line-height: 1.2;
}

.grs-page-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.grs-page-toc__item a {
  display: block;
  color: #2d3241;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  border-radius: 8px;
  padding: 7px 8px;
}

.grs-page-toc__item a:hover,
.grs-page-toc__item a:focus-visible,
.grs-page-toc__item a.is-active {
  color: #106d99;
  background: #eaf5fb;
}

.grs-page-toc__item.is-h3 a {
  padding-left: 18px;
  font-size: 13px;
  color: #50566b;
}

.grs-page-shell--legal .grs-page-hero {
  margin-bottom: 14px;
}

.grs-page-legal-card {
  max-width: 920px;
}

.grs-page-legal-card h2 {
  padding-top: 10px;
  border-top: 1px solid #e3e7f0;
}

.grs-page-legal-card h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.grs-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.grs-service-link {
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #d3d9e7;
  border-radius: 999px;
  color: #312d42;
  font-size: 14px;
  line-height: 1.2;
  background: #fff;
}

.grs-service-link:hover,
.grs-service-link:focus-visible {
  color: #fff;
  background: #35124f;
  border-color: #35124f;
}

.grs-marketing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.grs-marketing-metric {
  border: 1px solid #d8deea;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  text-align: center;
}

.grs-marketing-metric h2 {
  margin: 0;
  color: #32124b;
  font-size: 32px;
  line-height: 1.1;
}

.grs-marketing-metric p {
  margin: 6px 0 0;
  color: #4f5569;
  font-size: 14px;
}

.grs-marketing-content {
  margin-bottom: 16px;
}

.grs-marketing-band {
  border-radius: 12px;
  border: 1px solid #d5dded;
  background: linear-gradient(110deg, #f5f8ff 0%, #eef7fc 100%);
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.grs-marketing-band__content h2 {
  margin: 0;
  color: #32124b;
  font-size: 24px;
  line-height: 1.2;
}

.grs-marketing-band__content p {
  margin: 10px 0 0;
  color: #3f4454;
  font-size: 15px;
}

.grs-marketing-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grs-contact-aside {
  display: grid;
  gap: 12px;
}

.grs-contact-card h2 {
  margin: 0 0 6px;
  color: #32124b;
  font-size: 20px;
  line-height: 1.2;
}

.grs-contact-card p {
  margin: 0;
  color: #343948;
  font-size: 15px;
  line-height: 1.6;
}

.grs-contact-card a {
  color: #177eac;
  text-decoration: none;
}

.grs-contact-card a:hover,
.grs-contact-card a:focus-visible {
  text-decoration: underline;
}

.grs-contact-form-title {
  margin: 0 0 14px;
  color: #32124b;
  font-size: 24px;
  line-height: 1.2;
}

.grs-contact-form-card form label {
  color: #2f3340;
  font-size: 14px;
}

.grs-contact-form-card form input,
.grs-contact-form-card form select,
.grs-contact-form-card form textarea {
  width: 100%;
  border: 1px solid #ccd3e3;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 14px;
}

.grs-contact-form-card form textarea {
  min-height: 120px;
  resize: vertical;
}

.grs-contact-form-card form button,
.grs-contact-form-card form input[type="submit"] {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #35124f;
  background: #35124f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
}

.grs-contact-form-card form button:hover,
.grs-contact-form-card form input[type="submit"]:hover {
  background: #2b0f40;
  border-color: #2b0f40;
}

.grs-blog-shell .grs-page-hero {
  margin-bottom: 18px;
}

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

.grs-blog-card {
  border: 1px solid #d9dfeb;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  margin: 0;
}

.grs-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: #61697c;
  font-size: 13px;
  line-height: 1.2;
}

.grs-blog-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #edf5fb;
  color: #106f9c;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.grs-blog-card__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.grs-blog-card__title a {
  color: #32124b;
  text-decoration: none;
}

.grs-blog-card__title a:hover,
.grs-blog-card__title a:focus-visible {
  color: #177eac;
}

.grs-blog-card__excerpt {
  margin: 0;
  color: #3a3e4d;
  font-size: 15px;
  line-height: 1.6;
}

.grs-blog-card__read {
  margin-top: 12px;
  display: inline-block;
  color: #177eac;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.grs-blog-card__read:hover,
.grs-blog-card__read:focus-visible {
  color: #0b4f78;
}

.grs-page-empty {
  max-width: 620px;
}

.grs-page-empty h2 {
  margin: 0 0 6px;
  color: #32124b;
  font-size: 24px;
}

.grs-page-empty p {
  margin: 0;
  color: #4c5266;
  font-size: 15px;
}

.grs-blog-single-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #596078;
  font-size: 14px;
}

.grs-blog-single-content {
  margin-bottom: 14px;
}

.grs-blog-single-nav {
  border: 1px solid #d8deea;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.grs-blog-single-nav a {
  text-decoration: none;
  color: #177eac;
  font-size: 14px;
  font-weight: 700;
}

.grs-blog-single-nav a:hover,
.grs-blog-single-nav a:focus-visible {
  color: #0b4f78;
}

@media (max-width: 1100px) {
  .grs-page-grid--docs {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}

@media (max-width: 960px) {
  .grs-page-shell {
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .grs-page-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .grs-page-subtitle {
    font-size: 15px;
  }

  .grs-page-grid--docs,
  .grs-page-grid--contact {
    grid-template-columns: 1fr;
  }

  .grs-page-aside--toc {
    position: static;
    top: auto;
    order: -1;
  }

  .grs-marketing-metrics {
    grid-template-columns: 1fr;
  }

  .grs-marketing-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .grs-page-card {
    padding: 16px;
  }

  .grs-page-prose {
    font-size: 14px;
    line-height: 1.62;
  }

  .grs-page-prose h2 {
    font-size: 20px;
  }

  .grs-page-prose h3 {
    font-size: 17px;
  }

  .grs-page-toc {
    padding: 14px;
  }

  .grs-page-toc__title {
    font-size: 16px;
  }

  .grs-page-toc__item a {
    font-size: 13px;
  }

  .grs-contact-form-title {
    font-size: 20px;
  }

  .grs-blog-card__title {
    font-size: 19px;
  }
}

/* --- About / Services / Contact V2 --- */
.grs-about-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.grs-about-intro h2 {
  margin: 0 0 8px;
  color: #32124b;
  font-size: 24px;
  line-height: 1.2;
}

.grs-about-intro p,
.grs-about-intro li {
  font-size: 15px;
  line-height: 1.65;
  color: #343948;
}

.grs-about-intro ul {
  margin: 0;
  padding-left: 18px;
}

.grs-about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.grs-about-feature-card {
  border: 1px solid #d9deea;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}

.grs-about-feature-card h3 {
  margin: 0 0 8px;
  color: #32124b;
  font-size: 21px;
  line-height: 1.25;
}

.grs-about-feature-card p {
  margin: 0;
  color: #404556;
  font-size: 15px;
  line-height: 1.6;
}

.grs-about-process {
  margin-bottom: 16px;
}

.grs-about-process h2 {
  margin: 0 0 12px;
  color: #32124b;
  font-size: 24px;
}

.grs-about-process ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.grs-about-process li {
  color: #373c4b;
  font-size: 15px;
  line-height: 1.55;
}

.grs-about-industries {
  margin-bottom: 16px;
}

.grs-about-industries h2 {
  margin: 0 0 12px;
  color: #32124b;
  font-size: 24px;
}

.grs-about-industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grs-about-industries__grid a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid #d4dbe8;
  border-radius: 999px;
  padding: 6px 14px;
  text-decoration: none;
  color: #2f3444;
  background: #f9fbfe;
  font-size: 14px;
  line-height: 1.2;
}

.grs-about-industries__grid a:hover,
.grs-about-industries__grid a:focus-visible {
  color: #fff;
  background: #35124f;
  border-color: #35124f;
}

.grs-services-page .grs-service-links {
  margin-bottom: 14px;
}

.grs-services-section {
  margin-bottom: 14px;
}

.grs-services-section h2 {
  margin: 0 0 8px;
  color: #32124b;
  font-size: 24px;
  line-height: 1.2;
}

.grs-services-section p,
.grs-services-section li {
  color: #3b4050;
  font-size: 15px;
  line-height: 1.6;
}

.grs-services-section ul {
  margin: 0;
  padding-left: 18px;
}

.grs-services-models {
  margin-bottom: 14px;
}

.grs-services-models h2,
.grs-services-deliverables h2 {
  margin: 0 0 12px;
  color: #32124b;
  font-size: 24px;
  line-height: 1.2;
}

.grs-services-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.grs-services-model-card {
  border: 1px solid #dde2ed;
  border-radius: 10px;
  background: #f9fbff;
  padding: 14px;
}

.grs-services-model-card h3 {
  margin: 0 0 6px;
  color: #35124f;
  font-size: 18px;
  line-height: 1.25;
}

.grs-services-model-card p {
  margin: 0;
  color: #414758;
  font-size: 14px;
  line-height: 1.55;
}

.grs-services-deliverables {
  margin-bottom: 14px;
}

.grs-services-deliverables ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.grs-services-deliverables li {
  color: #3b4050;
  font-size: 15px;
  line-height: 1.55;
}

.grs-services-side-note h3 {
  margin: 0 0 8px;
  color: #32124b;
  font-size: 20px;
  line-height: 1.2;
}

.grs-services-side-note p {
  margin: 0 0 12px;
  color: #414758;
  font-size: 14px;
  line-height: 1.55;
}

.grs-service-contact-section {
  margin-top: 22px;
}

.grs-service-contact-panel {
  border: 1px solid #d6deeb;
  border-radius: 14px;
  background: #fff;
  padding: 24px 26px;
}

.grs-service-contact-panel__main h2 {
  margin: 0;
  color: #32124b;
  font-size: 28px;
  line-height: 1.15;
}

.grs-service-contact-panel__main > p {
  margin: 10px 0 14px;
  color: #3f4557;
  font-size: 15px;
  line-height: 1.55;
}

.grs-service-contact-note {
  margin: 12px 0 0;
  color: #626983;
  font-size: 13px;
  line-height: 1.45;
}

.grs-service-contact-note a {
  color: #1857c8;
}

.grs-strategy-page {
  padding-top: 22px;
}

.grs-strategy-hero {
  border: 1px solid #1c3f7f;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2f64 0%, #1f4b92 48%, #0f2b57 100%);
  color: #fff;
}

.grs-strategy-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.grs-strategy-hero__copy {
  padding: 40px 34px;
  background: linear-gradient(120deg, rgba(10, 30, 63, 0.88) 0%, rgba(25, 66, 125, 0.72) 100%);
}

.grs-strategy-hero__kicker {
  margin: 0 0 8px;
  color: #9cd0ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grs-strategy-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.75vw, 48px);
  line-height: 1.12;
}

.grs-strategy-hero__copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 20px;
  line-height: 1.45;
  max-width: 720px;
}

.grs-strategy-hero__media {
  min-height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, rgba(8, 25, 53, 0.35) 0%, rgba(23, 59, 112, 0.15) 100%);
}

.grs-strategy-hero__media img {
  width: min(100%, 470px);
  max-height: 300px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 35px rgba(5, 14, 34, 0.38);
}

.grs-strategy-hero__quote {
  margin: 0;
  padding: 14px 22px;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  font-style: italic;
  color: #d7e8ff;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(3, 17, 44, 0.5);
}

.grs-strategy-section {
  margin-top: 24px;
  padding: 10px 0;
}

.grs-strategy-section--plain {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.grs-strategy-section-title {
  margin: 0;
  color: #153f7b;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.2;
  text-align: center;
}

.grs-strategy-question-panel {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  border: 1px solid #dae3f1;
  border-radius: 12px;
  background: linear-gradient(120deg, #f8fbff 0%, #f0f6fd 55%, #f6f7fb 100%);
  padding: 18px;
}

.grs-strategy-question-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
  color: #283146;
  font-size: 18px;
  line-height: 1.45;
}

.grs-strategy-question-highlight {
  border-left: 1px solid #ced9ea;
  padding-left: 20px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.grs-strategy-question-highlight p {
  margin: 0;
  color: #1d2e55;
  font-size: clamp(25px, 1.85vw, 32px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
}

.grs-strategy-card-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.grs-strategy-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grs-strategy-card-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grs-strategy-card {
  border: 1px solid #d8e0ef;
  border-radius: 12px;
  background: #f8fbff;
  padding: 18px 14px;
  text-align: center;
}

.grs-strategy-card__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf3ff;
  color: #1c4c90;
}

.grs-strategy-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grs-strategy-card h3 {
  margin: 0;
  color: #173d77;
  font-size: 21px;
  line-height: 1.25;
}

.grs-strategy-card p {
  margin: 8px 0 0;
  color: #42506c;
  font-size: 15px;
  line-height: 1.45;
}

.grs-strategy-card--compact {
  padding: 16px 12px;
}

.grs-strategy-card--compact h3 {
  font-size: 19px;
}

.grs-strategy-framework {
  list-style: none;
  counter-reset: grs-strategy;
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  background: linear-gradient(95deg, #0f2f64 0%, #204f97 100%);
}

.grs-strategy-framework li {
  counter-increment: grs-strategy;
  position: relative;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 12px 10px 12px 42px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.grs-strategy-framework li::before {
  content: counter(grs-strategy);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  color: #153f7b;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grs-strategy-gain-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.grs-strategy-gain-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.grs-strategy-gain-grid li {
  color: #243047;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.grs-strategy-gain-grid li::before {
  content: \"\\2713\";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e6f2ff;
  color: #174a8f;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grs-strategy-trust-band {
  margin-top: 22px;
  border: 1px solid #1a3b77;
  border-radius: 14px;
  background: linear-gradient(115deg, #0c2a58 0%, #163f7f 56%, #0f2f64 100%);
  color: #fff;
  padding: 20px;
}

.grs-strategy-trust-band h2 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(22px, 1.95vw, 30px);
  line-height: 1.2;
}

.grs-strategy-trust-band__items {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.grs-strategy-trust-band__items span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  text-align: center;
  padding: 8px 10px;
}

.grs-service-contact-logos {
  margin-top: 16px;
  border: 1px solid #d7e1ef;
  border-radius: 12px;
  background: #f9fcff;
  padding: 16px;
}

.grs-service-contact-logos h3 {
  margin: 0 0 12px;
  color: #35124f;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.grs-contact-page .grs-contact-form-card {
  position: relative;
}

.grs-contact-form-card .grs-alert {
  margin-top: 0;
}

.grs-contact-form .grs-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grs-contact-form .iti {
  width: 100%;
}

.grs-contact-form button[type="submit"] {
  margin-top: 4px;
  min-width: 220px;
}

@media (max-width: 960px) {
  .grs-about-intro {
    grid-template-columns: 1fr;
  }

  .grs-about-features {
    grid-template-columns: 1fr;
  }

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

  .grs-service-contact-panel {
    padding: 16px 14px;
  }

  .grs-service-contact-panel__main h2 {
    font-size: 24px;
  }

  .grs-strategy-hero__grid,
  .grs-strategy-question-panel,
  .grs-strategy-card-grid--four,
  .grs-strategy-card-grid--six,
  .grs-strategy-framework,
  .grs-strategy-gain-grid,
  .grs-strategy-trust-band__items {
    grid-template-columns: 1fr;
  }

  .grs-strategy-hero__copy {
    padding: 22px 16px;
  }

  .grs-strategy-hero__copy h1 {
    font-size: 30px;
  }

  .grs-strategy-hero__media {
    padding: 12px 12px 18px;
    min-height: 0;
  }

  .grs-strategy-hero__media img {
    width: 100%;
    max-height: 260px;
  }

  .grs-strategy-hero__copy p,
  .grs-strategy-question-panel ul,
  .grs-strategy-gain-grid li {
    font-size: 16px;
  }

  .grs-strategy-question-highlight {
    border-left: 0;
    border-top: 1px solid #ced9ea;
    padding: 14px 0 0;
  }

  .grs-strategy-question-highlight p {
    font-size: 22px;
  }

  .grs-strategy-section {
    padding: 6px 0;
  }

  .grs-contact-form .grs-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .grs-about-intro h2,
  .grs-about-process h2,
  .grs-about-industries h2,
  .grs-services-section h2,
  .grs-services-models h2,
  .grs-services-deliverables h2 {
    font-size: 20px;
  }

  .grs-about-feature-card h3 {
    font-size: 18px;
  }

  .grs-services-model-card h3 {
    font-size: 17px;
  }
}

/* --- Report Archive --- */
.grs-report-archive-page {
  padding: 18px 0 24px;
}

.grs-report-archive-head {
  margin-bottom: 14px;
}

.grs-report-archive-title {
  margin: 0;
  color: #35124f;
  font-size: 34px;
  line-height: 1.15;
}

.grs-report-archive-subtitle {
  margin: 6px 0 0;
  color: #4a5266;
  font-size: 15px;
  line-height: 1.5;
}

.grs-industry-description {
  margin-top: 8px;
}

.grs-industry-description__preview {
  margin: 0;
  color: #4a5266;
  font-size: 15px;
  line-height: 1.6;
}

.grs-industry-description__full > :first-child {
  margin-top: 0;
}

.grs-industry-description__full > :last-child {
  margin-bottom: 0;
}

.grs-industry-description__full p,
.grs-industry-description__full li {
  color: #4a5266;
  font-size: 15px;
  line-height: 1.6;
}

.grs-industry-description__toggle {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #177eac;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  cursor: pointer;
}

.grs-industry-description__toggle:hover,
.grs-industry-description__toggle:focus-visible {
  color: #35124f;
  text-decoration: underline;
}

.grs-report-archive-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.grs-report-archive-sidebar {
  position: sticky;
  top: 100px;
}

.grs-report-archive-sidebar-card {
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.grs-report-archive-sidebar-title {
  margin: 0;
  padding: 14px 16px;
  color: #35124f;
  font-size: 22px;
  line-height: 1.2;
  border-bottom: 1px solid #e6ebf4;
}

.grs-report-archive-industries {
  list-style: none;
  margin: 0;
  padding: 0;
}

.grs-report-archive-industries li + li {
  border-top: 1px solid #edf1f7;
}

.grs-report-archive-industries a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #2d3550;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 14px;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.grs-report-archive-industries a:hover,
.grs-report-archive-industries a:focus-visible {
  color: #35124f;
  background: #f3f7fc;
}

.grs-report-archive-industries a.is-active {
  color: #fff;
  background: #35124f;
}

.grs-report-archive-industries a strong {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.grs-report-archive-main {
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #fff;
}

.grs-report-archive-list {
  padding: 4px 20px 6px;
}

.grs-report-archive-item {
  border-bottom: 1px solid #e7edf6;
  padding: 16px 0;
}

.grs-report-archive-item:last-child {
  border-bottom: 0;
}

.grs-report-archive-item-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  color: #2b3148;
}

.grs-report-archive-item-title a {
  color: inherit;
  text-decoration: none;
}

.grs-report-archive-item-title a:hover,
.grs-report-archive-item-title a:focus-visible {
  color: #1d84bf;
}

.grs-report-archive-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: #6b7284;
  font-size: 13px;
}

.grs-report-archive-item-dot {
  font-size: 14px;
  line-height: 1;
}

.grs-report-archive-item-excerpt {
  margin: 10px 0 0;
  color: #434a5d;
  font-size: 14px;
  line-height: 1.58;
}

.grs-report-archive-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.grs-report-archive-item-actions a {
  color: #0f8cc4;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}

.grs-report-archive-item-actions a:hover,
.grs-report-archive-item-actions a:focus-visible {
  color: #35124f;
  text-decoration: underline;
}

.grs-report-archive-pagination {
  padding: 14px 20px 18px;
  border-top: 1px solid #e6ebf4;
}

.grs-report-archive-empty {
  padding: 24px 20px;
  color: #5a6277;
  font-size: 15px;
}

@media (max-width: 980px) {
  .grs-report-archive-title {
    font-size: 28px;
  }

  .grs-report-archive-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grs-report-archive-main {
    order: 1;
  }

  .grs-report-archive-sidebar {
    order: 2;
    position: static;
  }
}

@media (max-width: 720px) {
  .grs-report-archive-page {
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .grs-report-archive-title {
    font-size: 24px;
  }

  .grs-report-archive-subtitle {
    font-size: 14px;
  }

  .grs-industry-description__preview,
  .grs-industry-description__full p,
  .grs-industry-description__full li {
    font-size: 14px;
  }

  .grs-report-archive-sidebar-title {
    font-size: 20px;
  }

  .grs-report-archive-list {
    padding: 4px 14px;
  }

  .grs-report-archive-item-title {
    font-size: 18px;
  }

  .grs-report-archive-item-excerpt {
    font-size: 13px;
  }

  .grs-report-archive-pagination {
    padding: 12px 14px 16px;
  }
}

/* --- Home: Testimonials + Final CTA --- */
.grs-home-testimonials {
  background: radial-gradient(circle at 50% 15%, #2f8ff1 0%, #2d7ce9 45%, #2f84ef 100%);
  padding: 56px 0;
}

.grs-home-testimonial-slider {
  margin-top: 4px;
}

.grs-home-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 2px 14px;
}

.grs-home-testimonial-track::-webkit-scrollbar {
  display: none;
}

.grs-home-testimonial-card {
  background: #f7f8fb;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(10, 18, 35, 0.16);
  height: 100%;
}

.grs-home-testimonial-quote {
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
  color: #2f3342;
}

.grs-home-testimonial-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.grs-home-testimonial-author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.grs-home-testimonial-author strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  color: #2d3140;
}

.grs-home-testimonial-author span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: #596077;
}

.grs-home-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.grs-home-testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  padding: 0;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.grs-home-testimonial-dots button.is-active {
  width: 28px;
  background: #ffffff;
}

.grs-home-testimonial-dots button:hover,
.grs-home-testimonial-dots button:focus-visible {
  background: #ffffff !important;
}

.grs-home-final-cta {
  padding: 46px 0 56px;
  background: #f6fbff;
}

.grs-home-final-cta__inner {
  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.grs-home-final-cta__copy h2 {
  margin: 0;
  color: #35124f;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
}

.grs-home-final-cta__copy p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: #4d5467;
  max-width: 840px;
}

.grs-home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grs-home-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.grs-home-final-cta__btn--primary {
  background: #35124f;
  color: #fff;
}

.grs-home-final-cta__btn--secondary {
  background: #ff6a36;
  color: #fff;
}

.grs-home-final-cta__btn--primary:hover,
.grs-home-final-cta__btn--primary:focus-visible,
.grs-home-final-cta__btn--secondary:hover,
.grs-home-final-cta__btn--secondary:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.grs-client-logos-band {
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.grs-client-logos-band__title {
  margin: 0 0 14px;
  color: #35124f;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.grs-client-logos-band__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.grs-client-logos-band__item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce5f0;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 10px;
}

.grs-client-logos-band__item img {
  display: block;
  max-width: 100%;
  width: auto;
  max-height: 42px;
  object-fit: contain;
}

.grs-client-logos-band--checkout {
  margin-top: 26px;
}

.grs-checkout-page .grs-client-logos-band,
.grs-sample-page .grs-client-logos-band,
.grs-download-sample-page .grs-client-logos-band {
  margin-bottom: 26px;
}

.grs-client-logos-band__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* --- General Inquiry Pages --- */
.grs-general-inquiry-page,
.grs-download-sample-page {
  padding: 20px 0 36px;
}

.grs-general-inquiry-hero,
.grs-download-sample-hero {
  background: linear-gradient(180deg, #3b1556 0%, #5a47a1 45%, #54b6de 100%);
  border-radius: 16px 16px 0 0;
  padding: 52px 18px 34px;
  text-align: center;
  color: #fff;
}

.grs-general-inquiry-hero h1,
.grs-download-sample-hero h1 {
  margin: 0;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.08;
  color: #fff;
}

.grs-general-inquiry-hero p,
.grs-download-sample-hero p {
  margin: 14px auto 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 18px;
  line-height: 1.5;
}

.grs-general-inquiry-tabs {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.grs-general-inquiry-tabs a {
  min-height: 54px;
  border: 1px solid #ccd7ea;
  background: #f5f8fe;
  border-radius: 10px;
  color: #35124f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
}

.grs-general-inquiry-tabs a:hover,
.grs-general-inquiry-tabs a:focus-visible,
.grs-general-inquiry-tabs a.is-active {
  background: #ffffff;
  border-color: #5f8dd8;
  color: #32124b;
}

.grs-general-inquiry-panel,
.grs-download-sample-form-wrap {
  background: #fff;
  border: 1px solid #d6deeb;
  border-radius: 14px;
  padding: 34px;
  margin-top: 8px;
}

.grs-general-inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
}

.grs-general-inquiry-panel__main {
  min-width: 0;
}

.grs-general-inquiry-panel__aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.grs-general-inquiry-intro {
  margin: 0 0 16px;
  color: #353b4a;
  font-size: 16px;
}

.grs-general-inquiry-note {
  margin: 12px 0 0;
  color: #626983;
  font-size: 13px;
}

.grs-general-contact-card {
  border: 1px solid #e1e7f2;
  border-radius: 12px;
  padding: 18px;
  background: #f8fbff;
}

.grs-general-contact-card + .grs-general-contact-card {
  margin-top: 0;
}

.grs-general-contact-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #35124f;
}

.grs-general-contact-card p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #3f465c;
}

.grs-general-contact-card a {
  color: #1857c8;
}

.grs-general-logo-card {
  border: 1px solid #d7e2f3;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.grs-general-logo-card h3 {
  margin: 0 0 10px;
  color: #35124f;
  font-size: 18px;
  line-height: 1.25;
}

.grs-general-enquiry-form .grs-form-grid p {
  margin-bottom: 12px;
}

.grs-general-enquiry-form .iti,
.grs-sample-form .iti {
  width: 100%;
}

.grs-turnstile-wrap {
  margin: 10px 0 16px;
}

@media (max-width: 1120px) {
  .grs-home-testimonial-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .grs-home-final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .grs-general-inquiry-panel {
    grid-template-columns: 1fr;
  }

  .grs-general-inquiry-panel__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grs-general-logo-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .grs-general-inquiry-page,
  .grs-download-sample-page {
    padding: 10px 0 24px;
  }

  .grs-general-inquiry-hero,
  .grs-download-sample-hero {
    border-radius: 12px 12px 0 0;
    padding: 34px 14px 24px;
  }

  .grs-general-inquiry-hero h1,
  .grs-download-sample-hero h1 {
    font-size: 30px;
  }

  .grs-general-inquiry-hero p,
  .grs-download-sample-hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .grs-general-inquiry-tabs {
    margin-top: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .grs-general-inquiry-tabs a {
    min-height: 52px;
    font-size: 14px;
    border-radius: 10px;
  }

  .grs-general-inquiry-panel,
  .grs-download-sample-form-wrap {
    border-radius: 12px;
    padding: 18px 14px;
  }

  .grs-general-contact-card h3 {
    font-size: 18px;
  }

  .grs-home-testimonial-quote {
    font-size: 18px;
  }

  .grs-home-final-cta {
    padding: 30px 0 36px;
  }

  .grs-home-testimonial-track {
    grid-auto-columns: 100%;
    gap: 12px;
  }

  .grs-home-testimonial-card {
    padding: 18px;
  }

  .grs-client-logos-band__title {
    font-size: 18px;
  }

  .grs-client-logos-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grs-general-inquiry-panel__aside {
    grid-template-columns: 1fr;
  }
}
