/* =========================================
   Hero layout
========================================= */

.hero__accreditation {
  display: block;
  margin: 0 0 var(--space-md) 0;
  align-self: flex-start;
}

.hero-shell {
  background: var(--hero-bg);
  border-radius: var(--hero-radius);
  overflow: hidden;
}

.hero {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.hero__content {
  padding: var(--hero-content-pad-top)
           var(--hero-content-pad-right)
           var(--hero-content-pad-bottom)
           var(--hero-content-pad-left);
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 760px;
}

.hero-title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-hero-title);
  line-height: var(--line-height-hero-title);
  letter-spacing: var(--letter-spacing-hero-title);
  color: var(--hero-title-color);
  margin: 0 0 var(--space-sm);
  max-width: 100%;
  text-wrap: balance;
}

.hero__content .text-block {
  max-width: 700px;
}

.hero__media {
  padding: 0;
}

.hero__figure {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__media picture {
  display: block;
  height: 100%;
}

@media (min-width: 992px) {
  .hero,
  .hero__content,
  .hero__media,
  .hero__figure,
  .hero__media picture,
  .hero__img {
    min-height: var(--hero-min-height-desktop);
  }
}

@media (max-width: 991.98px) {
  .hero__content {
    padding: 28px 24px 14px;
  }

  .hero__media {
    padding: 0 24px 24px;
  }

  .hero__figure {
    min-height: 280px;
    border-radius: 12px;
  }

  .hero__media picture,
  .hero__img {
    min-height: 280px;
  }
}
/* =========================================
   Impact Section Header
========================================= */

.impact-section-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.impact-section-title {
  font-family: var(--font-family-heading);
  margin: 0 0 var(--space-xs);
}

.impact-section-header .section-separator {
  margin: var(--space-xs) 0 var(--space-sm);
}

.impact-section-subtext {
  max-width: 820px;
  margin: 0 auto;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body-md);
  line-height: var(--line-height-body-lg);
  color: var(--muted);
}

/* =========================================
   Results Ticker Section
========================================= */

.qualcat-results-section {
  background: #ffffff;
}

.qualcat-results-ticker-shell {
  position: relative;
  padding: 0;
  border-top: 1px solid #e7ebf1;
  border-bottom: 1px solid #e7ebf1;
}

.qualcat-results-ticker {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.qualcat-results-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 16px 0 18px;
  animation: qualcatResultsScroll 82s linear infinite;
}

.qualcat-results-ticker:hover .qualcat-results-track {
  animation-play-state: paused;
}

.qualcat-results-item {
  width: 258px;
  max-width: 258px;
  flex: 0 0 auto;
}

@keyframes qualcatResultsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* =========================================
   Premium Results Cards
========================================= */

.impact-stat-card {
  position: relative;
  height: 100%;
  min-height: 164px;
  padding: 17px 18px 15px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 6px 18px rgba(14, 22, 51, 0.03);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.impact-stat-card:hover {
  transform: translateY(-2px);
  border-color: #d8e1ec;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 10px 24px rgba(14, 22, 51, 0.05);
}

.impact-stat-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f74ff 0%, #78a9ff 100%);
}

.impact-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.impact-stat-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
}

.impact-stat-card__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  margin-bottom: var(--space-xs);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-meta-xs);
  line-height: 1.8;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a7686;
  background: #f4f7fa;
  border: 1px solid #e3e9f0;
  border-radius: 999px;
}

.impact-stat-card__value {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-stat-lg);
  line-height: var(--line-height-stat-lg);
  letter-spacing: var(--letter-spacing-stat-lg);
  font-weight: var(--font-weight-bold);
  color: #1f6df0;
  margin-bottom: var(--space-xs);
  text-rendering: geometricPrecision;
}

.impact-stat-card__label {
  font-size: var(--font-size-body-sm);
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.015em;
  color: #223048;
  max-width: 205px;
  margin: 0 auto;
}

.impact-stat-card__label br {
  display: none;
}
/* =========================================
   KPI Section
========================================= */

.qualcat-kpi-section {
  background: #ffffff;
}

/* =========================================
   KPI Highlight Grid
========================================= */

.impact-highlight-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.impact-highlight {
  position: relative;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 22px;
  min-height: 220px;
  overflow: hidden;
}

.impact-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-blue);
  opacity: 0.95;
}

.impact-highlight--featured {
  background: linear-gradient(180deg, #0e224f 0%, #112d66 100%);
  border-color: #112d66;
  color: #ffffff;
}

.impact-highlight--featured::before {
  background: var(--brand-orange);
  opacity: 1;
}

.impact-highlight--accent {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.impact-highlight__eyebrow {
  margin-bottom: var(--space-md);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-label-sm);
  line-height: 1.35;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}

.impact-highlight__metric {
  margin-bottom: var(--space-sm);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-stat-xl);
  line-height: var(--line-height-stat-xl);
  letter-spacing: var(--letter-spacing-stat-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
}

.impact-highlight__title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-heading-4);
  line-height: var(--line-height-heading-4);
  letter-spacing: var(--letter-spacing-heading-4);
  font-weight: var(--font-weight-semibold);
  color: var(--text);
}

.impact-highlight__text {
  margin: 0;
  font-size: var(--font-size-body-sm);
  line-height: var(--line-height-body-sm);
  font-weight: var(--font-weight-regular);
  color: var(--muted);
}

.impact-highlight--featured .impact-highlight__metric,
.impact-highlight--featured .impact-highlight__title,
.impact-highlight--featured .impact-highlight__text {
  color: #ffffff;
}

.impact-highlight--featured .impact-highlight__text {
  color: rgba(255, 255, 255, 0.86);
}

/* =========================================
   Benefits section
========================================= */

.benefits-section {
  margin: 16px 0;
}

.benefits-shell {
  background: var(--hero-bg);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 52px 40px 48px;
}

.benefits-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.benefits-section__title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-heading-2);
  line-height: var(--line-height-heading-2);
  letter-spacing: var(--letter-spacing-heading-2);
  color: #2c3138;
  margin: 0;
}

.benefits-tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.benefits-tabs__or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e0ea;
  color: #6b7280;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-transform: lowercase;
  box-shadow: 0 1px 2px rgba(14, 22, 51, 0.04);
}

.benefits-tab.nav-link {
  min-width: 192px;
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  border: 1px solid var(--brand-blue);
  background: #fff;
  color: var(--brand-blue);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-button-md);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.benefits-tab.nav-link:hover,
.benefits-tab.nav-link:focus {
  background: #f7faff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: var(--focus-ring);
  outline: none;
}

.benefits-tab.nav-link.active {
  background: linear-gradient(180deg, #4a74f0 0%, #3e68e9 100%);
  color: #fff;
  border-color: #4a74f0;
}

.benefits-tabs__content {
  width: 100%;
}

.benefits-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 320px);
  gap: 34px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.benefits-panel__content {
  min-width: 0;
}

.benefits-panel__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-heading-3);
  line-height: var(--line-height-heading-3);
  letter-spacing: var(--letter-spacing-heading-3);
  font-weight: var(--font-weight-bold);
  color: #2c3138;
  margin: 0 0 var(--space-xs);
}

.benefits-panel__separator {
  justify-content: flex-start;
  margin: 0 0 var(--space-lg);
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list__item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-body-md);
  line-height: 1.6;
  font-weight: var(--font-weight-regular);
  color: #4b4b4b;
}

.benefits-list__item:last-child {
  margin-bottom: 0;
}

.benefits-list__icon {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e39a28;
}

.benefits-list__icon svg {
  width: 12px;
  height: 12px;
  display: block;
  fill: currentColor;
}

.benefits-panel__media {
  width: 100%;
}

.benefits-panel__figure {
  width: 100%;
}

.benefits-panel__image {
  display: block;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(14, 22, 51, 0.08);
}

.benefits-tabs .tab-pane {
  outline: none;
}

/* =========================================
   Section spacing: Benefits -> Products
========================================= */

#qualcat-benefits {
  margin-bottom: 0;
}

#qualcat-benefits .benefits-section {
  margin-bottom: 0;
}

#qualcat-benefits .benefits-shell {
  margin-bottom: 0;
}

#qualcat-products,
.products-section,
.qual-products-section {
  margin-top: 0;
  padding-top: 24px;
}

#qualcat-products .section-header,
.products-section .section-header,
.qual-products-section .section-header {
  margin-top: 0;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  #qualcat-products,
  .products-section,
  .qual-products-section {
    padding-top: 32px;
  }
}

/* =========================================
   Premium stacked product cards
========================================= */

.qualcat-products__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.qualcat-products__title {
  font-family: var(--font-family-heading);
  margin: 0;
}

.qualcat-products__title span {
  display: block;
  text-decoration: none;
}

.product-grid {
  align-items: stretch;
}

.product-grid--stacked {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid__item {
  display: flex;
}

.product-card {
  width: 100%;
}

/* =========================================
   Premium clickable card shell
========================================= */

.product-card--premium {
  position: relative;
  background: var(--product-card-bg);
  border: 1px solid var(--product-card-border);
  border-radius: var(--product-card-radius);
  overflow: hidden;
  box-shadow: var(--product-card-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.product-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card--link:hover,
.product-card--link:focus,
.product-card--premium:hover {
  transform: translateY(-2px);
  border-color: #d3d9e3;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  text-decoration: none;
  color: inherit;
}

.product-card--link:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(12, 109, 253, 0.18),
    0 10px 28px rgba(15, 23, 42, 0.07);
}

.product-card__topline {
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
}

.product-card__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
}

/* =========================================
   Media
========================================= */

.product-card__media {
  display: block;
  background: #ffffff;
}

.product-card__image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}

.product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

/* =========================================
   Content
========================================= */

.product-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 26px 22px;
}

.product-card__title {
  display: block;
  margin: 0 0 var(--space-md);
  font-family: var(--font-family-heading);
  font-size: clamp(1.125rem, 1.03rem + 0.35vw, 1.375rem);
  line-height: 1.18;
  letter-spacing: -0.024em;
  font-weight: var(--font-weight-bold);
  color: var(--product-card-title);
  text-wrap: balance;
}

.product-card__facts-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 18px;
  row-gap: 12px;
  margin: 0 0 var(--space-md);
}

.product-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: flex-start;
}

.product-card__cta-inline {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: start;
}

.product-card__fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid #e5eaf3;
  border-radius: 10px;
  background: #f8fbff;
  box-sizing: border-box;
}

.product-card__fact-label {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-label-sm);
  line-height: 1.2;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  color: var(--product-card-meta);
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card__fact-value {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-body-sm);
  line-height: 1.35;
  font-weight: var(--font-weight-semibold);
  color: var(--product-card-meta-strong);
  white-space: nowrap;
}

.product-card__description {
  display: block;
  margin: 0;
  max-width: 62ch;
  font-size: var(--font-size-body-sm);
  line-height: 1.75;
  font-weight: var(--font-weight-regular);
  color: var(--product-card-text);
}

/* =========================================
   Footer CTA button
========================================= */

.product-card__footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--product-card-button);
  color: #ffffff;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-button-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 40px;
  border: 0;
  box-shadow: 0 4px 12px rgba(231, 154, 47, 0.22);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}

.product-card__button-arrow {
  font-size: clamp(0.875rem, 0.84rem + 0.12vw, 0.9375rem);
  line-height: 1;
}

.product-card--link:hover .product-card__button,
.product-card--link:focus .product-card__button,
.product-card--premium:hover .product-card__button {
  background: var(--product-card-button-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(231, 154, 47, 0.28);
}

/* =========================================
   Spacing between cards
========================================= */

.product-grid--stacked > .product-grid__item + .product-grid__item {
  margin-top: 2px;
}

/* =========================================
   Section rhythm control
========================================= */

#qualcat-products {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.study-options-section {
  margin-top: 0;
  padding-top: 24px;
}

@media (min-width: 768px) {
  #qualcat-products {
    padding-bottom: 32px;
  }

  .study-options-section {
    padding-top: 32px;
  }
}

/* =========================================
   study option cards
========================================= */

.study-options-section {
  background: #f3f4f6;
  padding-bottom: 4rem;
}

.study-options-header {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}

.study-options-header h2 {
  margin-bottom: var(--space-sm);
  text-align: center;
}

.study-support-content h2 {
  margin-bottom: var(--space-sm);
}

.study-options-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.study-options-divider span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #3f6df6;
}

.study-options-divider span:nth-child(1) {
  width: 54px;
}

.study-options-divider span:nth-child(2) {
  width: 18px;
}

.study-options-divider span:nth-child(3) {
  width: 8px;
}

.study-options-intro {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--font-size-body-md);
  line-height: var(--line-height-body-md);
  color: #6b7280;
}

.study-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.study-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.study-card-lite,
.study-card-platinum {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.study-card-featured {
  background: linear-gradient(180deg, #3f6df6 0%, #325fe8 100%);
  border: 1px solid #325fe8;
  color: #ffffff;
}

.study-card-featured .study-card-title {
  color: #ffffff;
}

.study-card-featured .study-card-text {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: var(--font-size-body-md);
  line-height: 1.75;
  font-weight: var(--font-weight-medium);
}

.study-card-featured .study-card-list li {
  color: #ffffff;
}

.study-card-featured .study-card-list li::before {
  color: #ffffff;
}

.study-card-body {
  padding: 2rem 1.5rem;
}

.study-card-top {
  min-height: 40px;
  margin-bottom: var(--space-sm);
}

.study-card-title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.625rem, 1.45rem + 0.7vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.study-card-title-accent {
  color: #e39a2d;
}

.study-card-text {
  font-size: var(--font-size-body-md);
  line-height: 1.68;
  color: #4b5563;
  margin-bottom: var(--space-lg);
}

.study-card-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--space-md);
  font-size: var(--font-size-body-md);
  line-height: 1.55;
  color: #374151;
}

.study-card-list li:last-child {
  margin-bottom: 0;
}

.study-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3f6df6;
  font-weight: 700;
}

.study-card-list-featured li {
  color: #ffffff;
}

.study-card-list-featured li::before {
  color: #ffffff;
}

.study-card-badge {
  position: absolute;
  top: 3px;
  right: 6px;
  background: var(--brand-orange);
  color: #ffffff;
  backdrop-filter: blur(6px);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-label-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(231, 154, 47, 0.25);
  border: none;
}

/* =========================================
   Support
========================================= */

.study-support-section {
  margin-top: 5rem;
}

.study-support-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.study-support-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.study-support-content {
  max-width: 520px;
}

.study-support-divider {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.study-support-divider span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #e39a2d;
}

.study-support-divider span:nth-child(1) {
  width: 54px;
}

.study-support-divider span:nth-child(2) {
  width: 18px;
}

.study-support-divider span:nth-child(3) {
  width: 8px;
}

.study-support-intro {
  font-size: var(--font-size-body-md);
  line-height: 1.72;
  color: #4b5563;
  max-width: 460px;
  margin-bottom: var(--space-lg);
}

.study-support-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.study-support-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-height: 54px;
  padding: 0.95rem 1rem;
  color: #374151;
  font-size: var(--font-size-body-sm);
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.study-support-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #3f6df6;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ======================================================
 Course Validation – Layout & Spacing Corrections
 Scoped to section only
 ====================================================== */

.course-validation-section {
padding-top: 3.5rem;
padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
.course-validation-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
}

.course-validation-section .card-body {
padding: 1.75rem;
}

@media (min-width: 992px) {
.course-validation-section .card-body {
  padding: 3rem;
}
}

.course-validation-section .cta-spacer {
margin-top: 4rem;
}

@media (min-width: 992px) {
.course-validation-section .cta-spacer {
  margin-top: 5.5rem;
}
}