/* ============================================================
   StreamWays: shared styles
   ============================================================ */

:root {
  --bg: #fffcf6;
  --paper: #fff8ec;
  --surface: #ffffff;
  --ink: #14201d;
  --ink-soft: #52605c;
  --ink-dim: #8a938f;
  --border: #e7e0d0;

  --teal: #0f9b8e;
  --teal-dark: #0b7a70;
  --teal-tint: #e3f5f2;
  --coral: #ff6b4a;
  --coral-dark: #e2532f;
  --coral-tint: #ffe9e2;
  --gold: #ffb703;
  --gold-tint: #fff2d6;
  --navy: #10233b;
  --navy-soft: #1a3455;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 44px rgba(16,35,59,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }
@media (max-width: 700px) { section { padding: 52px 0; } }

.text-teal { color: var(--teal-dark); }
.text-coral { color: var(--coral-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-tint);
  border: 1px solid #c9ebe6;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow.coral { color: var(--coral-dark); background: var(--coral-tint); border-color: #ffd2c2; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.section-head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.03rem; line-height: 1.65; margin: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap; font-family: "DM Sans", sans-serif;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); }
.btn-outline { color: var(--navy); border-color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===== Header ===== */
header.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,252,246,0.92); backdrop-filter: blur(10px); border-bottom: 2px solid var(--navy); }
.header-inner { max-width: 1160px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.3rem; color: var(--navy); }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-mark svg { width: 21px; height: 21px; }
nav.main-nav { display: flex; align-items: center; gap: 26px; }
nav.main-nav a { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); position: relative; padding: 4px 0; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--navy); }
nav.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: var(--coral); border-radius: 2px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }
@media (max-width: 940px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 2px solid var(--navy); background: transparent; cursor: pointer; }
  .nav-toggle svg { width: 20px; height: 20px; }
  nav.main-nav.mobile-open { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 2px solid var(--navy); padding: 12px 24px 20px; }
  nav.main-nav.mobile-open a { padding: 10px 0; width: 100%; }
}

/* ===== Page banner ===== */
.page-banner { background: var(--paper); padding: 60px 0 46px; border-bottom: 2px solid var(--navy); }
.page-banner .wrap { text-align: center; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-dim); margin-bottom: 16px; font-weight: 600; }
.breadcrumb a { color: var(--teal-dark); font-weight: 700; }
.page-banner h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.page-banner p.lead { color: var(--ink-soft); max-width: 620px; margin: 0 auto; font-size: 1.03rem; line-height: 1.65; }

/* ===== Home hero ===== */
.hero { position: relative; overflow: hidden; padding: 88px 0 80px; background: var(--paper); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(0px); opacity: 0.9; z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1.1; margin-bottom: 20px; }
.hero p.lead { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.65; max-width: 520px; margin: 0 0 30px; }
@media (max-width: 900px) { .hero p.lead { margin: 0 auto 30px; } }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
@media (max-width: 900px) { .hero-ctas { justify-content: center; } }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; color: var(--ink-dim); font-size: 0.85rem; font-weight: 700; }
@media (max-width: 900px) { .hero-badges { justify-content: center; } }
.hero-badges span { display: flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 16px; height: 16px; color: var(--teal-dark); flex-shrink: 0; }
.hero-art { position: relative; aspect-ratio: 1/1; }
.hero-art .shape { position: absolute; border-radius: 50%; }
.hero-card { position: relative; z-index: 2; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.hero-card .hc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: #9fb3cc; font-weight: 700; margin-bottom: 8px; }
.hero-card .hc-num { font-family: "Fraunces", serif; font-size: 2.2rem; font-weight: 600; margin-bottom: 4px; }
.hero-card .hc-desc { font-size: 0.85rem; color: #c3d1e2; line-height: 1.5; }

/* ===== Stat strip ===== */
.stats-bar { background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; color: #fff; }
.stat-item .num { font-family: "Fraunces", serif; font-size: 1.8rem; font-weight: 600; }
.stat-item .num.coral { color: #ffab8f; }
.stat-item .num.gold { color: #ffd873; }
.stat-item .num.teal { color: #6fe3d4; }
.stat-item .lbl { font-size: 0.8rem; color: #9fb3cc; margin-top: 6px; font-weight: 600; line-height: 1.4; }

/* ===== Cards ===== */
.card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 26px; }

/* ===== Feature grid ===== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 24px 20px; transition: transform .15s, border-color .15s; }
.feature-card:hover { transform: translateY(-3px); border-color: var(--teal); }
.feature-card .icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; background: var(--teal-tint); }
.feature-card .icon.coral { background: var(--coral-tint); }
.feature-card .icon.gold { background: var(--gold-tint); }
.feature-card .icon svg { width: 21px; height: 21px; color: var(--teal-dark); }
.feature-card .icon.coral svg { color: var(--coral-dark); }
.feature-card .icon.gold svg { color: #b8790a; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { color: var(--ink-soft); font-size: 0.87rem; margin: 0; line-height: 1.55; }

/* ===== Platform chips ===== */
.platform-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.platform-chip { padding: 11px 20px; border-radius: 999px; background: var(--surface); border: 2px solid var(--border); font-weight: 700; font-size: 0.88rem; color: var(--ink-soft); }

/* ===== Platform logo badges ===== */
.platform-logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 900px) { .platform-logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px) { .platform-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .platform-logo-grid { grid-template-columns: repeat(2, 1fr); } }
.platform-logo { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 20px 10px 16px; text-align: center; transition: transform .15s, border-color .15s; }
.platform-logo:hover { transform: translateY(-3px); border-color: var(--teal); }
.pl-badge { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-family: "Fraunces", serif; font-weight: 700; font-size: 1.15rem; color: #fff; background: var(--pl-color, var(--navy)); flex-shrink: 0; }
.pl-badge.dark-text { color: #17140a; }
.pl-name { font-size: 0.76rem; font-weight: 700; color: var(--ink-soft); line-height: 1.3; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { position: relative; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 28px 22px 24px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; margin-bottom: 16px; font-family: "Fraunces", serif; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.87rem; margin: 0; line-height: 1.55; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border: 3px solid var(--coral); box-shadow: var(--shadow); }
.price-tag { position: absolute; top: -15px; left: 28px; background: var(--coral); color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em; padding: 6px 14px; border-radius: 999px; }
.price-card .plan-name { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.3rem; margin: 6px 0 6px; }
.price-card .plan-desc { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 20px; min-height: 40px; }
.price-card .price { font-family: "Fraunces", serif; font-size: 2.3rem; font-weight: 600; }
.price-card .price span { font-family: "DM Sans", sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); }
.price-card .price-note { font-size: 0.8rem; color: var(--ink-dim); margin-bottom: 22px; }
.price-features { list-style: none; margin: 0 0 26px; flex-grow: 1; }
.price-features li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--ink-soft); }
.price-features li:last-child { border-bottom: none; }
.price-features svg { width: 15px; height: 15px; margin-top: 3px; color: var(--teal-dark); flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details.faq-item { border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; background: var(--surface); }
details.faq-item summary { cursor: pointer; font-weight: 700; font-size: 0.98rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .chev { transition: transform .2s; color: var(--ink-dim); flex-shrink: 0; }
details.faq-item[open] summary .chev { transform: rotate(180deg); }
details.faq-item p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.65; margin: 12px 0 0; }

/* ===== CTA band ===== */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 64px 24px; border-radius: var(--radius-lg); margin: 0 24px; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; color: #fff; }
.cta-band p { color: #c3d1e2; max-width: 480px; margin: 0 auto 28px; }
.cta-band .btn-coral { padding: 14px 28px; font-size: 1rem; }

/* ===== Forms ===== */
.form-card { max-width: 720px; margin: 0 auto; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
@media (max-width: 600px) { .form-card { padding: 26px 20px; } }
.form-note { display: flex; gap: 10px; background: var(--teal-tint); border: 2px solid #c9ebe6; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.85rem; color: var(--teal-dark); margin-bottom: 28px; line-height: 1.55; }
.form-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; color: var(--teal-dark); }
.form-note strong { color: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea { padding: 11px 13px; border: 2px solid var(--border); border-radius: 8px; font-size: 0.92rem; font-family: inherit; color: var(--ink); background: var(--bg); width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 90px; }
.form-disclaimer { font-size: 0.78rem; color: var(--ink-dim); margin-top: 14px; text-align: center; line-height: 1.5; }

/* ===== Legal pages ===== */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.75; font-family: "DM Sans", sans-serif; }
.legal-content ul { margin: 10px 0 16px 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-meta { color: var(--ink-dim); font-size: 0.85rem; margin-bottom: 30px; }
.legal-callout { display: flex; gap: 12px; background: var(--gold-tint); border: 2px solid #ffdf9e; border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 36px; font-size: 0.87rem; color: #7a5300; line-height: 1.6; }
.legal-callout svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: #b8790a; }
.legal-callout strong { color: #5c3f00; }

/* ===== Trend bars ===== */
.trend-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.trend-row:last-child { border-bottom: none; }
.trend-name { width: 160px; flex-shrink: 0; font-weight: 700; font-size: 0.9rem; }
.trend-track { flex-grow: 1; height: 14px; background: var(--paper); border-radius: 999px; overflow: hidden; border: 1px solid var(--border); }
.trend-fill { height: 100%; border-radius: 999px; }
.trend-tag { width: 90px; flex-shrink: 0; text-align: right; font-size: 0.82rem; font-weight: 800; }
.trend-tag.up { color: var(--teal-dark); }
.trend-tag.down { color: var(--coral-dark); }

/* ===== Footer ===== */
footer.site-footer { background: var(--navy); color: #c3d1e2; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
footer .brand { color: #fff; }
footer .foot-desc { color: #9fb3cc; font-size: 0.87rem; line-height: 1.6; max-width: 280px; margin: 14px 0 18px; }
footer h5 { color: #fff; font-family: "DM Sans", sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a { font-size: 0.88rem; color: #c3d1e2; }
footer ul a:hover { color: #fff; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 36px; height: 36px; border-radius: 10px; border: 2px solid #2a4262; display: flex; align-items: center; justify-content: center; color: #c3d1e2; }
.foot-social a:hover { border-color: #6fe3d4; color: #fff; }
.foot-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid #2a4262; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #7d90aa; }
.footer-bottom a { color: #7d90aa; }
.footer-bottom a:hover { color: #c3d1e2; }

/* ===== Footer: compact single-row variant (contact page) ===== */
.footer-mini { padding: 44px 0 26px; }
.footer-mini-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 26px; border-bottom: 1px solid #2a4262; }
.footer-mini-links { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.footer-mini-links a { font-size: 0.85rem; font-weight: 700; color: #c3d1e2; }
.footer-mini-links a:hover { color: #fff; }
.footer-mini-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #7d90aa; padding-top: 22px; }
.footer-mini-bottom a { color: #7d90aa; }
.footer-mini-bottom a:hover { color: #c3d1e2; }

/* ===== Header: Sign In link ===== */
.signin-link { font-size: 0.88rem; font-weight: 700; color: var(--ink-soft); }
.signin-link:hover { color: var(--navy); }
@media (max-width: 480px) { .signin-link { display: none; } }

/* ===== Apply Now wizard ===== */
.apply-shell { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; max-width: 1040px; margin: 0 auto; align-items: start; }
@media (max-width: 860px) { .apply-shell { grid-template-columns: 1fr; } }
.apply-card { margin: 0; }

.apply-progress { display: flex; align-items: flex-start; margin-bottom: 34px; }
.apply-step-ind { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.apply-step-ind .ind-num { width: 34px; height: 34px; border-radius: 50%; background: var(--paper); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; color: var(--ink-dim); font-family: "Fraunces", serif; transition: background .2s, border-color .2s, color .2s; }
.apply-step-ind .ind-label { font-size: 0.72rem; font-weight: 700; color: var(--ink-dim); text-align: center; white-space: nowrap; }
.apply-step-ind.active .ind-num { background: var(--coral); border-color: var(--coral); color: #fff; }
.apply-step-ind.active .ind-label { color: var(--navy); }
.apply-step-ind.done .ind-num { background: var(--teal); border-color: var(--teal); color: #fff; }
.apply-step-ind.done .ind-label { color: var(--navy); }
.apply-progress-line { flex-grow: 1; height: 2px; background: var(--border); margin: 16px 8px 0; }
@media (max-width: 480px) { .apply-step-ind .ind-label { display: none; } }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; gap: 12px; }
.form-step-nav .btn { flex-shrink: 0; }

.upload-note { display: flex; gap: 10px; background: var(--gold-tint); border: 2px solid #ffdf9e; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.85rem; color: #7a5300; margin-bottom: 22px; line-height: 1.55; }
.upload-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; color: #b8790a; }
.upload-note strong { color: #5c3f00; }

.file-field input[type="file"] { padding: 9px; border: 2px dashed var(--border); border-radius: 8px; font-size: 0.83rem; background: var(--paper); width: 100%; font-family: inherit; color: var(--ink-soft); }
.file-hint { font-size: 0.78rem; color: var(--ink-dim); margin-top: 4px; }

.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; margin: 18px 0 22px; cursor: pointer; }
.checkbox-field input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--teal); }
.checkbox-field a { color: var(--teal-dark); font-weight: 700; }

.apply-sidebar .card h3 { font-family: "Fraunces", serif; font-size: 1.02rem; margin-bottom: 8px; }
.apply-sidebar .card p { color: var(--ink-soft); font-size: 0.87rem; margin: 0; line-height: 1.6; }
.apply-next-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.apply-next-steps li { display: flex; gap: 12px; align-items: flex-start; }
.apply-next-steps .ns-num { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; font-family: "Fraunces", serif; }
.apply-next-steps div { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.5; }
.apply-next-steps strong { color: var(--navy); display: block; margin-bottom: 2px; }
