/* =========================================================
   INSIGHTS PAGE
   ========================================================= */

:root {
  --insights-bg: #f6f8fb;
  --insights-surface: #ffffff;
  --insights-surface-soft: #f1f6f8;
  --insights-text: #193149;
  --insights-text-light: #667789;
  --insights-heading: #10253b;
  --insights-line: #d9e3ec;
  --insights-primary: #138e8d;
  --insights-primary-dark: #0e6e73;
  --insights-shadow: 0 14px 36px rgba(16, 37, 59, 0.06);
  --insights-shadow-soft: 0 8px 24px rgba(16, 37, 59, 0.04);
  --insights-radius-xl: 30px;
  --insights-radius-lg: 22px;
  --insights-shell: 1240px;
}

.insights-page {
  margin: 0;
  background: var(--insights-bg);
  color: var(--insights-text);
}

.insights-page a {
  text-decoration: none;
}

.insights-shell {
  width: min(var(--insights-shell), calc(100% - 40px));
  margin: 0 auto;
}

.insights-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--insights-primary);
}

/* HERO */

.insights-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(19, 142, 141, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fafc 0%, #f4f7fa 100%);
  border-bottom: 1px solid rgba(217, 227, 236, 0.88);
}

.insights-hero__grid {
  gap: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.insights-hero__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--insights-heading);
}

.insights-hero__lead {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.82;
  color: var(--insights-text-light);
}

.insights-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.insights-hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--insights-line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--insights-heading);
  font-size: 13px;
  font-weight: 600;
}

.insights-hero__actions {
  gap: 14px;
  margin-top: 24px;
}

.insights-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--insights-line);
  background: #fff;
  color: var(--insights-heading);
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.insights-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--insights-shadow-soft);
  border-color: rgba(19, 142, 141, 0.34);
}

.insights-btn--primary {
  background: linear-gradient(135deg, var(--insights-primary) 0%, var(--insights-primary-dark) 100%);
  border-color: transparent;
  color: #fff;
}

.insights-btn--primary:hover {
  color: #fff;
}

.insights-hero__panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--insights-radius-xl);
  border: 1px solid rgba(217, 227, 236, 0.96);
  background: #fff;
  box-shadow: var(--insights-shadow);
}

.insights-hero__panel-item {
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(217, 227, 236, 0.9);
  background: #fbfdfe;
}

.insights-hero__panel-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 760;
  color: var(--insights-heading);
}

.insights-hero__panel-item span {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  color: var(--insights-text-light);
}

/* SECTION BASE */

.insights-section {
  padding: 64px 0;
}

.insights-section--soft {
  background: linear-gradient(180deg, #f1f6f8 0%, #f7fafc 100%);
  border-top: 1px solid rgba(217, 227, 236, 0.76);
  border-bottom: 1px solid rgba(217, 227, 236, 0.76);
}

.insights-section__head {
  max-width: 860px;
  margin-bottom: 30px;
}

.insights-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.insights-section__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--insights-heading);
}

.insights-section__head p,
.insights-cta__copy p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.84;
  color: var(--insights-text-light);
}

/* MAIN CARDS */

.insights-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.insights-card {
  border-radius: var(--insights-radius-lg);
  border: 1px solid rgba(217, 227, 236, 0.92);
  background: #fff;
  box-shadow: var(--insights-shadow-soft);
}

.insights-card__body {
  padding: 26px 24px 28px;
}

.insights-card__label {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--insights-primary);
}

.insights-card__body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.24;
  font-weight: 760;
  color: var(--insights-heading);
}

.insights-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--insights-text-light);
}

.insights-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--insights-primary-dark);
  font-size: 14px;
  font-weight: 700;
}

/* QUICK PATH */

.insights-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insights-path-card {
  padding: 24px 22px;
  border-radius: var(--insights-radius-lg);
  border: 1px solid rgba(217, 227, 236, 0.92);
  background: #fff;
  box-shadow: var(--insights-shadow-soft);
}

.insights-path-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 760;
  color: var(--insights-heading);
}

.insights-path-card span {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  color: var(--insights-text-light);
}

/* CTA */

.insights-cta {
  padding: 64px 0 74px;
}

.insights-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(19, 142, 141, 0.96) 0%, rgba(14, 110, 115, 0.98) 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(14, 110, 115, 0.18);
}

.insights-cta__copy {
  max-width: 760px;
}

.insights-cta__copy .insights-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.insights-cta__copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
}

.insights-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.insights-cta__actions .insights-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.insights-cta__actions .insights-btn--primary {
  background: #fff;
  color: var(--insights-primary-dark);
  border-color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .insights-card-grid,
  .insights-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .insights-hero {
    padding: 34px 0 30px;
  }

  .insights-section {
    padding: 52px 0;
  }

  .insights-hero__grid {
    gap: 22px;
  }

  .insights-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .insights-shell {
    width: min(var(--insights-shell), calc(100% - 24px));
  }

  .insights-hero__title {
    font-size: 38px;
  }

  .insights-hero__lead,
  .insights-section__head p,
  .insights-cta__copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .insights-hero__tags {
    gap: 10px;
  }

  .insights-hero__tags span {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .insights-card-grid,
  .insights-path-grid {
    grid-template-columns: 1fr;
  }

  .insights-btn {
    width: 100%;
  }

  .insights-hero__actions {
    gap: 10px;
  }

  .insights-hero__panel {
    padding: 18px;
  }

  .insights-hero__panel-item,
  .insights-card__body,
  .insights-path-card {
    padding: 20px 18px;
  }

  .insights-card__body h3 {
    font-size: 20px;
  }

  .insights-cta {
    padding: 52px 0 60px;
  }
}

@media (max-width: 480px) {
  .insights-hero__title {
    font-size: 34px;
  }

  .insights-cta__box {
    padding: 22px 18px;
    border-radius: 22px;
  }
}