/* ── Page-specific styles for /therapy-without-insurance ─── */

/* Crisis Banner */
.twi-crisis-banner {
  background: #c0392b;
  color: white;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.twi-crisis-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.twi-crisis-icon { font-size: 18px; flex-shrink: 0; }
.twi-crisis-text {
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.twi-crisis-text a { color: #fff; text-decoration: underline; font-weight: 700; }
.twi-crisis-text strong { color: #fff; }

/* Hero */
.twi-hero {
  padding: 120px 24px 72px;
  text-align: center;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.twi-hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
  font-weight: 600;
}
.twi-hero-h1 {
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}
.twi-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Container */
.twi-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.twi-section {
  padding: 56px 0;
}
.twi-section--alt {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  margin: 24px 0;
}
.twi-section h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.twi-section h3 {
  font-size: 19px;
  color: #fff;
  margin: 32px 0 14px;
  font-weight: 600;
}
.twi-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.twi-section ul, .twi-section ol {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  padding-left: 24px;
  margin-bottom: 20px;
}
.twi-section li { margin-bottom: 8px; }
.twi-section strong { color: #fff; }

/* Cost Table */
.twi-cost-table {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.twi-cost-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  padding: 10px 20px;
  background: rgba(245,158,11,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f59e0b;
}
.twi-cost-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
}
.twi-cost-row:last-child { border-bottom: none; }
.twi-cost-row span:last-child {
  color: #f59e0b;
  font-weight: 600;
}

/* Disclaimer Box */
.twi-disclaimer-box {
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.28);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.twi-disclaimer-icon { font-size: 22px; flex-shrink: 0; }
.twi-disclaimer-box p { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; line-height: 1.6; }

/* CTA Box */
.twi-cta-box {
  text-align: center;
  padding: 32px;
  margin: 32px 0 0;
  background: rgba(245,158,11,0.07);
  border-radius: 18px;
  border: 1px solid rgba(245,158,11,0.18);
}
.twi-btn-primary {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.twi-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.28);
}
.twi-cta-sub { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 12px; }

/* Resource Grid */
.twi-resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.twi-resource-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.2s;
}
.twi-resource-card:hover { border-color: rgba(245,158,11,0.4); }
.twi-resource-icon { font-size: 28px; margin-bottom: 10px; }
.twi-resource-card h3 { font-size: 16px; color: #fff; margin: 0 0 8px; font-weight: 600; }
.twi-resource-card p { color: rgba(255,255,255,0.68); font-size: 13px; line-height: 1.5; margin: 0 0 12px; }
.twi-resource-card a { color: #f59e0b; font-weight: 600; font-size: 13px; text-decoration: none; }

/* Escalation List */
.twi-escalation-list { margin: 24px 0; }
.twi-escalation-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  margin-bottom: 12px;
  border-left: 3px solid #f59e0b;
}
.twi-escalation-marker { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.twi-escalation-item strong { color: #fff; display: block; margin-bottom: 6px; }
.twi-escalation-item p { color: rgba(255,255,255,0.68); font-size: 13px; line-height: 1.5; margin: 0; }

/* FAQ */
.twi-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.twi-faq-item:last-child { border-bottom: none; }
.twi-faq-item h3 {
  font-size: 17px;
  color: #f59e0b;
  font-weight: 600;
  margin: 0 0 12px;
}
.twi-faq-item p { color: rgba(255,255,255,0.76); line-height: 1.65; margin: 0; }

/* Crosslinks */
.twi-crosslinks-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 56px;
}
.twi-crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.twi-crosslink-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.15s;
}
.twi-crosslink-card:hover {
  border-color: rgba(245,158,11,0.45);
  transform: translateY(-2px);
}
.twi-crosslink-icon { font-size: 24px; flex-shrink: 0; }
.twi-crosslink-content h4 { font-size: 15px; color: #fff; margin: 0 0 5px; font-weight: 600; }
.twi-crosslink-content p { font-size: 12px; color: rgba(255,255,255,0.58); margin: 0; line-height: 1.4; }

/* Mobile */
@media (max-width: 640px) {
  .twi-section--alt { border-radius: 12px; margin: 16px 0; }
  .twi-resource-grid { grid-template-columns: 1fr; }
  .twi-crosslinks-grid { grid-template-columns: 1fr; }
  .twi-cost-header,
  .twi-cost-row { grid-template-columns: 1fr; }
  .twi-cost-row span:last-child { color: #f59e0b; font-weight: 600; }
  .twi-hero { padding: 100px 20px 60px; }
}