/* ═══════════════════════════════
   HARRISON ASSESSMENTS PAGE
═══════════════════════════════ */
.grc-harrison-page {
  --p: #1B6CA8;
  --a: #2FBCD3;
  --dark: #1a1a2e;
}

/* ── Reset Astra containers ── */
#main.site-main,
#primary,
.ast-article-single,
.entry-content,
.site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.gh {
  font-family: 'Poppins', sans-serif;
}

/* ══ HERO ══ */
.gh-hero {
  position: relative;
  background: var(--dark);
  padding: 140px 48px 90px;
  overflow: hidden;
}

.gh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(27,108,168,.4) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 90%, rgba(47,188,211,.15) 0%, transparent 50%);
  pointer-events: none;
}

.gh-hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}

.gh-hero__inner {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.gh-hero__eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--a); margin-bottom: 16px;
}

.gh-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.12; margin: 0 0 20px;
  letter-spacing: -.02em;
}

.gh-hero__title span {
  background: linear-gradient(90deg, #2FBCD3, #7ee8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gh-hero__desc {
  font-size: .97rem; font-weight: 300;
  color: rgba(255,255,255,.7); line-height: 1.8;
  margin: 0 0 32px;
}

.gh-hero__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--p); color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem; font-weight: 600;
  text-decoration: none;
  padding: 13px 30px; border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(27,108,168,.4);
  transition: background .25s, border-color .25s, transform .22s, box-shadow .25s;
}

.gh-hero__btn:hover {
  background: transparent;
  border-color: var(--a); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(47,188,211,.3);
}

.gh-hero__btn svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}

.gh-hero__btn:hover svg { transform: translateX(4px); }

/* right: logo + stat pills */
.gh-hero__right {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
}

.gh-hero__logo-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 24px 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

.gh-hero__logo-wrap img {
  max-width: 260px; width: 100%; height: auto; display: block;
}

.gh-hero__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; width: 100%;
}

.gh-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 16px;
  transition: background .25s, border-color .25s;
}

.gh-pill:hover {
  background: rgba(47,188,211,.1);
  border-color: rgba(47,188,211,.3);
}

.gh-pill__num {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 4px;
}

.gh-pill__num span { color: var(--a); }

.gh-pill__label {
  font-size: .65rem; font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.35;
}

.gh-hero__bar {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--p), var(--a));
}

/* ══ FEATURES GRID ══ */
.gh-features {
  background: #f4f7fb;
  padding: 96px 48px;
}

.gh-features__inner {
  max-width: 1180px; margin: 0 auto;
}

.gh-features__head {
  text-align: center; margin-bottom: 56px;
}

.gh-features__eyebrow {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--a); margin-bottom: 10px;
}

.gh-features__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--dark);
  margin: 0 0 12px; line-height: 1.2;
}

.gh-features__title em { font-style: normal; color: var(--p); }

.gh-features__sub {
  font-size: .9rem; font-weight: 300;
  color: #5a6478; max-width: 520px;
  margin: 0 auto; line-height: 1.75;
}

.gh-features__divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--p), var(--a));
  border-radius: 2px; margin: 18px auto 0;
}

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

.gh-card {
  background: #fff;
  border-radius: 16px; padding: 32px 28px;
  border: 1px solid #e4eaf3;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}

.gh-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p), var(--a));
  opacity: 0; transition: opacity .25s;
}

.gh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27,108,168,.11);
  border-color: #b8d4ec;
}

.gh-card:hover::before { opacity: 1; }

.gh-card__icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, var(--p), var(--a));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.gh-card__icon svg {
  width: 24px; height: 24px;
  stroke: #fff; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.gh-card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--dark); margin: 0 0 10px;
  line-height: 1.3;
}

.gh-card__desc {
  font-size: .85rem; font-weight: 300;
  color: #5a6478; line-height: 1.75; margin: 0;
}

/* ══ PARTNER BANNER ══ */
.gh-banner {
  background: var(--p);
  padding: 88px 48px;
  position: relative; overflow: hidden;
  text-align: center;
}

.gh-banner__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}

.gh-banner__circle-l {
  position: absolute; border-radius: 50%;
  width: 400px; height: 400px;
  background: #fff; opacity: .05;
  top: -120px; left: -120px; pointer-events: none;
}

.gh-banner__circle-r {
  position: absolute; border-radius: 50%;
  width: 300px; height: 300px;
  background: #fff; opacity: .05;
  bottom: -80px; right: -80px; pointer-events: none;
}

.gh-banner__inner {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
}

.gh-banner__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 100px; padding: 6px 18px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin-bottom: 22px;
}

.gh-banner__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin: 0 0 16px;
}

.gh-banner__title span { color: var(--a); }

.gh-banner__sub {
  font-size: .95rem; font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.75; margin: 0 0 36px;
}

.gh-banner__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--p);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  padding: 15px 36px; border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  transition: background .22s, color .22s, transform .2s, box-shadow .22s;
}

.gh-banner__btn:hover {
  background: var(--a); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

.gh-banner__btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}

.gh-banner__btn:hover svg { transform: translateX(3px); }

/* responsive */
@media (max-width: 960px) {
  .gh-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .gh-grid { grid-template-columns: repeat(2, 1fr); }
  .gh-hero { padding: 120px 24px 72px; }
  .gh-features { padding: 64px 24px; }
  .gh-banner { padding: 64px 24px; }
}

@media (max-width: 580px) {
  .gh-grid { grid-template-columns: 1fr; }
  .gh-hero__pills { grid-template-columns: 1fr 1fr; }
}
