/* =============================================================================
   SGP Theme — theme.css
   Custom CSS: global resets, component styles, mega-menu, animations
   ============================================================================= */

/* -----------------------------------------------------------------------------
   0. CSS Custom Properties (mirrors theme.json tokens for use in raw CSS)
   ----------------------------------------------------------------------------- */

:root {
  --sgp-bold-blue:   #02155B;
  --sgp-sky-blue:    #449EF8;
  --sgp-fresh-green: #1EE09E;
  --sgp-calm-gray:   #E6E6E6;
  --sgp-white:       #FFFFFF;
  --sgp-off-white:   #F7F8FC;
  --sgp-text-dark:   #0D1B4B;

  --sgp-font:        'DM Sans', -apple-system, sans-serif;

  --sgp-content-width: 740px;
  --sgp-wide-width:    1200px;
  --sgp-gap:           24px;

  --sgp-pad-mobile:  24px;
  --sgp-pad-desktop: 40px;

  --sgp-section-py-mobile:  6rem;
  --sgp-section-py-desktop: 8.75rem;

  /* Layered, colour-tinted shadows */
  --sgp-shadow-card:
    0 2px 4px rgba(2, 21, 91, 0.04),
    0 8px 24px rgba(2, 21, 91, 0.08),
    0 24px 48px rgba(2, 21, 91, 0.06);
  --sgp-shadow-card-hover:
    0 4px 8px rgba(2, 21, 91, 0.06),
    0 16px 40px rgba(2, 21, 91, 0.12),
    0 32px 64px rgba(2, 21, 91, 0.08);
  --sgp-shadow-nav:
    0 2px 8px rgba(2, 21, 91, 0.08),
    0 8px 32px rgba(2, 21, 91, 0.06);
  --sgp-shadow-dropdown:
    0 8px 32px rgba(2, 21, 91, 0.12),
    0 32px 64px rgba(2, 21, 91, 0.08);
}

/* -----------------------------------------------------------------------------
   1. Global resets and base
   ----------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sgp-font);
  color: var(--sgp-text-dark);
  background-color: var(--sgp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default margins from block theme */
.wp-site-blocks {
  padding: 0;
}

/* -----------------------------------------------------------------------------
   2. Typography utilities
   ----------------------------------------------------------------------------- */

.sgp-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sgp-sky-blue);
  display: block;
  margin-bottom: 0.75rem;
}

/* -----------------------------------------------------------------------------
   3. Layout utilities
   ----------------------------------------------------------------------------- */

.sgp-container {
  width: 100%;
  max-width: var(--sgp-wide-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sgp-pad-mobile);
  padding-right: var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-container {
    padding-left: var(--sgp-pad-desktop);
    padding-right: var(--sgp-pad-desktop);
  }
}

.sgp-section {
  padding-top: var(--sgp-section-py-mobile);
  padding-bottom: var(--sgp-section-py-mobile);
}

@media (min-width: 960px) {
  .sgp-section {
    padding-top: var(--sgp-section-py-desktop);
    padding-bottom: var(--sgp-section-py-desktop);
  }
}

/* -----------------------------------------------------------------------------
   4. Button styles
   ----------------------------------------------------------------------------- */

.sgp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sgp-font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Sweep pseudo-element — shared by all variants */
.sgp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.sgp-btn:hover::before {
  width: 100%;
}

/* Primary — navy bg, sweeps to Sky Blue */
.sgp-btn--primary {
  background-color: var(--sgp-bold-blue);
  color: var(--sgp-white);
  border-color: var(--sgp-bold-blue);
}
.sgp-btn--primary::before {
  background-color: var(--sgp-sky-blue);
}
.sgp-btn--primary:hover {
  border-color: var(--sgp-sky-blue);
  color: var(--sgp-white);
  box-shadow: 0 4px 16px rgba(68, 158, 248, 0.3);
}
.sgp-btn--primary:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}
.sgp-btn--primary:active {
  border-color: #3580d4;
}
.sgp-btn--primary:active::before {
  background-color: #3580d4;
}

/* Secondary — outlined, sweeps to Navy */
.sgp-btn--secondary {
  background-color: transparent;
  color: var(--sgp-bold-blue);
  border-color: var(--sgp-bold-blue);
}
.sgp-btn--secondary::before {
  background-color: var(--sgp-bold-blue);
}
.sgp-btn--secondary:hover {
  color: var(--sgp-white);
  box-shadow: 0 4px 16px rgba(2, 21, 91, 0.2);
}
.sgp-btn--secondary:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}
.sgp-btn--secondary:active {
  border-color: #010f43;
  color: var(--sgp-white);
}
.sgp-btn--secondary:active::before {
  background-color: #010f43;
}

/* Accent — green bg, sweeps to Navy */
.sgp-btn--accent {
  background-color: var(--sgp-fresh-green);
  color: var(--sgp-bold-blue);
  border-color: var(--sgp-fresh-green);
}
.sgp-btn--accent::before {
  background-color: var(--sgp-bold-blue);
}
.sgp-btn--accent:hover {
  border-color: var(--sgp-bold-blue);
  color: var(--sgp-white);
  box-shadow: 0 4px 16px rgba(2, 21, 91, 0.25);
}
.sgp-btn--accent:focus-visible {
  outline: 3px solid var(--sgp-bold-blue);
  outline-offset: 3px;
}
.sgp-btn--accent:active {
  border-color: #010f43;
}
.sgp-btn--accent:active::before {
  background-color: #010f43;
}

/* On dark backgrounds — transparent, sweeps to White */
.sgp-btn--secondary-light {
  background-color: transparent;
  color: var(--sgp-white);
  border-color: var(--sgp-white);
}
.sgp-btn--secondary-light::before {
  background-color: var(--sgp-white);
}
.sgp-btn--secondary-light:hover {
  color: var(--sgp-bold-blue);
}
.sgp-btn--secondary-light:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}
.sgp-btn--secondary-light:active {
  color: var(--sgp-bold-blue);
}
.sgp-btn--secondary-light:active::before {
  background-color: var(--sgp-off-white);
}

/* -----------------------------------------------------------------------------
   5. Header / Navigation
   ----------------------------------------------------------------------------- */

/* Make the WP template-part wrapper fixed */
header.wp-block-template-part {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* When WP admin bar is showing, push nav below it */
.admin-bar header.wp-block-template-part {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar header.wp-block-template-part {
    top: 46px;
  }
}

/* Push all page content below the fixed header */
.wp-site-blocks {
  padding-top: 73px;
}

.admin-bar .wp-site-blocks {
  padding-top: 73px;
}

.sgp-header {
  background-color: var(--sgp-white);
  border-bottom: 1px solid var(--sgp-calm-gray);
  box-shadow: var(--sgp-shadow-nav);
}

.sgp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  padding: 0 var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-header__inner {
    padding: 0 var(--sgp-pad-desktop);
  }
}

.sgp-header__logo img {
  height: 56px;
  width: auto;
}

.sgp-header__logo:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Desktop nav */
.sgp-nav {
  display: none;
}

@media (min-width: 960px) {
  .sgp-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

.sgp-nav__item {
  position: relative;
}

.sgp-nav__link {
  font-family: var(--sgp-font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(2, 21, 91, 0.7);
  text-decoration: none;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  transition: color 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

/* Underline sweep on hover — uses ::before to avoid conflict with dropdown chevron ::after */
.sgp-nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
  border-radius: 1px;
  transition: width 0.25s ease;
}

.sgp-nav__link:hover::before,
.sgp-nav__link:focus-visible::before,
.sgp-nav__item:hover .sgp-nav__link::before {
  width: 100%;
}

/* Don't show underline on the audit pill button */
.sgp-nav__link--audit::before {
  display: none;
}

.sgp-nav__link:hover,
.sgp-nav__link:focus-visible {
  color: var(--sgp-bold-blue);
}

.sgp-nav__link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* "What We Do" trigger arrow */
.sgp-nav__link--has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}

.sgp-nav__item--open .sgp-nav__link--has-dropdown::after,
.sgp-nav__item:hover .sgp-nav__link--has-dropdown::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* Audit link — pill badge with gradient sweep hover */
.sgp-nav__link--audit {
  color: var(--sgp-bold-blue);
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border: 1.5px solid var(--sgp-fresh-green);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* Gradient sweep pseudo-element */
.sgp-nav__link--audit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
  border-radius: 100px;
  z-index: -1;
  transition: width 0.3s ease;
}

.sgp-nav__link--audit:hover,
.sgp-nav__link--audit:focus-visible {
  color: var(--sgp-white);
  border-color: var(--sgp-sky-blue);
}

.sgp-nav__link--audit:hover::after,
.sgp-nav__link--audit:focus-visible::after {
  width: 100%;
}

/* CTA button in nav */
.sgp-header__cta {
  margin-left: 1rem;
}

/* -----------------------------------------------------------------------------
   6. Mega-menu dropdown — dark, image-backed, immersive
   ----------------------------------------------------------------------------- */

.sgp-mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(960px, 92vw);
  background: var(--sgp-white);
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(2, 21, 91, 0.12), 0 4px 16px rgba(2, 21, 91, 0.06);
  padding: 1.5rem;
  z-index: 200;
  border: 1px solid rgba(2, 21, 91, 0.08);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Gradient accent bar across top */
.sgp-mega-menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green), var(--sgp-bold-blue));
}

/* Invisible bridge */
.sgp-mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* Visible state */
.sgp-nav__item:hover .sgp-mega-menu,
.sgp-nav__item--open .sgp-mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.sgp-mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Image-top cards ── */

.sgp-mega-menu__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sgp-mega-menu__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2, 21, 91, 0.12);
}

.sgp-mega-menu__card:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 2px;
}

/* Card image — sits on top */
.sgp-mega-menu__card-bg {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-mega-menu__card:hover .sgp-mega-menu__card-bg {
  transform: scale(1.04);
}

/* Overlay hidden — not used in this layout */
.sgp-mega-menu__card-overlay {
  display: none;
}

/* Card text — sits below image */
.sgp-mega-menu__card-content {
  padding: 1rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sgp-mega-menu__card-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.sgp-mega-menu__card-desc {
  font-size: 0.8125rem;
  color: #6b7a9e;
  line-height: 1.4;
}

/* ── Sub-links on dark background ── */

.sgp-mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sgp-mega-menu__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a5568;
  text-decoration: none;
  padding: 0.375rem 0.625rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sgp-mega-menu__link::before {
  content: '→';
  font-size: 0.8125rem;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.sgp-mega-menu__link:hover {
  color: var(--sgp-bold-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 21, 91, 0.08);
  background: var(--sgp-white);
}

.sgp-mega-menu__link:hover::before {
  transform: translateX(3px);
}

.sgp-mega-menu__link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 0;
}

/* ── Pillar-specific overlays and link arrows ──────────────────────────────── */

/* Clarity — Sky Blue */
.sgp-mega-menu__col[data-pillar="clarity"] .sgp-mega-menu__card:hover .sgp-mega-menu__card-heading {
  color: var(--sgp-sky-blue);
}
.sgp-mega-menu__col[data-pillar="clarity"] .sgp-mega-menu__link::before {
  color: var(--sgp-sky-blue);
}
.sgp-mega-menu__col[data-pillar="clarity"] .sgp-mega-menu__link:hover {
  color: var(--sgp-sky-blue);
}

/* Leading — Fresh Green */
.sgp-mega-menu__col[data-pillar="leading"] .sgp-mega-menu__card:hover .sgp-mega-menu__card-heading {
  color: #12a870;
}
.sgp-mega-menu__col[data-pillar="leading"] .sgp-mega-menu__link::before {
  color: var(--sgp-fresh-green);
}
.sgp-mega-menu__col[data-pillar="leading"] .sgp-mega-menu__link:hover {
  color: #12a870;
}

/* Resilient — Navy */
.sgp-mega-menu__col[data-pillar="resilient"] .sgp-mega-menu__card:hover .sgp-mega-menu__card-heading {
  color: var(--sgp-bold-blue);
}
.sgp-mega-menu__col[data-pillar="resilient"] .sgp-mega-menu__link::before {
  color: var(--sgp-bold-blue);
}
.sgp-mega-menu__col[data-pillar="resilient"] .sgp-mega-menu__link:hover {
  color: var(--sgp-bold-blue);
}

/* -----------------------------------------------------------------------------
   6b. About dropdown
   ----------------------------------------------------------------------------- */

.sgp-nav__item--has-about-dropdown {
  position: relative;
}

.sgp-about-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 560px;
  background: var(--sgp-white);
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(2, 21, 91, 0.12), 0 4px 16px rgba(2, 21, 91, 0.06);
  border: 1px solid rgba(2, 21, 91, 0.08);
  padding: 1.75rem;
  z-index: 200;
  display: flex;
  gap: 1.75rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

/* Gradient accent bar */
.sgp-about-dropdown::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
}

/* Invisible bridge */
.sgp-about-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* Visible state */
.sgp-nav__item--has-about-dropdown:hover .sgp-about-dropdown,
.sgp-nav__item--has-about-dropdown.sgp-nav__item--open .sgp-about-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Left column — blurb + CTA */
.sgp-about-dropdown__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.sgp-about-dropdown__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 12px rgba(2, 21, 91, 0.1);
}

.sgp-about-dropdown__blurb {
  font-size: 0.875rem;
  color: #6b7a9e;
  line-height: 1.6;
  margin: 0;
}

.sgp-about-dropdown__cta {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

/* Right column — two image cards */
.sgp-about-dropdown__right {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.sgp-about-dropdown__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sgp-calm-gray);
  width: 150px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sgp-about-dropdown__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2, 21, 91, 0.12);
}

.sgp-about-dropdown__card-image {
  overflow: hidden;
  height: 90px;
}

.sgp-about-dropdown__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-about-dropdown__card:hover .sgp-about-dropdown__card-image img {
  transform: scale(1.04);
}

.sgp-about-dropdown__card-content {
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sgp-about-dropdown__card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
}

.sgp-about-dropdown__card-desc {
  font-size: 0.75rem;
  color: #6b7a9e;
  line-height: 1.4;
}

/* -----------------------------------------------------------------------------
   6c. Our Thinking dropdown
   ----------------------------------------------------------------------------- */

.sgp-nav__item--has-thinking-dropdown {
  position: relative;
}

.sgp-thinking-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 560px;
  background: var(--sgp-white);
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(2, 21, 91, 0.12), 0 4px 16px rgba(2, 21, 91, 0.06);
  border: 1px solid rgba(2, 21, 91, 0.08);
  padding: 1.75rem;
  z-index: 200;
  display: flex;
  gap: 1.75rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

/* Gradient accent bar */
.sgp-thinking-dropdown::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
}

/* Invisible bridge */
.sgp-thinking-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* Visible state */
.sgp-nav__item--has-thinking-dropdown:hover .sgp-thinking-dropdown,
.sgp-nav__item--has-thinking-dropdown.sgp-nav__item--open .sgp-thinking-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Left column */
.sgp-thinking-dropdown__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.sgp-thinking-dropdown__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
}

.sgp-thinking-dropdown__blurb {
  font-size: 0.875rem;
  color: #6b7a9e;
  line-height: 1.6;
  margin: 0;
}

.sgp-thinking-dropdown__cta {
  align-self: flex-start;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

/* Right column */
.sgp-thinking-dropdown__right {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-thinking-dropdown__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sgp-fresh-green);
}

/* Featured card — matches mega-menu card style */
.sgp-thinking-dropdown__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sgp-calm-gray);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sgp-thinking-dropdown__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2, 21, 91, 0.12);
}

.sgp-thinking-dropdown__card-image {
  overflow: hidden;
  height: 120px;
}

.sgp-thinking-dropdown__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-thinking-dropdown__card:hover .sgp-thinking-dropdown__card-image img {
  transform: scale(1.04);
}

.sgp-thinking-dropdown__card-content {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.sgp-thinking-dropdown__card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.25;
}

.sgp-thinking-dropdown__card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
}

/* -----------------------------------------------------------------------------
   7. Mobile hamburger menu
   ----------------------------------------------------------------------------- */

.sgp-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

@media (min-width: 960px) {
  .sgp-hamburger {
    display: none;
  }
}

.sgp-hamburger:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}

.sgp-hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--sgp-bold-blue);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sgp-hamburger[aria-expanded="true"] .sgp-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sgp-hamburger[aria-expanded="true"] .sgp-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.sgp-hamburger[aria-expanded="true"] .sgp-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.sgp-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--sgp-bold-blue);
  overflow-y: auto;
  padding: 88px var(--sgp-pad-mobile) var(--sgp-pad-mobile);
  flex-direction: column;
}

.sgp-mobile-menu--open {
  display: flex;
}

.sgp-mobile-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sgp-mobile-menu__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sgp-white);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sgp-mobile-menu__link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}

.sgp-mobile-menu__link--audit {
  color: var(--sgp-fresh-green);
}

/* Mobile accordion for sub-services */
.sgp-mobile-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sgp-white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sgp-font);
  text-align: left;
}

.sgp-mobile-accordion__trigger:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}

.sgp-mobile-accordion__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.sgp-mobile-accordion__trigger[aria-expanded="true"] .sgp-mobile-accordion__icon {
  transform: rotate(180deg);
}

.sgp-mobile-accordion__panel {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
  list-style: none;
  margin: 0;
}

.sgp-mobile-accordion__panel--open {
  display: flex;
  flex-direction: column;
}

.sgp-mobile-accordion__sub-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.12s ease;
}

.sgp-mobile-accordion__sub-link::before {
  content: '→';
  color: var(--sgp-sky-blue);
  font-size: 0.75rem;
}

.sgp-mobile-accordion__sub-link:hover,
.sgp-mobile-accordion__sub-link:focus-visible {
  color: var(--sgp-white);
}

.sgp-mobile-accordion__sub-link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
}

.sgp-mobile-menu__cta {
  margin-top: 2rem;
  align-self: flex-start;
}

/* -----------------------------------------------------------------------------
   8. Hero section
   ----------------------------------------------------------------------------- */

.sgp-hero {
  position: relative;
  background-color: var(--sgp-bold-blue);
  overflow: hidden;
  padding: 6rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-hero {
    padding: 8.75rem var(--sgp-pad-desktop);
  }
}

/* Subtle radial gradient depth — Sky Blue + Fresh Green at low opacity */
.sgp-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.12) 0%, transparent 65%);
  top: -300px;
  right: -200px;
  pointer-events: none;
}

.sgp-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 224, 158, 0.08) 0%, transparent 65%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.sgp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-hero__content {
  max-width: 700px;
}

.sgp-hero__h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sgp-white);
  margin-bottom: 1.5rem;
}

.sgp-hero__body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.sgp-hero__body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-hero__body li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.sgp-hero__body li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sgp-fresh-green);
  flex-shrink: 0;
  margin-top: 0.45em;
}

.sgp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Service page hero variant — lighter */
.sgp-hero--service {
  background-color: var(--sgp-off-white);
}

.sgp-hero--service::before,
.sgp-hero--service::after {
  opacity: 0.5;
}

.sgp-hero--service .sgp-hero__h1 {
  color: var(--sgp-bold-blue);
}

.sgp-hero--service .sgp-hero__body {
  color: var(--sgp-text-dark);
}

/* -----------------------------------------------------------------------------
   9. Service cards (homepage)
   ----------------------------------------------------------------------------- */

.sgp-services-grid {
  padding: var(--sgp-section-py-mobile) var(--sgp-pad-mobile);
  background-color: var(--sgp-white);
}

@media (min-width: 960px) {
  .sgp-services-grid {
    padding: var(--sgp-section-py-desktop) var(--sgp-pad-desktop);
  }
}

.sgp-services-grid__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-services-grid__header {
  text-align: center;
  margin-bottom: 3rem;
}

.sgp-services-grid__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sgp-gap);
}

@media (min-width: 640px) {
  .sgp-services-grid__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sgp-services-grid__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sgp-service-card {
  background: var(--sgp-white);
  border: 1px solid var(--sgp-calm-gray);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--sgp-shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sgp-service-card:hover {
  box-shadow: var(--sgp-shadow-card-hover);
  transform: translateY(-2px);
}

.sgp-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(68, 158, 248, 0.12), rgba(30, 224, 158, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sgp-bold-blue);
  flex-shrink: 0;
}

.sgp-service-card__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.3;
}

.sgp-service-card__body {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
  flex: 1;
}

.sgp-service-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.15s ease, color 0.15s ease;
}

.sgp-service-card__link:hover,
.sgp-service-card__link:focus-visible {
  color: var(--sgp-bold-blue);
  gap: 0.625rem;
}

.sgp-service-card__link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* -----------------------------------------------------------------------------
   10. About strip (homepage)
   ----------------------------------------------------------------------------- */

.sgp-about-strip {
  background-color: var(--sgp-bold-blue);
  padding: var(--sgp-section-py-mobile) var(--sgp-pad-mobile);
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-about-strip {
    padding: var(--sgp-section-py-desktop) var(--sgp-pad-desktop);
  }
}

.sgp-about-strip::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.1) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.sgp-about-strip__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .sgp-about-strip__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.sgp-about-strip__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 32px 64px rgba(0, 0, 0, 0.15);
}

.sgp-about-strip__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.sgp-about-strip__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sgp-about-strip__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.2;
}

.sgp-about-strip__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.sgp-about-strip__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sgp-fresh-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.15s ease, color 0.15s ease;
}

.sgp-about-strip__link:hover,
.sgp-about-strip__link:focus-visible {
  color: #16c98a;
  gap: 0.625rem;
}

.sgp-about-strip__link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* -----------------------------------------------------------------------------
   11. Testimonials
   ----------------------------------------------------------------------------- */

.sgp-testimonials {
  padding: var(--sgp-section-py-mobile) var(--sgp-pad-mobile);
  background-color: var(--sgp-off-white);
}

@media (min-width: 960px) {
  .sgp-testimonials {
    padding: var(--sgp-section-py-desktop) var(--sgp-pad-desktop);
  }
}

.sgp-testimonials__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.sgp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sgp-gap);
}

@media (min-width: 640px) {
  .sgp-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sgp-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sgp-testimonial-card {
  background: var(--sgp-white);
  border: 1px solid var(--sgp-calm-gray);
  border-radius: 12px;
  padding: 0.875rem 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--sgp-shadow-card);
}


.sgp-testimonial-card__body {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  font-style: italic;
  flex: 1;
}

.sgp-testimonial-card__author {
  border-top: 1px solid var(--sgp-calm-gray);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sgp-testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
}

.sgp-testimonial-card__role {
  font-size: 0.8125rem;
  color: #6b7a9e;
}

/* -----------------------------------------------------------------------------
   12. CTA Banner
   ----------------------------------------------------------------------------- */

.sgp-cta-banner {
  padding: var(--sgp-section-py-mobile) var(--sgp-pad-mobile);
  background-color: var(--sgp-bold-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-cta-banner {
    padding: 6rem var(--sgp-pad-desktop);
  }
}

.sgp-cta-banner::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.1) 0%, transparent 65%);
  top: -300px;
  right: -200px;
  pointer-events: none;
}

.sgp-cta-banner::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 224, 158, 0.07) 0%, transparent 65%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.sgp-cta-banner__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sgp-cta-banner__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.2;
}

.sgp-cta-banner__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* -----------------------------------------------------------------------------
   13. Service page sections
   ----------------------------------------------------------------------------- */

.sgp-service-section {
  padding: var(--sgp-section-py-mobile) var(--sgp-pad-mobile);
  border-bottom: 1px solid var(--sgp-calm-gray);
}

@media (min-width: 960px) {
  .sgp-service-section {
    padding: var(--sgp-section-py-desktop) var(--sgp-pad-desktop);
  }
}

.sgp-service-section:nth-child(even) {
  background-color: var(--sgp-off-white);
}

.sgp-service-section__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-service-section__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sgp-service-section__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--sgp-text-dark);
  max-width: 720px;
}

.sgp-outcomes {
  margin-top: 2rem;
}

.sgp-outcomes__heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}

.sgp-outcomes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-outcomes__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--sgp-text-dark);
  line-height: 1.5;
}

.sgp-outcomes__item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sgp-fresh-green);
  flex-shrink: 0;
  margin-top: 0.4em;
}

/* Questions section */
.sgp-questions {
  background-color: var(--sgp-off-white);
  padding: var(--sgp-section-py-mobile) var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-questions {
    padding: var(--sgp-section-py-desktop) var(--sgp-pad-desktop);
  }
}

.sgp-questions__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-questions__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sgp-questions__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--sgp-white);
  border: 1px solid var(--sgp-calm-gray);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--sgp-text-dark);
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(2, 21, 91, 0.04);
}

.sgp-questions__item::before {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(68, 158, 248, 0.12);
  color: var(--sgp-sky-blue);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   14. Footer
   ----------------------------------------------------------------------------- */

.sgp-footer {
  background-color: var(--sgp-bold-blue);
  padding: 4rem var(--sgp-pad-mobile) 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-footer {
    padding: 5rem var(--sgp-pad-desktop) 3.5rem;
  }
}

.sgp-footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.08) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.sgp-footer__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sgp-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .sgp-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.sgp-footer__nav-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.sgp-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-footer__nav-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.12s ease;
}

.sgp-footer__nav-link:hover,
.sgp-footer__nav-link:focus-visible {
  color: var(--sgp-white);
}

.sgp-footer__nav-link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

.sgp-footer__contact-email {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.12s ease;
}

.sgp-footer__contact-email:hover,
.sgp-footer__contact-email:focus-visible {
  color: var(--sgp-white);
}

.sgp-footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.sgp-footer__fp-badge {
  width: 180px;
  height: auto;
  display: block;
  opacity: 0.85;
}

.sgp-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* -----------------------------------------------------------------------------
   15. Placeholder blocks
   ----------------------------------------------------------------------------- */

.sgp-placeholder {
  border: 2px dashed var(--sgp-calm-gray);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--sgp-off-white);
  color: #6b7a9e;
  font-size: 0.9375rem;
  font-style: italic;
}

/* -----------------------------------------------------------------------------
   16. Homepage sections
   ----------------------------------------------------------------------------- */

/* ── Home client logo strip ─────────────────────────────────────────────────── */

.sgp-home-logos {
  background: var(--sgp-white);
  padding: 3rem 0;
}

.sgp-home-logos .sgp-about-clients__marquee-wrap {
  margin-top: 0;
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */

/* ── Homepage banner hero ───────────────────────────────────────────────────── */

.sgp-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-home-hero {
    min-height: 520px;
    padding: 6rem var(--sgp-pad-desktop);
  }
}

.sgp-home-hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sgp-home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 21, 91, 0.88) 0%, rgba(2, 21, 91, 0.65) 45%, rgba(2, 21, 91, 0.2) 100%);
}

@media (max-width: 899px) {
  .sgp-home-hero__overlay {
    background: rgba(2, 21, 91, 0.78);
  }
}

.sgp-home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  width: 100%;
}

.sgp-home-hero .sgp-eyebrow {
  color: var(--sgp-fresh-green);
}

.sgp-home-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sgp-white);
  margin: 0.75rem 0 1.75rem;
  max-width: 620px;
}

.sgp-home-hero__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.sgp-home-hero__body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.sgp-home-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-home-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.sgp-home-hero__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sgp-fresh-green);
  flex-shrink: 0;
  margin-top: 0.42em;
}

.sgp-home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Values strip (Practical / Purpose-led / Sustainable) ──────────────────── */

.sgp-home-values {
  background: var(--sgp-white);
  padding: 0 var(--sgp-pad-mobile);
  border-bottom: 1px solid var(--sgp-calm-gray);
}

@media (min-width: 960px) {
  .sgp-home-values {
    padding: 0 var(--sgp-pad-desktop);
  }
}

.sgp-home-values__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 640px) {
  .sgp-home-values__inner {
    flex-direction: row;
  }
}

.sgp-home-values__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--sgp-calm-gray);
}

@media (max-width: 639px) {
  .sgp-home-values__card {
    border-left: none;
    border-bottom: 1px solid var(--sgp-calm-gray);
    padding: 1.25rem 1rem;
  }
  .sgp-home-values__card:last-child {
    border-bottom: none;
  }
}

.sgp-home-values__card--sky {
  border-left-color: var(--sgp-sky-blue);
}

.sgp-home-values__card--green {
  border-left-color: var(--sgp-fresh-green);
}

.sgp-home-values__card--navy {
  border-left-color: var(--sgp-bold-blue);
}

.sgp-home-values__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
}

.sgp-home-values__desc {
  font-size: 0.875rem;
  color: #6b7a9e;
  line-height: 1.4;
}

/* ── Services overview ───────────────────────────────────────────────────────── */

.sgp-home-services {
  background-color: var(--sgp-white);
  padding: 4rem var(--sgp-pad-mobile) 6rem;
}

@media (min-width: 960px) {
  .sgp-home-services {
    padding: 5rem var(--sgp-pad-desktop) 8.75rem;
  }
}

.sgp-home-services__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-home-services__header {
  margin-bottom: 3.5rem;
}

.sgp-home-services__heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
  margin: 0.5rem 0 0;
}

.sgp-home-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sgp-gap);
}

@media (min-width: 640px) {
  .sgp-home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sgp-home-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Service cards — image top, content below ──────────────────────────────── */

.sgp-home-service-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sgp-calm-gray);
  background: var(--sgp-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sgp-home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(2, 21, 91, 0.12);
}

.sgp-home-service-card:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 2px;
}

/* Image section — top two-thirds */
.sgp-home-service-card__image {
  overflow: hidden;
  height: 220px;
}

.sgp-home-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-home-service-card:hover .sgp-home-service-card__image img {
  transform: scale(1.04);
}

/* Content section — bottom third */
.sgp-home-service-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.sgp-home-service-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
  margin: 0;
  transition: color 0.2s ease;
}

.sgp-home-service-card__text {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.sgp-home-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.sgp-home-service-card:hover .sgp-home-service-card__link {
  gap: 0.625rem;
}

/* Pillar heading hover colours */
.sgp-home-service-card[data-pillar="clarity"]:hover .sgp-home-service-card__heading {
  color: var(--sgp-sky-blue);
}
.sgp-home-service-card[data-pillar="clarity"] .sgp-home-service-card__link {
  color: var(--sgp-sky-blue);
}

.sgp-home-service-card[data-pillar="leading"]:hover .sgp-home-service-card__heading {
  color: #12a870;
}
.sgp-home-service-card[data-pillar="leading"] .sgp-home-service-card__link {
  color: #12a870;
}

.sgp-home-service-card[data-pillar="resilient"]:hover .sgp-home-service-card__heading {
  color: var(--sgp-bold-blue);
}
.sgp-home-service-card[data-pillar="resilient"] .sgp-home-service-card__link {
  color: var(--sgp-bold-blue);
}

/* ── About strip ─────────────────────────────────────────────────────────────── */

.sgp-home-about {
  position: relative;
  background-color: var(--sgp-bold-blue);
  background-image: url('/wp-content/themes/sgp-theme/assets/images/headshots/paul-headshot-navy.jpg');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 6rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-home-about {
    padding: 8rem var(--sgp-pad-desktop);
    min-height: 720px;
  }
}

.sgp-home-about__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-home-about__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 520px;
}

.sgp-home-about__heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.2;
  margin: 0;
}

.sgp-home-about__body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0;
}

.sgp-home-about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sgp-fresh-green);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.15s ease, color 0.15s ease;
}

.sgp-home-about__link:hover,
.sgp-home-about__link:focus-visible {
  color: #16c98a;
  gap: 0.625rem;
}

.sgp-home-about__link:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Home testimonials — now uses .sgp-sp-testimonials (Fresh Green carousel) ─ */

/* ── CTA banner ──────────────────────────────────────────────────────────────── */

.sgp-home-cta {
  position: relative;
  background-color: var(--sgp-white);
  overflow: hidden;
  padding: 6rem var(--sgp-pad-mobile);
  text-align: center;
}

@media (min-width: 960px) {
  .sgp-home-cta {
    padding: 8rem var(--sgp-pad-desktop);
  }
}

.sgp-home-cta__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sgp-home-cta__bg-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.06) 0%, transparent 65%);
  top: -250px;
  right: -150px;
}

.sgp-home-cta__bg-orb--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30, 224, 158, 0.06) 0%, transparent 65%);
  bottom: -200px;
  left: -100px;
}

.sgp-home-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sgp-home-cta__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.sgp-home-cta__body {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* -----------------------------------------------------------------------------
   17. Service pages (shared across all three service pages)
   ----------------------------------------------------------------------------- */

/* ── Service page hero ───────────────────────────────────────────────────────── */

/* ── Full-width banner hero ─────────────────────────────────────────────────── */

.sgp-sp-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-sp-hero {
    min-height: 500px;
    padding: 6rem var(--sgp-pad-desktop);
  }
}

/* Background image — fills entire section */
.sgp-sp-hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay — dark left, transparent right */
.sgp-sp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 21, 91, 0.88) 0%, rgba(2, 21, 91, 0.65) 45%, rgba(2, 21, 91, 0.2) 100%);
}

@media (max-width: 899px) {
  .sgp-sp-hero__overlay {
    background: rgba(2, 21, 91, 0.78);
  }
}

.sgp-sp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  width: 100%;
}

.sgp-sp-hero__heading {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--sgp-white);
  margin: 0.625rem 0 1rem;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.sgp-sp-hero__standfirst {
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  border-left: 3px solid var(--sgp-fresh-green);
  padding-left: 1.25rem;
  max-width: 540px;
}

.sgp-sp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Eyebrow on banner */
.sgp-sp-hero .sgp-eyebrow {
  color: var(--sgp-fresh-green);
}

/* ── Intro strip (body copy moved from hero) ──────────────────────────────── */

.sgp-sp-intro {
  background: var(--sgp-white);
  padding: 2.5rem var(--sgp-pad-mobile) 1rem;
}

@media (min-width: 960px) {
  .sgp-sp-intro {
    padding: 3rem var(--sgp-pad-desktop) 1rem;
  }
}

.sgp-sp-intro__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .sgp-sp-intro__inner {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}

.sgp-sp-intro__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #3a3f5c;
  margin: 0 0 1rem;
}

.sgp-sp-intro__text p:last-child {
  margin-bottom: 0;
}

.sgp-sp-intro__highlights p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #3a3f5c;
  margin: 0 0 1rem;
}

.sgp-sp-intro__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sgp-sp-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #3a3f5c;
}

.sgp-sp-intro__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sgp-fresh-green);
  flex-shrink: 0;
  margin-top: 0.42em;
}

/* ── Questions section ───────────────────────────────────────────────────────── */

.sgp-sp-questions {
  background-color: var(--sgp-white);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-sp-questions {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-sp-questions__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-sp-questions__header {
  margin-bottom: 2.5rem;
}

.sgp-sp-questions__heading {
  font-size: clamp(2rem, 3vw, 2.625rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.15;
  margin: 0.5rem 0 0;
  letter-spacing: -0.02em;
}

.sgp-sp-questions__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sgp-sp-questions__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sgp-sp-questions__item {
  background: var(--sgp-fresh-green);
  border: none;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--sgp-bold-blue);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(30, 224, 158, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sgp-sp-questions__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30, 224, 158, 0.3);
}

.sgp-sp-questions__item::before {
  display: none;
}

/* ── Sub-service sections ────────────────────────────────────────────────────── */

.sgp-sp-section {
  padding: 6rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-sp-section {
    padding: 8rem var(--sgp-pad-desktop);
  }
}

.sgp-sp-section--white    { background-color: var(--sgp-white); }
.sgp-sp-section--offwhite { background-color: var(--sgp-off-white); }

.sgp-sp-section__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

/* Split: text left, outcomes right */
.sgp-sp-section__inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .sgp-sp-section__inner--split {
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: start;
  }
}

.sgp-sp-section__header {
  margin-bottom: 2.5rem;
}

.sgp-sp-section__intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--sgp-text-dark);
  margin: 1rem 0 0;
  max-width: 660px;
}

.sgp-sp-section__heading {
  font-size: clamp(1.875rem, 3vw, 2.375rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.sgp-sp-section__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--sgp-text-dark);
  margin: 0 0 1rem;
}

.sgp-sp-section__text p:last-child {
  margin-bottom: 0;
}

/* Bulleted list inside section text */
.sgp-sp-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sgp-sp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sgp-text-dark);
}

.sgp-sp-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--sgp-fresh-green);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* "You get" / outcomes box */
.sgp-sp-outcomes {
  background: var(--sgp-white);
  border: 1px solid var(--sgp-calm-gray);
  border-top: 3px solid var(--sgp-fresh-green);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: var(--sgp-shadow-card);
  position: sticky;
  top: 100px;
}

/* On offwhite sections the card should be white — already set above.
   On white sections add a very light background tint instead */
.sgp-sp-section--white .sgp-sp-outcomes {
  background: var(--sgp-off-white);
}

.sgp-sp-outcomes__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sgp-sky-blue);
  margin: 0 0 1rem;
}

.sgp-sp-outcomes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sgp-sp-outcomes__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--sgp-text-dark);
  font-weight: 500;
}

.sgp-sp-outcomes__item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sgp-fresh-green);
  flex-shrink: 0;
  margin-top: 0.38em;
}

/* ── SGA component cards (2×2 grid overview) ─────────────────────────────────── */

.sgp-sp-components {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sgp-gap);
}

@media (min-width: 640px) {
  .sgp-sp-components {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sgp-sp-component {
  background: var(--sgp-off-white);
  border: 1px solid var(--sgp-calm-gray);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--sgp-shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.15s ease;
}

.sgp-sp-component:hover,
.sgp-sp-component:focus-visible {
  box-shadow: var(--sgp-shadow-card-hover);
  transform: translateY(-2px);
  border-color: rgba(68, 158, 248, 0.35);
}

.sgp-sp-component:focus-visible {
  outline: 3px solid var(--sgp-sky-blue);
  outline-offset: 2px;
}

.sgp-sp-component__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(68, 158, 248, 0.12), rgba(30, 224, 158, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sgp-bold-blue);
}

.sgp-sp-component__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.3;
  margin: 0;
}

.sgp-sp-component__desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.sgp-sp-component__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
  margin-top: 0.25rem;
}

/* ── Testimonials strip ─────────────────────────────────────────────────────── */

.sgp-sp-testimonials {
  background-color: var(--sgp-fresh-green);
  padding: 6rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-sp-testimonials {
    padding: 8rem var(--sgp-pad-desktop);
  }
}

.sgp-sp-testimonials__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  text-align: center;
}

.sgp-sp-testimonials__header {
  margin-bottom: 3rem;
}

.sgp-sp-testimonials .sgp-eyebrow {
  color: var(--sgp-bold-blue);
  opacity: 0.6;
}

.sgp-sp-testimonials__heading {
  font-size: clamp(2rem, 3vw, 2.625rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.15;
  margin: 0.5rem 0 0;
  letter-spacing: -0.02em;
}

/* ── CTA banner ──────────────────────────────────────────────────────────────── */

.sgp-sp-cta {
  position: relative;
  background-color: var(--sgp-bold-blue);
  overflow: hidden;
  padding: 6rem var(--sgp-pad-mobile);
  text-align: center;
}

@media (min-width: 960px) {
  .sgp-sp-cta {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-sp-cta__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sgp-sp-cta__bg-orb--1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.1) 0%, transparent 65%);
  top: -220px;
  right: -120px;
}

.sgp-sp-cta__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 224, 158, 0.07) 0%, transparent 65%);
  bottom: -180px;
  left: -80px;
}

.sgp-sp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.sgp-sp-cta__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.2;
  margin: 0;
}

.sgp-sp-cta__body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ── Section 20: Global Contact Form Strip ───────────────────────────────────── */
/* kinandco-style: white section → Sky Blue rounded card → white form card */

.sgp-contact-strip {
  background-color: var(--sgp-white);
  padding: 5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-contact-strip {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

/* Sky Blue outer card */
.sgp-contact-strip__card {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  background-color: var(--sgp-sky-blue);
  border-radius: 24px;
  padding: 3rem 1.5rem;
}

@media (min-width: 960px) {
  .sgp-contact-strip__card {
    padding: 4rem 3.5rem;
    border-radius: 28px;
  }
}

.sgp-contact-strip__inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .sgp-contact-strip__inner {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* Eyebrow on blue bg */
.sgp-eyebrow--on-blue {
  color: var(--sgp-bold-blue);
}

/* Lead column — all text navy on blue */
.sgp-contact-strip__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
}

.sgp-contact-strip__intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--sgp-bold-blue);
  margin: 0 0 1.75rem;
}

.sgp-contact-strip__direct {
  font-size: 0.9375rem;
  color: var(--sgp-bold-blue);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.sgp-contact-strip__email {
  color: var(--sgp-bold-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(2, 21, 91, 0.4);
  font-weight: 600;
  word-break: break-all;
}

.sgp-contact-strip__email:hover {
  text-decoration-color: var(--sgp-bold-blue);
}

/* White form card */
.sgp-contact-strip__form-wrap {
  background: var(--sgp-white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(2, 21, 91, 0.08);
}

@media (min-width: 960px) {
  .sgp-contact-strip__form-wrap {
    padding: 2.5rem 2.5rem;
    border-radius: 20px;
  }
}

/* Form */
.sgp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sgp-contact-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .sgp-contact-form__row--split {
    grid-template-columns: 1fr;
  }
}

.sgp-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sgp-contact-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sgp-bold-blue);
  letter-spacing: 0.01em;
}

.sgp-contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--sgp-white);
  border: 1.5px solid #d0d4e4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--sgp-bold-blue);
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sgp-contact-form__input::placeholder {
  color: #9ea5c0;
  font-weight: 400;
}

.sgp-contact-form__input:hover {
  border-color: #a8b0cc;
}

.sgp-contact-form__input:focus {
  outline: none;
  border-color: var(--sgp-sky-blue);
  box-shadow: 0 0 0 3px rgba(68, 158, 248, 0.15);
}

.sgp-contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.sgp-contact-form__submit {
  align-self: flex-start;
  margin-top: 0.25rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  background: var(--sgp-fresh-green);
  color: var(--sgp-bold-blue);
  border-color: var(--sgp-fresh-green);
}

.sgp-contact-form__submit::before {
  background-color: var(--sgp-bold-blue);
}

.sgp-contact-form__submit:hover {
  border-color: var(--sgp-bold-blue);
  color: var(--sgp-white);
  box-shadow: 0 4px 16px rgba(2, 21, 91, 0.25);
}

.sgp-contact-form__submit:active {
  border-color: #010f43;
}
.sgp-contact-form__submit:active::before {
  background-color: #010f43;
}

/* ── Section 21: Hero full-width image ───────────────────────────────────────── */



/* ── Section 23: How we work strip ──────────────────────────────────────────── */

.sgp-sp-how-we-work {
  background: var(--sgp-sky-blue);
  padding: 6rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-sp-how-we-work {
    padding: 8rem var(--sgp-pad-desktop);
  }
}

.sgp-sp-how-we-work__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-sp-how-we-work__header {
  text-align: center;
  margin-bottom: 3rem;
}

.sgp-sp-how-we-work .sgp-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.sgp-sp-how-we-work__heading {
  font-size: clamp(2rem, 3vw, 2.625rem);
  font-weight: 700;
  color: #fff;
  margin: 0.5rem 0 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sgp-sp-how-we-work__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .sgp-sp-how-we-work__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.sgp-sp-how-we-work__item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sgp-sp-how-we-work__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sgp-sp-how-we-work__item-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.sgp-sp-how-we-work__item-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ── Section 24: Service section with aside image ────────────────────────────── */

.sgp-sp-section__inner--imaged {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sgp-sp-section__inner--imaged {
    grid-template-columns: 3fr 2fr;
    gap: 4.5rem;
  }

  .sgp-sp-section__inner--image-left {
    grid-template-columns: 2fr 3fr;
  }

  .sgp-sp-section__inner--image-left .sgp-sp-section__aside {
    order: -1;
  }

  .sgp-sp-section__aside {
    position: sticky;
    top: 100px;
  }
}

.sgp-sp-section__aside {
  position: relative;
}

.sgp-sp-section__aside img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(2, 21, 91, 0.08);
  position: relative;
}

/* Section image accent bar */
.sgp-sp-section__aside::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -10px;
  bottom: -16px;
  width: 5px;
  border-radius: 3px;
  z-index: 1;
  display: none;
}

@media (min-width: 900px) {
  .sgp-sp-section__aside::before {
    display: block;
  }
}

/* Flip accent bar to right side when image is on the left */
.sgp-sp-section__inner--image-left .sgp-sp-section__aside::before {
  left: auto;
  right: -10px;
}

/* Pillar-specific section accent bar colours */
[data-pillar="clarity"] .sgp-sp-section__aside::before {
  background: linear-gradient(180deg, var(--sgp-sky-blue), rgba(68, 158, 248, 0.3));
}
[data-pillar="leading"] .sgp-sp-section__aside::before {
  background: linear-gradient(180deg, var(--sgp-fresh-green), rgba(30, 224, 158, 0.3));
}
[data-pillar="resilient"] .sgp-sp-section__aside::before {
  background: linear-gradient(180deg, var(--sgp-sky-blue), var(--sgp-bold-blue));
}

/* ── Section 25: Testimonial carousel (FocalPoint-style full-width) ─────────── */

.sgp-carousel {
  width: 100%;
}

.sgp-carousel__track-wrap {
  overflow: hidden;
  width: 100%;
}

.sgp-carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sgp-carousel__slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
  text-align: center;
}

.sgp-carousel__slide blockquote {
  margin: 0;
  padding: 0;
}

.sgp-carousel__slide .sgp-testimonial-card__quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: var(--sgp-bold-blue);
  font-family: Georgia, 'Times New Roman', serif;
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.25;
}

.sgp-carousel__slide .sgp-testimonial-card__body {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.8;
  color: var(--sgp-bold-blue);
  font-style: italic;
  margin: 0 auto 2rem;
  max-width: 720px;
}

.sgp-carousel__slide .sgp-testimonial-card__name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--sgp-bold-blue);
}

.sgp-carousel__slide .sgp-testimonial-card__role {
  display: block;
  font-size: 0.875rem;
  color: rgba(2, 21, 91, 0.6);
  margin-top: 0.25rem;
}

.sgp-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.sgp-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(2, 21, 91, 0.2);
  background: transparent;
  color: var(--sgp-bold-blue);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.sgp-carousel__btn:hover {
  border-color: var(--sgp-bold-blue);
  background: var(--sgp-bold-blue);
  color: #fff;
}

.sgp-carousel__btn:focus-visible {
  outline: 2px solid var(--sgp-bold-blue);
  outline-offset: 2px;
}

.sgp-carousel__btn:active {
  background: #010f43;
  border-color: #010f43;
  color: #fff;
}

.sgp-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.sgp-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(2, 21, 91, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.sgp-carousel__dot--active {
  background: var(--sgp-bold-blue);
  transform: scale(1.25);
}

.sgp-carousel__dot:focus-visible {
  outline: 2px solid var(--sgp-bold-blue);
  outline-offset: 3px;
}

/* ── Utility classes ─────────────────────────────────────────────────────────── */

.sgp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content link */
.sgp-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--sgp-fresh-green);
  color: var(--sgp-bold-blue);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  z-index: 999;
  transition: top 0.1s ease;
}

.sgp-skip-link:focus {
  top: 0;
}

/* ── Section 18: Service Page Pillar Services Overview ──────────────────────── */

.sgp-sp-pillar-services {
  background-color: var(--sgp-white);
  padding: 3.5rem var(--sgp-pad-mobile) 2.5rem;
  border-top: 1px solid var(--sgp-calm-gray);
}

@media (min-width: 960px) {
  .sgp-sp-pillar-services {
    padding: 4rem var(--sgp-pad-desktop) 3rem;
  }
}

.sgp-sp-pillar-services__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-sp-pillar-services__heading {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0.5rem 0 2rem;
}

.sgp-sp-pillar-services__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .sgp-sp-pillar-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sgp-sp-pillar-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem;
  background: var(--sgp-white);
  border: 1px solid var(--sgp-calm-gray);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sgp-sp-pillar-card:hover {
  border-color: #449EF8;
  box-shadow: 0 4px 16px rgba(2, 21, 91, 0.08), 0 1px 4px rgba(2, 21, 91, 0.05);
}

.sgp-sp-pillar-card:focus-visible {
  outline: 2px solid var(--sgp-sky-blue);
  outline-offset: 2px;
}

.sgp-sp-pillar-card__number {
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sgp-calm-gray);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 2.5rem;
}

.sgp-sp-pillar-card__text {
  flex: 1;
}

.sgp-sp-pillar-card__heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sgp-bold-blue);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.sgp-sp-pillar-card__desc {
  font-size: 0.9375rem;
  color: #5a5f7a;
  margin: 0;
  line-height: 1.65;
}

.sgp-sp-pillar-card__arrow {
  flex-shrink: 0;
  color: var(--sgp-sky-blue);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}

.sgp-sp-pillar-card:hover .sgp-sp-pillar-card__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ── Section 19: Service Page Accordion ─────────────────────────────────────── */

.sgp-sp-service-block {
  margin-top: 3rem;
}

.sgp-sp-service-block__intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #3a3f5c;
  max-width: 680px;
  margin-bottom: 2rem;
}

/* ── Elevated accordions ────────────────────────────────────────────────────── */

.sgp-sp-accordion {
  border: none;
  border-radius: 0;
  overflow: visible;
}

.sgp-sp-accordion__item {
  border-bottom: 1px solid var(--sgp-calm-gray);
  border-left: 4px solid transparent;
  transition: border-left-color 0.2s ease, background-color 0.2s ease;
}

.sgp-sp-accordion__item:last-child {
  border-bottom: none;
}

.sgp-sp-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sgp-bold-blue);
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sgp-sp-accordion__trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(2, 21, 91, 0.06);
}

.sgp-sp-accordion__trigger:focus-visible {
  outline: 2px solid var(--sgp-sky-blue);
  outline-offset: -2px;
}

.sgp-sp-accordion__trigger:active {
  transform: translateY(0);
}

/* Icon — solid pillar-coloured circle */
.sgp-sp-accordion__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--sgp-sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sgp-white);
  transition: transform 0.25s ease;
}

.sgp-sp-accordion__icon svg {
  display: block;
  stroke: #fff;
  transition: transform 0.25s ease;
}

.sgp-sp-accordion__trigger[aria-expanded="true"] .sgp-sp-accordion__icon svg {
  transform: rotate(45deg);
}

/* Expanded state — light tint background + pillar left border */
.sgp-sp-accordion__trigger[aria-expanded="true"] {
  background-color: rgba(68, 158, 248, 0.04);
}

/* Panel — animated slide */
.sgp-sp-accordion__panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.sgp-sp-accordion__panel--open {
  max-height: 800px;
  padding: 0 1.5rem 1.75rem 2rem;
}

.sgp-sp-accordion__panel p {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3f5c;
  margin-bottom: 0.75rem;
}

.sgp-sp-accordion__panel p:last-child {
  margin-bottom: 0;
}

.sgp-sp-accordion__panel ul {
  margin: 0.25rem 0 1rem;
  padding: 0;
  list-style: none;
}

.sgp-sp-accordion__panel ul li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.25rem;
  color: #3a3f5c;
  font-size: 1rem;
  line-height: 1.7;
}

.sgp-sp-accordion__panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sgp-sky-blue);
}

/* Outcomes box — prominent card */
.sgp-sp-accordion__outcomes {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(68, 158, 248, 0.06);
  border-left: 4px solid var(--sgp-sky-blue);
  border-radius: 0 10px 10px 0;
}

.sgp-sp-accordion__outcomes-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sgp-sky-blue);
  margin: 0 0 0.625rem;
}

.sgp-sp-accordion__outcomes ul {
  margin: 0;
}

.sgp-sp-accordion__outcomes ul li::before {
  background: var(--sgp-fresh-green);
}

.sgp-sp-accordion__placeholder {
  padding: 1.25rem 1.5rem;
  background: rgba(68, 158, 248, 0.06);
  border-left: 4px solid var(--sgp-sky-blue);
  border-radius: 0 10px 10px 0;
  font-size: 0.875rem;
  color: var(--sgp-bold-blue);
}

/* ── Pillar-specific accordion colours ─────────────────────────────────────── */

/* Clarity — Sky Blue (default, already set above) */
[data-pillar="clarity"] .sgp-sp-accordion__item:has(.sgp-sp-accordion__trigger[aria-expanded="true"]) {
  border-left-color: var(--sgp-sky-blue);
}
[data-pillar="clarity"] .sgp-sp-accordion__trigger:hover {
  background-color: rgba(68, 158, 248, 0.04);
}

/* Leading — Fresh Green */
[data-pillar="leading"] .sgp-sp-accordion__icon {
  background: var(--sgp-fresh-green);
}
[data-pillar="leading"] .sgp-sp-accordion__trigger[aria-expanded="true"] {
  background-color: rgba(30, 224, 158, 0.04);
}
[data-pillar="leading"] .sgp-sp-accordion__item:has(.sgp-sp-accordion__trigger[aria-expanded="true"]) {
  border-left-color: var(--sgp-fresh-green);
}
[data-pillar="leading"] .sgp-sp-accordion__trigger:hover {
  background-color: rgba(30, 224, 158, 0.04);
}
[data-pillar="leading"] .sgp-sp-accordion__panel ul li::before {
  background: var(--sgp-fresh-green);
}
[data-pillar="leading"] .sgp-sp-accordion__outcomes {
  background: rgba(30, 224, 158, 0.06);
  border-left-color: var(--sgp-fresh-green);
}
[data-pillar="leading"] .sgp-sp-accordion__outcomes-label {
  color: #12a870;
}

/* Resilient — Navy */
[data-pillar="resilient"] .sgp-sp-accordion__icon {
  background: var(--sgp-bold-blue);
}
[data-pillar="resilient"] .sgp-sp-accordion__trigger[aria-expanded="true"] {
  background-color: rgba(2, 21, 91, 0.04);
}
[data-pillar="resilient"] .sgp-sp-accordion__item:has(.sgp-sp-accordion__trigger[aria-expanded="true"]) {
  border-left-color: var(--sgp-bold-blue);
}
[data-pillar="resilient"] .sgp-sp-accordion__trigger:hover {
  background-color: rgba(2, 21, 91, 0.03);
}
[data-pillar="resilient"] .sgp-sp-accordion__panel ul li::before {
  background: var(--sgp-bold-blue);
}
[data-pillar="resilient"] .sgp-sp-accordion__outcomes {
  background: rgba(2, 21, 91, 0.05);
  border-left-color: var(--sgp-bold-blue);
}
[data-pillar="resilient"] .sgp-sp-accordion__outcomes-label {
  color: var(--sgp-bold-blue);
}

/* ── Divider accent line ─────────────────────────────────────────────────────── */
/* Divider accent line */
.sgp-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* -----------------------------------------------------------------------------
   About Us page (page-about.html)
   ----------------------------------------------------------------------------- */

/* ── Hero ── */
.sgp-about-hero {
  background-color: var(--sgp-white);
  padding: 4rem var(--sgp-pad-mobile) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-about-hero {
    padding: 5rem var(--sgp-pad-desktop) 2.5rem;
  }
}

/* Decorative orbs */
.sgp-about-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sgp-about-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.07) 0%, transparent 65%);
  top: -200px;
  right: -100px;
}

.sgp-about-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 224, 158, 0.06) 0%, transparent 65%);
  bottom: -150px;
  left: -100px;
}

.sgp-about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sgp-about-hero__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}

.sgp-about-hero__standfirst {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Story ── */
.sgp-about-story {
  padding: 0 0 0;
  background: var(--sgp-white);
}

.sgp-about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem var(--sgp-pad-mobile);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 960px) {
  .sgp-about-story__inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-about-story__image {
  flex-shrink: 0;
  position: relative;
}

.sgp-about-story__image-accent {
  position: absolute;
  top: 16px;
  left: -12px;
  bottom: -16px;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
}

.sgp-about-story__image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  display: block;
  position: relative;
  box-shadow: 0 8px 32px rgba(2, 21, 91, 0.12), 0 2px 8px rgba(2, 21, 91, 0.08);
}

@media (min-width: 960px) {
  .sgp-about-story__image img {
    width: 340px;
  }
}

.sgp-about-story__content {
  flex: 1;
}

.sgp-about-story__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
  margin: 0.75rem 0 1.5rem;
}

.sgp-about-story__content p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.sgp-about-story__content p:last-child {
  margin-bottom: 0;
}

/* ── Credentials strip ── */
.sgp-about-credentials {
  background: var(--sgp-sky-blue);
  padding: 2.5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-about-credentials {
    padding: 2.5rem var(--sgp-pad-desktop);
  }
}

.sgp-about-credentials__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
}

@media (min-width: 960px) {
  .sgp-about-credentials__inner {
    justify-content: space-evenly;
    flex-wrap: nowrap;
  }
}

.sgp-about-credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  min-width: 140px;
}

.sgp-about-credential__icon {
  color: var(--sgp-white);
}

.sgp-about-credential__value {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.1;
}

.sgp-about-credential__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ── Philosophy ── */
.sgp-about-philosophy {
  background: var(--sgp-off-white);
  padding: 5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-about-philosophy {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-about-philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sgp-about-philosophy__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.sgp-about-philosophy__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.sgp-about-philosophy__intro {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
}

.sgp-about-philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sgp-about-philosophy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Belief cards — image top, content below ───────────────────────────────── */

.sgp-about-belief {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sgp-calm-gray);
  background: var(--sgp-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sgp-about-belief:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(2, 21, 91, 0.1);
}

.sgp-about-belief__image {
  overflow: hidden;
  height: 180px;
}

.sgp-about-belief__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sgp-about-belief__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.sgp-about-belief__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.2;
}

.sgp-about-belief__body {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

/* ── Mission ── */
.sgp-about-mission {
  background: var(--sgp-bold-blue);
  padding: 5rem var(--sgp-pad-mobile);
  text-align: center;
}

@media (min-width: 960px) {
  .sgp-about-mission {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-about-mission__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.sgp-about-mission__quote {
  margin: 0;
  position: relative;
}

.sgp-about-mission__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.4em;
  left: -0.5em;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(68, 158, 248, 0.15);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}

.sgp-about-mission__quote p {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

.sgp-about-mission__quote footer {
  margin-top: 1rem;
}

.sgp-about-mission__quote cite {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

/* ── Client trust strip ── */
.sgp-about-clients {
  background: var(--sgp-white);
  padding: 5rem var(--sgp-pad-mobile);
  text-align: center;
}

@media (min-width: 960px) {
  .sgp-about-clients {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-about-clients__inner {
  max-width: 900px;
  margin: 0 auto;
}

.sgp-about-clients__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.sgp-about-clients__intro {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.sgp-about-clients__marquee-wrap {
  overflow: hidden;
  margin-top: 2.5rem;
}

.sgp-about-clients__marquee {
  display: flex;
  width: max-content;
  animation: sgp-client-marquee 35s linear infinite;
}

.sgp-about-clients__marquee:hover {
  animation-play-state: paused;
}

@keyframes sgp-client-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sgp-client-logo {
  flex-shrink: 0;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sgp-client-logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.sgp-client-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}


/* -----------------------------------------------------------------------------
   Our Team page (page-team.html)
   ----------------------------------------------------------------------------- */

/* ── Hero ── */
.sgp-team-hero {
  background: var(--sgp-white);
  padding: 5rem var(--sgp-pad-mobile) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-team-hero {
    padding: 7rem var(--sgp-pad-desktop) 5rem;
  }
}

.sgp-team-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.sgp-team-hero__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}

.sgp-team-hero__standfirst {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.7;
}

/* ── Founder profile ── */
.sgp-team-founder {
  background: var(--sgp-white);
  padding: 5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-team-founder {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-team-founder__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 960px) {
  .sgp-team-founder__inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
}

.sgp-team-founder__image {
  flex-shrink: 0;
  position: relative;
}

.sgp-team-founder__image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(2, 21, 91, 0.12), 0 2px 8px rgba(2, 21, 91, 0.08);
}

.sgp-team-founder__content {
  flex: 1;
}

.sgp-team-founder__name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}

.sgp-team-founder__tags {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sgp-team-founder__tag {
  background: var(--sgp-bold-blue);
  border: none;
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8125rem;
  color: var(--sgp-white);
  font-weight: 600;
}

.sgp-team-founder__bio {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.sgp-team-founder__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.15s ease;
}

.sgp-team-founder__link:hover,
.sgp-team-founder__link:focus-visible {
  color: var(--sgp-bold-blue);
}

/* ── Partners grid ── */
.sgp-team-partners {
  background: var(--sgp-off-white);
  padding: 5rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-team-partners {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-team-partners__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sgp-team-partners__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.sgp-team-partners__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.sgp-team-partners__intro {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.sgp-team-partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .sgp-team-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .sgp-team-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sgp-team-partners__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sgp-team-partner-card {
  background: var(--sgp-white);
  border-radius: 16px;
  border: 1px solid var(--sgp-calm-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(2, 21, 91, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sgp-team-partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(2, 21, 91, 0.1);
}

.sgp-team-partner-card__photo {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 0;
}

.sgp-team-partner-card__photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s ease;
  /* Scale up slightly to crop out any border artifacts on LinkedIn photos */
  transform: scale(1.05);
}

.sgp-team-partner-card:hover .sgp-team-partner-card__photo img {
  transform: scale(1.1);
}

.sgp-team-partner-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-team-partner-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
}

.sgp-team-partner-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.sgp-team-partner-card__bio {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.sgp-team-partner-card__value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sgp-bold-blue);
  font-style: italic;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--sgp-calm-gray);
}

/* Pillar-specific partner card colours */
.sgp-team-partner-card[data-pillar="clarity"] {
  border-top-color: var(--sgp-sky-blue);
}
.sgp-team-partner-card[data-pillar="leading"] {
  border-top-color: var(--sgp-fresh-green);
}
.sgp-team-partner-card[data-pillar="resilient"] {
  border-top-color: var(--sgp-bold-blue);
}

/* ── Partner profiles — editorial layout ──────────────────────────────────── */

.sgp-team-partners__grid {
  gap: 3rem;
}

.sgp-team-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.sgp-team-partner__photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(2, 21, 91, 0.1);
}

.sgp-team-partner__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-team-partner:hover .sgp-team-partner__photo {
  transform: scale(1.05);
}

.sgp-team-partner__photo--sarah {
  transform: scale(1.08);
}

.sgp-team-partner:hover .sgp-team-partner__photo--sarah {
  transform: scale(1.12);
}

.sgp-team-partner__role {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sgp-sky-blue);
}

.sgp-team-partner__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.sgp-team-partner:hover .sgp-team-partner__name {
  color: var(--sgp-sky-blue);
}

.sgp-team-partner__bio {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0.5rem 0 0;
  max-width: 320px;
}

/* ── Partner grid — clickable buttons ── */

.sgp-team-partner {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sgp-team-partner:hover {
  transform: translateY(-5px);
}

.sgp-team-partner:hover .sgp-team-partner__photo-wrap {
  box-shadow: 0 12px 32px rgba(2, 21, 91, 0.15);
}

/* ── Partner modal ──────────────────────────────────────────────────────────── */

.sgp-partner-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.sgp-partner-modal--open {
  visibility: visible;
  opacity: 1;
}

.sgp-partner-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 21, 91, 0.5);
}

.sgp-partner-modal__panel {
  position: relative;
  background: var(--sgp-white);
  border-radius: 16px;
  max-width: 920px;
  width: 94vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(2, 21, 91, 0.2);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.sgp-partner-modal--open .sgp-partner-modal__panel {
  transform: scale(1);
}

/* Gradient accent bar */
.sgp-partner-modal__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
  z-index: 1;
}

/* Close button */
.sgp-partner-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--sgp-off-white);
  color: var(--sgp-bold-blue);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.2s ease;
}

.sgp-partner-modal__close:hover {
  background: var(--sgp-calm-gray);
}

/* Navigation arrows */
.sgp-partner-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--sgp-off-white);
  color: var(--sgp-bold-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sgp-partner-modal__nav:hover {
  background: var(--sgp-calm-gray);
}

.sgp-partner-modal__nav--prev {
  left: 1rem;
}

.sgp-partner-modal__nav--next {
  right: 1rem;
}

/* Modal content layout */
.sgp-partner-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 4rem 2.5rem;
  gap: 2rem;
}

@media (min-width: 600px) {
  .sgp-partner-modal__content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.sgp-partner-modal__photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(2, 21, 91, 0.1);
}

.sgp-partner-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.sgp-partner-modal__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 599px) {
  .sgp-partner-modal__info {
    text-align: center;
  }
}

.sgp-partner-modal__role {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sgp-sky-blue);
}

.sgp-partner-modal__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.sgp-partner-modal__tag {
  background: var(--sgp-bold-blue);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--sgp-white);
  font-weight: 600;
  white-space: nowrap;
}

.sgp-partner-modal__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.15;
}

.sgp-partner-modal__bio {
  font-size: 1rem;
  color: #3a3f5c;
  line-height: 1.8;
  margin: 0.5rem 0 0;
}

/* ── Team CTA ── */
.sgp-team-cta {
  background: var(--sgp-bold-blue);
  padding: 5rem var(--sgp-pad-mobile);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-team-cta {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-team-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sgp-team-cta__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.sgp-team-cta__body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* =============================================================================
   Decorative SVG Motifs
   ============================================================================= */

/* Base — all motif containers need relative positioning and overflow hidden */
[class*="sgp-motif"] {
  position: relative;
  overflow: hidden;
}

/* All motifs are pseudo-elements, hidden on mobile, non-interactive */
[class*="sgp-motif"]::before,
[class*="sgp-motif"]::after {
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 959px) {
  [class*="sgp-motif"]::before,
  [class*="sgp-motif"]::after {
    display: none !important;
  }
}

/* ── Motif 1: Connected Nodes ────────────────────────────────────────────────
   Three circles in a triangle connected by curved lines.
   Echoes the SGP logo and three-pillar structure.
   ──────────────────────────────────────────────────────────────────────────── */

/* Sky Blue variant — used on homepage services heading */
.sgp-motif--nodes-left::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Ccircle cx='40' cy='12' r='6' fill='%23449EF8'/%3E%3Ccircle cx='16' cy='62' r='6' fill='%23449EF8'/%3E%3Ccircle cx='64' cy='62' r='6' fill='%23449EF8'/%3E%3Cpath d='M36 17C28 30 18 50 18 56' stroke='%23449EF8' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M44 17C52 30 62 50 62 56' stroke='%23449EF8' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M22 62C30 62 50 62 58 62' stroke='%23449EF8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Fresh Green variant — used on About philosophy heading */
.sgp-motif--nodes-right::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  right: 40px;
  top: 2rem;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Ccircle cx='40' cy='12' r='6' fill='%231EE09E'/%3E%3Ccircle cx='16' cy='62' r='6' fill='%231EE09E'/%3E%3Ccircle cx='64' cy='62' r='6' fill='%231EE09E'/%3E%3Cpath d='M36 17C28 30 18 50 18 56' stroke='%231EE09E' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M44 17C52 30 62 50 62 56' stroke='%231EE09E' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M22 62C30 62 50 62 58 62' stroke='%231EE09E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── Motif 2: Growth Arc ─────────────────────────────────────────────────────
   Gentle upward curve with a dot at the apex.
   Represents sustainable growth.
   ──────────────────────────────────────────────────────────────────────────── */

/* Green on navy — used on homepage About strip */
.sgp-motif--arc-topright::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  right: 40px;
  top: 30px;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M10 80C25 40 50 15 90 10' stroke='%231EE09E' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='90' cy='10' r='5' fill='%231EE09E'/%3E%3C/svg%3E");
}

/* Sky Blue on navy — used on About mission (mirrored) */
.sgp-motif--arc-topleft::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  left: 40px;
  top: 30px;
  opacity: 0.12;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M10 80C25 40 50 15 90 10' stroke='%23449EF8' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='90' cy='10' r='5' fill='%23449EF8'/%3E%3C/svg%3E");
}

/* ── Motif 3: Chevron Cluster ────────────────────────────────────────────────
   Three stacked chevrons in pillar colours.
   Suggests forward movement and progress.
   ──────────────────────────────────────────────────────────────────────────── */

/* Used on homepage CTA and service page steps */
.sgp-motif--chevrons-left::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M8 18L22 30L8 42' stroke='%23449EF8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 18L36 30L22 42' stroke='%231EE09E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 18L50 30L36 42' stroke='%2302155B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Pillar-coloured variant for service pages */
.sgp-motif--chevrons-left-pillar::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M8 18L22 30L8 42' stroke='%23449EF8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 18L36 30L22 42' stroke='%231EE09E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 18L50 30L36 42' stroke='%2302155B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── Motif 4: Diagonal Lines ─────────────────────────────────────────────────
   Three parallel diagonal strokes in pillar colours.
   Minimal, modern geometric accent.
   ──────────────────────────────────────────────────────────────────────────── */

/* White variant — used on dark hero backgrounds */
.sgp-motif--diag-bottomright::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: 60px;
  bottom: 30px;
  opacity: 0.15;
  transform: rotate(-15deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cline x1='20' y1='10' x2='60' y2='110' stroke='%23449EF8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='50' y1='10' x2='90' y2='110' stroke='%231EE09E' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='80' y1='10' x2='120' y2='110' stroke='%2302155B' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Coloured variant — used on white sections like service intro */
.sgp-motif--diag-right::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cline x1='20' y1='10' x2='60' y2='110' stroke='%23449EF8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='50' y1='10' x2='90' y2='110' stroke='%231EE09E' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='80' y1='10' x2='120' y2='110' stroke='%2302155B' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* =============================================================================
   Our Thinking — Articles Listing + Reading Pages
   ============================================================================= */

/* ── Featured article card ─────────────────────────────────────────────────── */

.sgp-featured-article {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sgp-calm-gray);
  background: var(--sgp-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sgp-featured-article {
    flex-direction: row;
  }
}

.sgp-featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(2, 21, 91, 0.12);
}

.sgp-featured-article__image {
  overflow: hidden;
  min-height: 250px;
}

@media (min-width: 768px) {
  .sgp-featured-article__image {
    width: 50%;
    min-height: 320px;
  }
}

.sgp-featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-featured-article:hover .sgp-featured-article__image img {
  transform: scale(1.04);
}

.sgp-featured-article__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  flex: 1;
}

.sgp-featured-article__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sgp-fresh-green);
  background: rgba(30, 224, 158, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.sgp-featured-article__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.2;
  margin: 0;
}

.sgp-featured-article__excerpt {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.sgp-featured-article__meta {
  font-size: 0.8125rem;
  color: #6b7a9e;
}

.sgp-featured-article__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sgp-sky-blue);
  transition: gap 0.2s ease;
  margin-top: 0.5rem;
}

.sgp-featured-article:hover .sgp-featured-article__link {
  gap: 0.625rem;
}

/* ── Filter buttons ────────────────────────────────────────────────────────── */

.sgp-article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--sgp-wide-width);
  margin: 0 auto 2.5rem;
}

.sgp-article-filter {
  font-family: var(--sgp-font);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--sgp-calm-gray);
  background: var(--sgp-white);
  color: #4a5568;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Hover only applies to inactive filters */
.sgp-article-filter:not(.sgp-article-filter--active)[data-filter="all"]:hover {
  border-color: var(--sgp-calm-gray);
  color: var(--sgp-bold-blue);
}

.sgp-article-filter:not(.sgp-article-filter--active)[data-filter="leadership"]:hover {
  border-color: var(--sgp-bold-blue);
  color: var(--sgp-bold-blue);
}

.sgp-article-filter:not(.sgp-article-filter--active)[data-filter="strategy"]:hover {
  border-color: var(--sgp-sky-blue);
  color: var(--sgp-sky-blue);
}

.sgp-article-filter:not(.sgp-article-filter--active)[data-filter="growth"]:hover {
  border-color: var(--sgp-fresh-green);
  color: #12a870;
}

.sgp-article-filter--active[data-filter="all"] {
  background: var(--sgp-calm-gray);
  color: var(--sgp-bold-blue);
  border-color: var(--sgp-calm-gray);
}

.sgp-article-filter--active[data-filter="leadership"] {
  background: var(--sgp-bold-blue);
  color: var(--sgp-white);
  border-color: var(--sgp-bold-blue);
}

.sgp-article-filter--active[data-filter="strategy"] {
  background: var(--sgp-sky-blue);
  color: var(--sgp-white);
  border-color: var(--sgp-sky-blue);
}

.sgp-article-filter--active[data-filter="growth"] {
  background: var(--sgp-fresh-green);
  color: var(--sgp-bold-blue);
  border-color: var(--sgp-fresh-green);
}

/* ── Article card grid ─────────────────────────────────────────────────────── */

.sgp-article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .sgp-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sgp-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sgp-article-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sgp-calm-gray);
  background: var(--sgp-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sgp-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(2, 21, 91, 0.12);
}

.sgp-article-card__image {
  overflow: hidden;
  height: 200px;
}

.sgp-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sgp-article-card:hover .sgp-article-card__image img {
  transform: scale(1.04);
}

.sgp-article-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.sgp-article-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
  width: fit-content;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
}

.sgp-article-card__tag--leadership {
  color: var(--sgp-white);
  background: var(--sgp-bold-blue);
}

.sgp-article-card__tag--strategy {
  color: var(--sgp-sky-blue);
  background: rgba(68, 158, 248, 0.1);
}

.sgp-article-card__tag--growth {
  color: #12a870;
  background: rgba(30, 224, 158, 0.1);
}

.sgp-article-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.25;
  margin: 0;
}

.sgp-article-card__excerpt {
  font-size: 0.875rem;
  color: #6b7a9e;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sgp-article-card__date {
  font-size: 0.75rem;
  color: #9ea5c0;
  margin-top: auto;
  padding-top: 0.5rem;
}

.sgp-article-card--hidden {
  display: none;
}

/* ── Listing page sections ─────────────────────────────────────────────────── */

.sgp-thinking-featured {
  background: var(--sgp-off-white);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-thinking-featured {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-thinking-listing {
  background: var(--sgp-white);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-thinking-listing {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

/* ── Article reading page ──────────────────────────────────────────────────── */

.sgp-article-author {
  max-width: 740px;
  margin: 0 auto;
  padding: 2rem var(--sgp-pad-mobile);
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 960px) {
  .sgp-article-author {
    padding: 2rem 0;
  }
}

.sgp-article-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.sgp-article-author__info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sgp-article-author__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
}

.sgp-article-author__meta {
  font-size: 0.8125rem;
  color: #6b7a9e;
}

.sgp-article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem var(--sgp-pad-mobile) 4rem;
}

@media (min-width: 960px) {
  .sgp-article-body {
    padding: 3.5rem 0 5rem;
  }
}

.sgp-article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
}

.sgp-article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sgp-bold-blue);
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}

.sgp-article-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #3a3f5c;
  margin: 0 0 1.25rem;
}

.sgp-article-body ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
}

.sgp-article-body ul li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #3a3f5c;
}

.sgp-article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sgp-fresh-green);
}

/* Article infographics */
.sgp-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2.5rem 0;
  display: block;
}

/* Article sources */
.sgp-article-sources {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sgp-calm-gray);
}

.sgp-article-sources h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7a9e;
  margin: 0 0 1rem;
}

.sgp-article-sources ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sgp-article-sources ul li {
  padding: 0;
}

.sgp-article-sources ul li::before {
  display: none;
}

.sgp-article-sources a {
  font-size: 0.875rem;
  color: var(--sgp-sky-blue);
  text-decoration: none;
  transition: color 0.15s ease;
}

.sgp-article-sources a:hover {
  color: var(--sgp-bold-blue);
  text-decoration: underline;
}

.sgp-article-body blockquote,
.sgp-article-body .sgp-article-takeaway {
  border-left: 4px solid var(--sgp-fresh-green);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: rgba(30, 224, 158, 0.04);
  border-radius: 0 10px 10px 0;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--sgp-bold-blue);
}

.sgp-article-related {
  background: var(--sgp-off-white);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-article-related {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-article-related__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
}

.sgp-article-related__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0 0 2rem;
}

/* =============================================================================
   Standalone Service Pages — layout refinements
   ============================================================================= */

/* Standalone service pages — section directly after intro strip */
.sgp-sp-intro + .sgp-sp-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 960px) {
  .sgp-sp-intro + .sgp-sp-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

/* Pillar-coloured "Learn more" buttons on pillar pages */
[data-pillar="clarity"] .sgp-btn--primary {
  background-color: var(--sgp-sky-blue);
  border-color: var(--sgp-sky-blue);
}
[data-pillar="clarity"] .sgp-btn--primary::before {
  background-color: var(--sgp-bold-blue);
}
[data-pillar="clarity"] .sgp-btn--primary:hover {
  border-color: var(--sgp-bold-blue);
}

[data-pillar="leading"] .sgp-btn--primary {
  background-color: var(--sgp-fresh-green);
  border-color: var(--sgp-fresh-green);
  color: var(--sgp-bold-blue);
}
[data-pillar="leading"] .sgp-btn--primary::before {
  background-color: var(--sgp-bold-blue);
}
[data-pillar="leading"] .sgp-btn--primary:hover {
  border-color: var(--sgp-bold-blue);
  color: var(--sgp-white);
}

/* Resilient keeps the default navy — no override needed */

/* Service page CTA — navy background with white text */
.sgp-sp-section + .sgp-home-cta {
  background-color: var(--sgp-bold-blue);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-sp-section + .sgp-home-cta {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-sp-section + .sgp-home-cta .sgp-home-cta__heading {
  color: var(--sgp-white);
}

.sgp-sp-section + .sgp-home-cta .sgp-home-cta__body {
  color: rgba(255, 255, 255, 0.8);
}

.sgp-sp-section + .sgp-home-cta .sgp-divider {
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
}

/* Sub-service heading styling for service detail pages */
.sgp-sp-section__main h2.sgp-sp-section__heading {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sgp-calm-gray);
}

.sgp-sp-section__main h2.sgp-sp-section__heading:first-of-type {
  margin-top: 0;
}

/* Tighter paragraph spacing in service sections */
.sgp-sp-section__main > p {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

/* =============================================================================
   Growth Diagnostic Page
   ============================================================================= */

/* Full-height Typeform embed */
.sgp-diagnostic {
  width: 100%;
  min-height: calc(100vh - 73px);
}

.sgp-diagnostic__embed {
  width: 100%;
  height: calc(100vh - 73px);
  border: none;
}

/* Placeholder (shown until Typeform is ready) */
.sgp-diagnostic-placeholder {
  background: var(--sgp-white);
  padding: 5rem var(--sgp-pad-mobile);
  text-align: center;
}

@media (min-width: 960px) {
  .sgp-diagnostic-placeholder {
    padding: 7rem var(--sgp-pad-desktop);
  }
}

.sgp-diagnostic-placeholder__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sgp-diagnostic-placeholder__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.2;
}

.sgp-diagnostic-placeholder__body {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* =============================================================================
   Growth Diagnostic Results Page — Elevated
   ============================================================================= */

/* ── Hero ── */
.sgp-results-hero {
  background: var(--sgp-bold-blue);
  padding: 5rem var(--sgp-pad-mobile) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgp-results-hero {
    padding: 6rem var(--sgp-pad-desktop) 5rem;
  }
}

.sgp-results-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sgp-results-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(68, 158, 248, 0.12) 0%, transparent 65%);
  top: -200px;
  right: -100px;
}

.sgp-results-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 224, 158, 0.1) 0%, transparent 65%);
  bottom: -150px;
  left: -80px;
}

.sgp-results-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.sgp-results-hero__logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sgp-results-hero__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--sgp-white);
  line-height: 1.15;
  margin: 0;
}

.sgp-results-hero__heading--accent {
  color: var(--sgp-fresh-green);
}

.sgp-results-hero__intro {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

/* ── Overall Score with SVG Ring ── */
.sgp-results-overall {
  background: var(--sgp-off-white);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-results-overall {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-results-overall__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.sgp-results-overall .sgp-divider {
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .sgp-results-overall__inner {
    flex-direction: row;
    text-align: left;
    gap: 3.5rem;
  }
  .sgp-results-overall .sgp-divider {
    display: none;
  }
}

.sgp-results-overall__ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.sgp-results-overall__ring {
  width: 200px;
  height: 200px;
}

.sgp-results-overall__ring-bg {
  fill: none;
  stroke: var(--sgp-calm-gray);
  stroke-width: 10;
}

.sgp-results-overall__ring-fill {
  transition: stroke-dashoffset 1.5s ease;
}

.sgp-results-overall__ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sgp-results-overall__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1;
}

.sgp-results-overall__out-of {
  font-size: 0.875rem;
  color: #6b7a9e;
  font-weight: 500;
}

.sgp-results-overall__text {
  flex: 1;
}

.sgp-results-overall__headline {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.sgp-results-overall__description {
  font-size: 1.0625rem;
  color: #3a3f5c;
  line-height: 1.75;
  margin: 0;
}

/* ── Section Score Cards ── */
.sgp-results-sections {
  background: var(--sgp-white);
  padding: 3rem var(--sgp-pad-mobile) 4rem;
}

@media (min-width: 960px) {
  .sgp-results-sections {
    padding: 4rem var(--sgp-pad-desktop) 5rem;
  }
}

.sgp-results-sections__header {
  max-width: var(--sgp-wide-width);
  margin: 0 auto 2rem;
}

.sgp-results-sections__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0.5rem 0 0;
}

.sgp-results-sections__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sgp-results-sections__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sgp-results-card {
  background: var(--sgp-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--sgp-calm-gray);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sgp-results-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(2, 21, 91, 0.1);
}

.sgp-results-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sgp-results-card__icon {
  display: none;
}

.sgp-results-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.2;
  flex: 1;
}

.sgp-results-card__score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sgp-bold-blue);
  line-height: 1;
}

.sgp-results-card__score-total {
  font-size: 1rem;
  font-weight: 500;
  color: #9ea5c0;
}

.sgp-results-card__bar {
  height: 10px;
  background: var(--sgp-calm-gray);
  border-radius: 5px;
  overflow: hidden;
}

.sgp-results-card__bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 1s ease;
}

.sgp-results-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sgp-results-card__rating {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.sgp-results-card__desc {
  font-size: 0.875rem;
  color: #6b7a9e;
  line-height: 1.6;
  margin: 0;
}

/* ── Insights — editorial two-column layout ── */
.sgp-results-insights {
  background: var(--sgp-off-white);
  padding: 4rem var(--sgp-pad-mobile);
}

@media (min-width: 960px) {
  .sgp-results-insights {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-results-insights__inner {
  max-width: var(--sgp-wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .sgp-results-insights__inner {
    grid-template-columns: 1fr 1px 1fr;
    gap: 3.5rem;
  }
}

/* Vertical divider between the two columns */
.sgp-results-insights__inner::before {
  display: none;
}

@media (min-width: 640px) {
  .sgp-results-insights__inner::before {
    content: '';
    display: block;
    background: var(--sgp-calm-gray);
    width: 1px;
    order: 2;
  }

  .sgp-results-insight--strength {
    order: 1;
  }

  .sgp-results-insight--priority {
    order: 3;
  }
}

.sgp-results-insight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sgp-results-insight__icon {
  display: none;
}

.sgp-results-insight__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sgp-results-insight--strength .sgp-results-insight__label {
  color: #12a870;
}

.sgp-results-insight--priority .sgp-results-insight__label {
  color: #D97706;
}

.sgp-results-insight__area {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.15;
  padding-bottom: 1rem;
  border-bottom: 3px solid transparent;
}

.sgp-results-insight--strength .sgp-results-insight__area {
  border-bottom-color: var(--sgp-fresh-green);
}

.sgp-results-insight--priority .sgp-results-insight__area {
  border-bottom-color: #F59E0B;
}

.sgp-results-insight__text {
  font-size: 1rem;
  color: #3a3f5c;
  line-height: 1.75;
  margin: 0;
}

/* ── Summary ── */
.sgp-results-summary {
  background: var(--sgp-bold-blue);
  padding: 3.5rem var(--sgp-pad-mobile);
  text-align: center;
}

@media (min-width: 960px) {
  .sgp-results-summary {
    padding: 4.5rem var(--sgp-pad-desktop);
  }
}

.sgp-results-summary__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.sgp-results-summary .sgp-divider {
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
}

.sgp-results-summary p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0;
}

/* ── Results CTA ── */
.sgp-results-cta {
  background: var(--sgp-white);
  padding: 4rem var(--sgp-pad-mobile);
  text-align: center;
  border-top: 1px solid var(--sgp-calm-gray);
}

@media (min-width: 960px) {
  .sgp-results-cta {
    padding: 5rem var(--sgp-pad-desktop);
  }
}

.sgp-results-cta--navy {
  background: var(--sgp-bold-blue);
}

.sgp-results-cta--navy .sgp-divider {
  background: linear-gradient(90deg, var(--sgp-sky-blue), var(--sgp-fresh-green));
}

.sgp-results-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.sgp-results-cta__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--sgp-bold-blue);
  margin: 0;
  line-height: 1.15;
}

.sgp-results-cta--navy .sgp-results-cta__heading {
  color: var(--sgp-white);
}

.sgp-results-cta__body {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.sgp-results-cta--navy .sgp-results-cta__body {
  color: rgba(255, 255, 255, 0.75);
}
