/* ============================================================
   CTSOsupport.org — Buena Career Alliance
   Main Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   1. Google Fonts Import
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ------------------------------------------------------------
   2. CSS Custom Properties (Brand Tokens)
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --navy:           #0B1D3A;
  --orange:         #EE7023;
  --gold:           #F5AF33;
  --vibrant-orange: #F1871F;
  --deep-orange:    #E93F24;
  --crimson:        #D52134;
  --white:          #FFFFFF;

  /* UI Colors */
  --light-bg:   #F5F7FA;
  --mid-border: #E0E6EE;
  --text-dark:  #0B1D3A;
  --text-body:  #2E3D52;
  --text-muted: #6B7A90;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing */
  --section-pad: 5rem 1.5rem;
  --card-radius: 10px;
  --btn-radius:  6px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 20px rgba(11,29,58,0.12);
}

/* ------------------------------------------------------------
   3. Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ------------------------------------------------------------
   4. Typography Helpers
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem);  font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem);  font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0.75rem auto 0;
}

.text-center { text-align: center; }

/* ------------------------------------------------------------
   5. Gradient Accent Bar (thin top rule on sections)
   ------------------------------------------------------------ */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 50%, var(--vibrant-orange) 100%);
}

/* ------------------------------------------------------------
   6. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

/* Primary: orange fill */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--vibrant-orange);
  border-color: var(--vibrant-orange);
  color: var(--white);
}

/* Secondary: navy outline */
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* Ghost: white outline (for dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}

/* Small size modifier */
.btn-sm {
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ------------------------------------------------------------
   7. Navigation
   ------------------------------------------------------------ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--mid-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo img {
  height: 44px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(238, 112, 35, 0.07);
  text-decoration: none;
}

/* CTA in nav */
.nav-links .btn {
  margin-left: 0.5rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ------------------------------------------------------------
   8. Hero Section
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162d52 100%);
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(238,112,35,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,175,51,0.10) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero .subheadline {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* Hero on interior pages (lighter) */
.hero-interior {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3360 100%);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}

.hero-interior .hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-interior h1 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hero-interior p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-interior .subheadline {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-interior .subheadline a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.hero-interior .subheadline a:hover {
  color: var(--white);
  text-decoration: underline;
}

.hero-interior .hero-tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-interior .hero-links {
  margin-top: 1.25rem;
  font-size: 0.88rem;
}

.hero-interior .hero-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  text-decoration: none;
}

.hero-interior .hero-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.hero-interior .hero-links span {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.5rem;
}

.hero-interior .btn-group {
  gap: 0.65rem;
}

/* Product logo on dark hero backgrounds */
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 1.25rem;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: 14px;
}

.logo-badge img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

/* WorkReady pitch highlights */
.wr-pitch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.wr-pitch-card {
  background: var(--white);
  border: 1px solid var(--mid-border);
  border-left: 4px solid var(--orange);
  border-radius: var(--card-radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.wr-pitch-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.wr-pitch-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .wr-pitch-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   9. Section Wrappers
   ------------------------------------------------------------ */
.section {
  padding: var(--section-pad);
}

.section-alt {
  padding: var(--section-pad);
  background: var(--light-bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.75rem;
}

/* ------------------------------------------------------------
   10. Cards
   ------------------------------------------------------------ */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--mid-border);
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Orange top accent on cards */
.card-accent {
  border-top: 4px solid var(--orange);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p  { color: var(--text-muted); font-size: 0.95rem; }

/* ------------------------------------------------------------
   11. Pillar / Feature Cards (Home)
   ------------------------------------------------------------ */
.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mid-border);
  line-height: 1;
  margin-bottom: 0.6rem;
}

/* ------------------------------------------------------------
   12. Featured Tool Section (Home)
   ------------------------------------------------------------ */
.featured-tool {
  background: linear-gradient(135deg, var(--navy) 0%, #162d52 100%);
  padding: var(--section-pad);
  color: var(--white);
}

.featured-tool-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-tool h2 { color: var(--white); margin-bottom: 1rem; }
.featured-tool p  { color: rgba(255,255,255,0.80); margin-bottom: 1.5rem; }

.featured-tool-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.featured-tool-visual img {
  max-width: 220px;
  margin: 0 auto 1.25rem;
}

.badge-free {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   13. WorkReady Page — Feature Cards (5 across)
   ------------------------------------------------------------ */
.feature-card {
  background: var(--white);
  border: 1px solid var(--mid-border);
  border-top: 4px solid var(--orange);
  border-radius: var(--card-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ------------------------------------------------------------
   14. Beta Banner
   ------------------------------------------------------------ */
.beta-banner {
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.beta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.beta-banner p  { color: rgba(255,255,255,0.90); max-width: 600px; margin: 0 auto 1.5rem; }

/* ------------------------------------------------------------
   15. Advisor Support — Support Areas
   ------------------------------------------------------------ */
.support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.support-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--mid-border);
  border-left: 5px solid var(--orange);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.support-item-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.support-item h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.support-item p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ------------------------------------------------------------
   16. About Page — Mission / Founder
   ------------------------------------------------------------ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.founder-card {
  background: var(--light-bg);
  border: 1px solid var(--mid-border);
  border-radius: var(--card-radius);
  padding: 2rem;
}

.founder-card blockquote {
  font-size: 1.05rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  border-left: 4px solid var(--orange);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.founder-card cite {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}

.founder-card cite span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.values-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

.values-list li::before {
  content: '✓';
  background: var(--orange);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   17. Contact Form
   ------------------------------------------------------------ */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--mid-border);
  border-radius: 12px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--mid-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238,112,35,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem;
}

/* ------------------------------------------------------------
   18. Thank You Page
   ------------------------------------------------------------ */
.thankyou-section {
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--light-bg);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.thankyou-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.thankyou-box h1 { margin-bottom: 0.75rem; }
.thankyou-box p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 1.75rem;
}

.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 0.75rem;
  /* Invert dark logo for white display */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.footer-brand a {
  color: var(--gold);
  font-weight: 600;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.footer-col ul li { margin-bottom: 0.45rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
  text-align: center;
}

/* ------------------------------------------------------------
   20. Utility — Divider / Spacer
   ------------------------------------------------------------ */
.divider {
  height: 1px;
  background: var(--mid-border);
  margin: 2rem 0;
}

/* Info box */
.info-box {
  background: rgba(245, 175, 51, 0.10);
  border: 1px solid rgba(245, 175, 51, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-size: 0.93rem;
  color: var(--text-body);
}

/* ------------------------------------------------------------
   21. Responsive — Tablet (≤ 900px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .card-grid-3  { grid-template-columns: 1fr 1fr; }
  .card-grid-5  { grid-template-columns: repeat(3, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .support-list { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .featured-tool-inner { grid-template-columns: 1fr; gap: 2rem; }
  .featured-tool-visual { max-width: 440px; margin: 0 auto; }
}

/* ------------------------------------------------------------
   22. Responsive — Mobile (≤ 640px)
   ------------------------------------------------------------ */
@media (max-width: 640px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .card-grid-3  { grid-template-columns: 1fr; }
  .card-grid-2  { grid-template-columns: 1fr; }
  .card-grid-5  { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--mid-border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.1rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--mid-border);
    font-size: 0.95rem;
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links .btn { margin-left: 0; margin-top: 0.5rem; text-align: center; }

  /* Hero adjustments */
  .hero       { padding: 3.5rem 1.25rem 3rem; }
  .btn-group  { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }

  .card-grid-5 { grid-template-columns: 1fr; }

  .form-wrap { padding: 1.75rem 1.25rem; }
}

/* ------------------------------------------------------------
   23. Transparency Page — Status & Document Cards
   ------------------------------------------------------------ */
.btn-disabled,
span.btn.btn-disabled {
  background: var(--mid-border);
  color: var(--text-muted);
  border-color: var(--mid-border);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}

.btn-disabled:hover { transform: none; }

.doc-status {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.status-card dl {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2fr;
  gap: 0.6rem 1.25rem;
  margin: 0;
}

.status-card dt {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.status-card dd {
  font-size: 0.93rem;
  color: var(--text-body);
  margin: 0;
}

.doc-card .btn,
.doc-card .btn-disabled {
  margin-top: 1.25rem;
}

@media (max-width: 640px) {
  .status-card dl { grid-template-columns: 1fr; }
}
