/* ================================================================
   _nclude Capital — Insights / Articles Stylesheet
   Extends style.css. Brand: Navy #1f2a3a | Orange #c67a13
================================================================ */

/* ----------------------------------------------------------------
   INSIGHT HERO
---------------------------------------------------------------- */
.insight-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    url('../images/contact-bg.jpg')
    center center / cover no-repeat;
  overflow: hidden;
}

.insight-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,28,40,.95) 0%, rgba(31,42,58,.90) 60%, rgba(198,122,19,.15) 100%);
  z-index: 0;
}

.insight-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.insight-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.insight-breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.insight-breadcrumb a:hover { color: var(--orange-light); }
.insight-breadcrumb i { font-size: .6rem; }
.insight-breadcrumb span { color: var(--orange-light); }

.insight-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: .75rem 0 1rem;
}

.insight-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.insight-meta span { display: flex; align-items: center; gap: .4rem; }
.insight-meta i { color: var(--orange); font-size: .85rem; }

/* ----------------------------------------------------------------
   ARTICLE LAYOUT
---------------------------------------------------------------- */
.insight-section { padding: 5rem 0; }
.section-off { background: var(--bg-off); }

.insight-container { max-width: 900px; margin: 0 auto; }

.insight-body {
  max-width: 760px;
  margin: 0 auto;
}

.insight-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.insight-body p.light-text,
.insight-section.section-navy p {
  color: rgba(255,255,255,.78);
}

.insight-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.insight-h2.light { color: var(--white); }

/* ----------------------------------------------------------------
   LEAD CALLOUT
---------------------------------------------------------------- */
.insight-callout-lead {
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  background: var(--bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.5rem;
}
.insight-callout-lead p {
  font-family: var(--font-serif);
  font-size: 1.35rem !important;
  font-style: italic;
  color: var(--navy) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ----------------------------------------------------------------
   PROBLEM GRID
---------------------------------------------------------------- */
.insight-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.insight-problem-card {
  background: var(--white);
  border: 1px solid rgba(31,42,58,.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.insight-problem-card:hover { box-shadow: var(--shadow-md); }

.insight-problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(198,122,19,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.insight-problem-icon i { color: var(--orange); font-size: 1.1rem; }

.insight-problem-card h3 {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.insight-problem-card p {
  font-size: .9rem !important;
  color: var(--text-body) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ----------------------------------------------------------------
   PRINCIPLES (HBR SECTION)
---------------------------------------------------------------- */
.insight-principles {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 2rem 0;
}

.insight-principle {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.insight-principle-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  min-width: 48px;
  padding-top: .1rem;
}

.insight-principle-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.insight-principle-body p {
  font-size: .95rem !important;
  color: rgba(255,255,255,.72) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* ----------------------------------------------------------------
   QUOTE BLOCK
---------------------------------------------------------------- */
.insight-quote-block {
  margin: 2.5rem 0 0;
}
.insight-quote-block blockquote {
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.insight-quote-block blockquote p {
  font-family: var(--font-serif);
  font-size: 1.2rem !important;
  font-style: italic;
  color: rgba(255,255,255,.9) !important;
  margin-bottom: .75rem !important;
  line-height: 1.65 !important;
}
.insight-quote-block blockquote cite {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* ----------------------------------------------------------------
   FRAMEWORK VISUAL
---------------------------------------------------------------- */
.framework-visual {
  position: relative;
  margin: 2.5rem auto;
  max-width: 860px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.framework-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(198,122,19,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.framework-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(198,122,19,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Center badge */
.fw-center {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.fw-center-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(198,122,19,.2), 0 0 0 16px rgba(198,122,19,.08);
  text-align: center;
  padding: 1rem;
}

.fw-center-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.fw-center-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: .25rem;
}

/* Quadrants grid */
.fw-quadrants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.fw-quad {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background var(--transition);
}
.fw-quad:hover { background: rgba(255,255,255,.1); }

.fw-quad-icon {
  width: 40px; height: 40px;
  background: rgba(198,122,19,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .875rem;
}
.fw-quad-icon i { color: var(--orange); font-size: 1rem; }

.fw-quad-title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
}

.fw-quad-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.fw-quad-list li {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  padding-left: .875rem;
  position: relative;
  line-height: 1.5;
}
.fw-quad-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

/* Top-left accent */
.fw-quad-tl { border-top: 3px solid var(--orange); }
.fw-quad-tr { border-top: 3px solid rgba(198,122,19,.5); }
.fw-quad-bl { border-top: 3px solid rgba(198,122,19,.5); }
.fw-quad-br { border-top: 3px solid rgba(198,122,19,.3); }

/* ----------------------------------------------------------------
   ENGAGEMENT STEPS
---------------------------------------------------------------- */
.insight-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
}

.insight-steps::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(198,122,19,.3);
}

.insight-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.insight-step-num {
  width: 46px; height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(198,122,19,.2);
}

.insight-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  padding-top: .75rem;
}
.insight-step-body p {
  font-size: .95rem !important;
  color: rgba(255,255,255,.72) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* ----------------------------------------------------------------
   AUDIENCE CARDS
---------------------------------------------------------------- */
.insight-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.insight-audience-card {
  background: var(--white);
  border: 1px solid rgba(31,42,58,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--orange);
}

.insight-audience-icon {
  width: 52px; height: 52px;
  background: rgba(198,122,19,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.insight-audience-icon i { color: var(--orange); font-size: 1.3rem; }

.insight-audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.insight-audience-card > p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.insight-audience-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.insight-audience-list li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.insight-audience-list li i { color: var(--orange); font-size: .8rem; }

/* ----------------------------------------------------------------
   BEFORE / AFTER
---------------------------------------------------------------- */
.insight-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 2rem 0;
}

.insight-ba-col {
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.insight-ba-before {
  background: rgba(192,57,43,.06);
  border: 1px solid rgba(192,57,43,.15);
}
.insight-ba-after {
  background: rgba(39,174,96,.06);
  border: 1px solid rgba(39,174,96,.15);
}

.insight-ba-col h3 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.insight-ba-before h3 { color: #c0392b; }
.insight-ba-after h3 { color: #2d7a4f; }
.insight-ba-before h3 i { color: #c0392b; }
.insight-ba-after h3 i { color: #2d7a4f; }

.insight-ba-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.insight-ba-col ul li {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.55;
  padding-left: .875rem;
  position: relative;
}
.insight-ba-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .6em;
  width: 5px; height: 5px;
  border-radius: 50%;
}
.insight-ba-before ul li::before { background: rgba(192,57,43,.5); }
.insight-ba-after ul li::before { background: rgba(39,174,96,.5); }

.insight-ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}
.insight-ba-divider i {
  font-size: 1.5rem;
  color: var(--orange);
  background: rgba(198,122,19,.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.insight-cta-section {
  position: relative;
  padding: 7rem 0;
  background:
    url('../images/contact-bg.jpg')
    center center / cover no-repeat;
  text-align: center;
}

.insight-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,28,40,.94) 0%, rgba(31,42,58,.90) 100%);
  z-index: 0;
}

.insight-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.insight-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: .75rem 0 1.25rem;
}

.insight-cta-body {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.insight-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.insight-cta-note {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.insight-cta-note i { color: var(--orange); }

/* ----------------------------------------------------------------
   INSIGHTS INDEX PAGE
---------------------------------------------------------------- */
.insights-index-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: var(--navy-deep);
}

.insights-index-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(31,42,58,.06);
}
.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.insight-card-body { padding: 2rem; }

.insight-card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

.insight-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .75rem;
}

.insight-card-excerpt {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(31,42,58,.08);
  font-size: .78rem;
  color: var(--gray);
}

.insight-card-read-more {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}
.insight-card:hover .insight-card-read-more { gap: .6rem; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 768px) {
  .insight-problem-grid { grid-template-columns: 1fr; }
  .insight-audience-grid { grid-template-columns: 1fr; }
  .fw-quadrants { grid-template-columns: 1fr; }
  .insight-before-after {
    grid-template-columns: 1fr;
  }
  .insight-ba-divider {
    padding-top: 0;
    transform: rotate(90deg);
  }
  .insight-hero { padding: 7rem 0 3.5rem; }
  .insight-cta-section { padding: 5rem 0; }
  .framework-visual { padding: 2rem 1.25rem; }
  .fw-center-label { width: 120px; height: 120px; }
}
