/* ============================================================
 * AI4EBITDA - AI CONSULTING PAGE STYLES
 * Used only on ai-consulting.php.
 * ============================================================ */

/* ===================== AI CONSULTING PAGE ===================== */
.ai-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.pillar-card { background: var(--panel); border: 1px solid var(--g3); border-top: 3px solid var(--teal); padding: 2rem; }
.pillar-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.pillar-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.pillar-desc { font-size: .93rem; color: var(--g1); font-weight: 300; line-height: 1.7; }

.process-steps { margin-top: 2rem; }
.ps-row { display: grid; grid-template-columns: 44px 1fr; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--g3); align-items: start; }
.ps-num {
  width: 40px; height: 40px; border: none; background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--void); flex-shrink: 0;
}
.ps-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.ps-desc { font-size: .92rem; color: var(--g1); font-weight: 300; line-height: 1.7; }
.ps-desc-note {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.ps-note {
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--teal);
  background: #d8e8f0;
  color: #0d1520;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
}
.ps-note-cta {
  display: block;
  width: fit-content;
  margin-top: .9rem;
  color: var(--void);
  text-decoration: none;
}

@media (max-width: 900px) {
  .ps-desc-note {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* AI value callout */
.ai-value-section {
  position: relative;
  overflow: hidden;
}
.ai-value-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at top right, rgba(51, 190, 202, .24), transparent 70%);
  pointer-events: none;
}
.ai-value-callout {
  position: relative;
  z-index: 1;
}
.ai-value-callout .eyebrow {
  margin-bottom: 1.4rem;
}
.ai-value-callout .sec-title {
  max-width: 760px;
  margin-bottom: 1.6rem;
  color: var(--white) !important;
  font-size: clamp(1.7rem, 3vw, 2rem);
}
.ai-value-callout .sec-title em {
  color: var(--teal) !important;
  font-weight: 600;
}
.ai-value-callout .body-copy {
  max-width: none;
  margin-bottom: 1.1rem;
  color: var(--white) !important;
}
.ai-value-callout .body-copy strong {
  color: var(--lime);
  font-weight: 600;
}
.ai-value-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 1.8rem 0 2rem;
  border-radius: 4px;
  background: rgba(51, 190, 202, .25);
}
.ai-value-stat {
  padding: 1.5rem 1.3rem;
  background: var(--void);
}
.ai-value-num {
  margin-bottom: .7rem;
  color: var(--teal);
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.ai-value-num-lime {
  color: var(--lime);
}
.ai-value-desc {
  margin-bottom: .8rem;
  color: var(--white);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.55;
}
.ai-value-source {
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.ai-value-close {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(51, 190, 202, .3);
}
.ai-value-close .body-copy {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 700px) {
  .ai-value-stats {
    grid-template-columns: 1fr;
  }
}

/* 3 Ways cards */
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.way-card { background: var(--panel); border: 1px solid var(--g3); border-top: 3px solid var(--g3); padding: 2rem; transition: border-top-color .25s; }
.way-card:hover { border-top-color: var(--lime); }
.way-pct { display: block; font-size: 2.2rem; font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: .2rem; }
.way-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.way-sub { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; font-weight: 700; }
.way-items { border: 1px solid var(--g3); padding: 1rem; margin: 1rem 0; }
.way-items li { font-size: .9rem; color: var(--g1); padding: .3rem 0 .3rem 1.1rem; list-style: none; position: relative; font-weight: 300; border-bottom: 1px solid var(--g3); }
.way-items li:last-child { border-bottom: none; }
.way-items li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: .75rem; }
.way-case { font-size: .9rem; font-style: italic; color: var(--white); font-weight: 300; line-height: 1.6; }

/* Build paths */
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.path-card { background: var(--panel); border: 1px solid var(--g3); padding: 2rem; text-align: center; }
.path-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.path-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.path-desc { font-size: .92rem; color: var(--g2); font-weight: 300; line-height: 1.7; }

/* Workshop box */
.ws-box { background: var(--navy); border: 1px solid var(--g3); padding: 2.2rem; }
.ws-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.ws-outcomes { list-style: none; }
.ws-outcomes li {
  font-size: .95rem; color: var(--g1); font-weight: 300;
  padding: .55rem 0 .55rem 1.3rem; border-bottom: 1px solid var(--g3); position: relative;
}
.ws-outcomes li:last-child { border-bottom: none; }
.ws-outcomes li::before { content: '✓'; position: absolute; left: 0; color: var(--lime); font-size: .8rem; top: .6rem; }
.ws-stats { display: flex; gap: 2rem; margin: 1.8rem 0; flex-wrap: wrap; }
.ws-stat .num { font-size: 2rem; font-weight: 800; color: var(--lime); display: block; line-height: 1; }
.ws-stat .lbl { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g1); font-weight: 600; }
