/* =====================================================
   CONVERSATION PAGE STYLES
   Extends style.css + page.css
   ===================================================== */
@import 'page.css';

/* ─── OPENING ─────────────────────────────────────── */
.conv-opening {
  padding: 96px 0;
  background: var(--ivory);
}
.conv-opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.conv-opening-quote {
  border-left: 2px solid var(--circuit-blue);
  padding: 32px 32px 32px 36px;
  background: var(--white);
  border-top: 2px solid var(--circuit-blue);
  font-family: var(--font-body);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--graphite);
  position: sticky;
  top: 100px;
}
.conv-opening-quote .bracket-mark { margin-bottom: 16px; }
.conv-opening-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--silver);
}

/* ─── QUESTIONS ───────────────────────────────────── */
.conv-questions {
  padding: 96px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.conv-questions .hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.conv-questions .container { position: relative; z-index: 1; }
.conv-qs-intro {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  color: rgba(208,213,221,.65);
  max-width: 680px;
  margin-bottom: 56px;
}
.qs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(21,104,184,.15);
  border: 1px solid rgba(21,104,184,.15);
}
.qs-card {
  background: var(--midnight);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: background .25s var(--ease), border-top-color .25s, box-shadow .25s, transform .2s var(--ease);
}
.qs-card:hover {
  background: var(--onyx);
  border-top-color: var(--champagne);
  box-shadow: 0 8px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(201,165,90,.15);
  transform: translateY(-3px);
}
.qs-icon {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(21,104,184,.2);
  line-height: 1;
  margin-bottom: 12px;
}
.qs-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.qs-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(208,213,221,.6);
}

/* ─── STYLE ───────────────────────────────────────── */
.conv-style {
  padding: 96px 0;
  background: var(--white);
}
.conv-style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.style-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.style-card {
  padding: 28px 0 28px 24px;
  border-bottom: 1px solid var(--steel);
  transition: padding-left .2s var(--ease);
}
.style-card:first-child { border-top: 1px solid var(--steel); }
.style-card:hover { padding-left: 32px; }
.style-rule {
  width: 32px;
  height: 2px;
  background: var(--circuit-blue);
  margin-bottom: 14px;
  transition: width .2s var(--ease);
}
.style-card:hover .style-rule { width: 48px; }
.style-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--onyx);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.style-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--silver);
}

/* ─── RATES ───────────────────────────────────────── */
.conv-rates {
  padding: 80px 0;
  background: var(--graphite);
  border-top: 1px solid rgba(21,104,184,.25);
  border-bottom: 1px solid rgba(21,104,184,.25);
}
.rates-inner {
  max-width: 720px;
}
.rates-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(208,213,221,.75);
  margin-top: 16px;
}

/* ─── FIT ─────────────────────────────────────────── */
.conv-fit {
  padding: 96px 0;
  background: var(--ivory);
}
.fit-intro {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  color: var(--silver);
  max-width: 680px;
  margin-bottom: 56px;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fit-item {
  padding: 8px 0 8px 16px;
  border-left: 2px solid transparent;
  transition: border-color .25s var(--ease), padding-left .2s var(--ease);
}
.fit-item:hover {
  border-left-color: var(--circuit-blue);
  padding-left: 20px;
}
.fit-rule {
  width: 32px;
  height: 2px;
  background: var(--circuit-blue);
  margin-bottom: 16px;
}
.fit-item p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .conv-opening-grid,
  .conv-style-grid { grid-template-columns: 1fr; gap: 48px; }
  .conv-opening-quote { position: static; }
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .qs-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
}
