/* ═══════════════════════════════════════════════
   INJECTIONS & ADD-ONS PAGE STYLES
   Brand: charcoal #222326, electric blue #358fe7
   Fonts: Oswald (headings), Raleway (body)
═══════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────── */
.ia-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #191b1f 0%, #222326 40%, #1a2535 100%);
  padding: 130px 24px 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(53,143,231,0.2);
}
.ia-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(53,143,231,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ia-hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.ia-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #358fe7;
  border: 1px solid rgba(53,143,231,0.4);
  border-radius: 2px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.ia-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ia-hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #a0a8b4;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}
.ia-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.ia-stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.ia-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #358fe7;
  line-height: 1;
}
.ia-stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #6b7280;
  text-transform: uppercase;
  margin-top: 4px;
}
.ia-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}
.ia-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Intro Banner ──────────────────────────── */
.ia-banner {
  background: rgba(53,143,231,0.08);
  border-top: 1px solid rgba(53,143,231,0.2);
  border-bottom: 1px solid rgba(53,143,231,0.2);
  padding: 18px 24px;
}
.ia-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.ia-banner-icon { font-size: 1.4rem; flex-shrink: 0; }
.ia-banner-inner p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: #a0a8b4;
  margin: 0;
  line-height: 1.5;
}
.ia-banner-inner strong { color: #fff; }

/* ── Sections ──────────────────────────────── */
.ia-section {
  background: #1a1c20;
  padding: 72px 24px 80px;
}
.ia-section--dark {
  background: #141618;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ia-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.ia-section-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #358fe7;
  border: 1px solid rgba(53,143,231,0.35);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.ia-badge--rx {
  color: #e05c5c;
  border-color: rgba(224,92,92,0.35);
}
.ia-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ia-section-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ── Card Grid ─────────────────────────────── */
.ia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.ia-grid--meds {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* ── Cards ─────────────────────────────────── */
.ia-card {
  background: #1e2128;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.ia-card:hover {
  border-color: rgba(53,143,231,0.3);
  transform: translateY(-2px);
}
.ia-card--featured {
  background: linear-gradient(135deg, #1a2535 0%, #1e2840 100%);
  border-color: rgba(53,143,231,0.3);
}
.ia-card--featured:hover {
  border-color: rgba(53,143,231,0.6);
}
.ia-card--special {
  background: #1e2128;
  border-color: rgba(224,92,92,0.25);
}
.ia-card--special:hover {
  border-color: rgba(224,92,92,0.5);
}

/* ── Card Top (name + price) ──────────────── */
.ia-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.ia-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  flex: 1;
}
.ia-card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #358fe7;
  white-space: nowrap;
  flex-shrink: 0;
}
.ia-card-price-multi {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.ia-card-price-multi span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #358fe7;
  white-space: nowrap;
}

/* ── Card Badge ────────────────────────────── */
.ia-card-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(53,143,231,0.12);
  border: 1px solid rgba(53,143,231,0.3);
  color: #358fe7;
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 10px;
  width: fit-content;
}
.ia-badge--warn {
  background: rgba(224,92,92,0.1);
  border-color: rgba(224,92,92,0.35);
  color: #e07070;
}

/* ── Card Description ──────────────────────── */
.ia-card-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  color: #8d9aaa;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ── Benefits List ─────────────────────────── */
.ia-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ia-card-benefits li,
.ia-card-more li {
  font-family: 'Raleway', sans-serif;
  font-size: 0.825rem;
  color: #a0a8b4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.ia-card-benefits li::before,
.ia-card-more li::before {
  content: '✓';
  color: #358fe7;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Toggle Button ─────────────────────────── */
.ia-card-toggle {
  background: none;
  border: none;
  color: #4a5568;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.ia-card-toggle:hover { color: #358fe7; }
.ia-toggle-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

/* ── Expanded Benefits ─────────────────────── */
.ia-card-more {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: iaFadeIn 0.2s ease;
}
@keyframes iaFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Card Note ─────────────────────────────── */
.ia-card-note {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── CTA Strip ─────────────────────────────── */
.ia-cta-strip {
  background: linear-gradient(135deg, #0f1824 0%, #1a2535 100%);
  border-top: 1px solid rgba(53,143,231,0.2);
  border-bottom: 1px solid rgba(53,143,231,0.1);
  padding: 60px 24px;
}
.ia-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.ia-cta-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.ia-cta-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 420px;
}
.ia-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Disclaimer ────────────────────────────── */
.ia-disclaimer {
  background: #111214;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ia-disclaimer p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: #3d4452;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Nav Active ────────────────────────────── */
.nav-link--active {
  color: #358fe7 !important;
  font-weight: 600;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 680px) {
  .ia-hero { padding: 110px 16px 60px; }
  .ia-stat { padding: 0 18px; }
  .ia-grid,
  .ia-grid--meds { grid-template-columns: 1fr; }
  .ia-cta-inner { flex-direction: column; text-align: center; }
  .ia-cta-actions { justify-content: center; }
  .ia-cta-text p { max-width: 100%; }
  .ia-hero-stats { flex-wrap: wrap; gap: 16px; }
  .ia-stat-divider { display: none; }
}
