/* ============================================
   Campfire Chat - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --brand-amber: #C17D3C;
  --brand-amber-light: #F5E8D5;
  --brand-amber-pale: #FBF5EC;
  --brand-pine: #2D4A3E;
  --brand-pine-mid: #3D6357;
  --brand-pine-light: #E4EDE9;
  --brand-ember: #C0472A;
  --brand-ember-light: #F8EAE6;
  --brand-cream: #FAF7F2;
  --brand-bark: #7A5C3A;
  --brand-smoke: #F3F0EB;
  --text-dark: #1C1A17;
  --text-mid: #4A4540;
  --text-muted: #8C847A;
  --border: #E2DBD1;
}

/* Reset & Base Styles */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body { 
  font-family: 'DM Sans', sans-serif; 
  background: var(--brand-cream); 
  color: var(--text-dark); 
  font-size: 16px; 
  line-height: 1.7; 
}

/* ============================================
   Navigation
   ============================================ */
nav {
  position: sticky; 
  top: 0; 
  z-index: 100;
  background: rgba(250,247,242,0.95); 
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 64px;
}

.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-family: 'Fraunces', serif; 
  font-weight: 600; 
  font-size: 1.2rem; 
  color: var(--brand-pine); 
  text-decoration: none; 
}

.nav-logo .flame { 
  width: 28px; 
  height: 28px; 
  background: var(--brand-amber); 
  border-radius: 50% 50% 40% 40%; 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.nav-logo .flame::after { 
  content: ''; 
  position: absolute; 
  top: 5px; 
  left: 7px; 
  width: 14px; 
  height: 14px; 
  background: var(--brand-amber-light); 
  border-radius: 50% 50% 30% 30%; 
}

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 2rem; 
}

.nav-links a { 
  color: var(--text-mid); 
  text-decoration: none; 
  font-size: 0.9rem; 
  font-weight: 400; 
  transition: color 0.2s; 
}

.nav-links a:hover { 
  color: var(--brand-pine); 
}

.nav-links a.active { 
  color: var(--brand-pine); 
  font-weight: 500; 
}

.nav-cta { 
  background: var(--brand-pine); 
  color: white !important; 
  padding: 8px 20px; 
  border-radius: 6px; 
  font-weight: 500; 
  transition: background 0.2s !important; 
}

.nav-cta:hover { 
  background: var(--brand-pine-mid) !important; 
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary { 
  background: var(--brand-amber); 
  color: white; 
  text-decoration: none; 
  padding: 14px 32px; 
  border-radius: 8px; 
  font-weight: 500; 
  font-size: 1rem; 
  transition: background 0.2s, transform 0.15s; 
  display: inline-block; 
}

.btn-primary:hover { 
  background: #A96A2E; 
  transform: translateY(-1px); 
}

.btn-secondary { 
  background: rgba(255,255,255,0.12); 
  color: white; 
  text-decoration: none; 
  padding: 13px 32px; 
  border-radius: 8px; 
  font-weight: 500; 
  font-size: 1rem; 
  border: 1.5px solid rgba(255,255,255,0.4); 
  transition: background 0.2s, transform 0.15s; 
  display: inline-block; 
  backdrop-filter: blur(4px); 
}

.btn-secondary:hover { 
  background: rgba(255,255,255,0.2); 
  transform: translateY(-1px); 
}

.btn-pine { 
  background: var(--brand-pine); 
  color: white; 
  text-decoration: none; 
  padding: 14px 32px; 
  border-radius: 8px; 
  font-weight: 500; 
  font-size: 1rem; 
  transition: background 0.2s, transform 0.15s; 
  display: inline-block; 
}

.btn-pine:hover { 
  background: var(--brand-pine-mid); 
  transform: translateY(-1px); 
}

.btn-outline-pine { 
  background: transparent; 
  color: var(--brand-pine); 
  text-decoration: none; 
  padding: 13px 32px; 
  border-radius: 8px; 
  font-weight: 500; 
  font-size: 1rem; 
  border: 1.5px solid var(--brand-pine); 
  transition: background 0.2s, transform 0.15s; 
  display: inline-block; 
}

.btn-outline-pine:hover { 
  background: var(--brand-pine-light); 
  transform: translateY(-1px); 
}

/* ============================================
   Footer
   ============================================ */
footer { 
  background: var(--text-dark); 
  padding: 4rem 2rem 2.5rem; 
  color: rgba(255,255,255,0.7); 
}

.footer-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 3rem; 
  margin-bottom: 3rem; 
}

.footer-brand .nav-logo { 
  color: white; 
  margin-bottom: 1rem; 
  display: flex; 
}

.footer-brand p { 
  font-size: 0.85rem; 
  line-height: 1.7; 
  color: rgba(255,255,255,0.55); 
  max-width: 260px; 
  font-weight: 300; 
}

.footer-col h5 { 
  color: rgba(255,255,255,0.9); 
  font-size: 0.82rem; 
  font-weight: 500; 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  margin-bottom: 1rem; 
}

.footer-col a { 
  display: block; 
  color: rgba(255,255,255,0.55); 
  text-decoration: none; 
  font-size: 0.85rem; 
  margin-bottom: 0.6rem; 
  transition: color 0.2s; 
  font-weight: 300; 
}

.footer-col a:hover { 
  color: rgba(255,255,255,0.9); 
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding-top: 2rem; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 1rem; 
}

.footer-bottom p { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.4); 
}

/* Simple footer (for apply and privacy pages) */
footer.simple-footer {
  padding: 2.5rem 2rem; 
  color: rgba(255,255,255,0.4); 
  text-align: center; 
  font-size: 0.82rem; 
}

footer.simple-footer a { 
  color: rgba(255,255,255,0.4); 
  text-decoration: none; 
}

footer.simple-footer a:hover { 
  color: rgba(255,255,255,0.7); 
}

/* ============================================
   Homepage - Hero Section
   ============================================ */
.hero {
  position: relative; 
  min-height: 100vh;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  text-align: center; 
  padding: 6rem 2rem 4rem; 
  overflow: hidden;
}

.hero-img {
  position: absolute; 
  inset: 0; 
  z-index: 0;
  background-image: url('hero.jpg');
  background-size: cover; 
  background-position: center 60%;
}

.hero-overlay {
  position: absolute; 
  inset: 0; 
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(10,18,14,0.55) 0%,
    rgba(10,18,14,0.35) 40%,
    rgba(10,18,14,0.72) 100%);
}

.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  background: rgba(193,125,60,0.25); 
  color: #F5DDB8;
  border: 1px solid rgba(193,125,60,0.45);
  border-radius: 20px; 
  padding: 5px 14px; 
  font-size: 0.8rem; 
  font-weight: 500;
  margin-bottom: 2rem; 
  z-index: 2; 
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: 'Fraunces', serif; 
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; 
  line-height: 1.12; 
  color: white;
  max-width: 780px; 
  z-index: 2; 
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero h1 em { 
  font-style: italic; 
  color: #F5DDB8; 
}

.hero p { 
  font-size: 1.1rem; 
  color: rgba(255,255,255,0.85); 
  max-width: 540px; 
  z-index: 2; 
  margin-bottom: 2.5rem; 
  font-weight: 300; 
}

.hero-actions { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap; 
  justify-content: center; 
  z-index: 2; 
  margin-bottom: 1rem; 
}

.hero-credit { 
  z-index: 2; 
  font-size: 0.72rem; 
  color: rgba(255,255,255,0.35); 
}

.hero-credit a { 
  color: rgba(255,255,255,0.4); 
}

/* ============================================
   Homepage - Trust Strip
   ============================================ */
.trust-strip { 
  background: var(--brand-pine); 
  padding: 2rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 3rem; 
  flex-wrap: wrap; 
}

.trust-item { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  color: rgba(255,255,255,0.9); 
  font-size: 0.88rem; 
}

.trust-icon { 
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.15); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
}

/* ============================================
   Homepage - Sections
   ============================================ */
section { 
  padding: 6rem 2rem; 
}

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

.section-label { 
  font-size: 0.78rem; 
  font-weight: 500; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--brand-amber); 
  margin-bottom: 0.75rem; 
}

.section-title { 
  font-family: 'Fraunces', serif; 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 300; 
  line-height: 1.2; 
  color: var(--text-dark); 
  margin-bottom: 1rem; 
}

.section-sub { 
  font-size: 1.05rem; 
  color: var(--text-mid); 
  max-width: 560px; 
  font-weight: 300; 
}

/* ============================================
   Homepage - Features Section
   ============================================ */
.features-section { 
  background: white; 
}

.features-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 1.5rem; 
  margin-top: 3.5rem; 
}

.feature-card { 
  background: var(--brand-cream); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 2rem; 
  transition: transform 0.2s, box-shadow 0.2s; 
}

.feature-card:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 8px 32px rgba(45,74,62,0.1); 
}

.feature-icon { 
  width: 48px; 
  height: 48px; 
  border-radius: 10px; 
  margin-bottom: 1.25rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.fi-pine { 
  background: var(--brand-pine-light); 
}

.fi-amber { 
  background: var(--brand-amber-light); 
}

.fi-ember { 
  background: var(--brand-ember-light); 
}

.feature-card h3 { 
  font-family: 'Fraunces', serif; 
  font-weight: 400; 
  font-size: 1.2rem; 
  color: var(--text-dark); 
  margin-bottom: 0.6rem; 
}

.feature-card p { 
  font-size: 0.9rem; 
  color: var(--text-mid); 
  line-height: 1.65; 
  font-weight: 300; 
}

/* ============================================
   Homepage - How It Works Section
   ============================================ */
.how-section { 
  background: var(--brand-cream); 
}

.steps-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
  gap: 0; 
  margin-top: 3rem; 
  position: relative; 
}

.step { 
  padding: 2rem 1.5rem; 
  position: relative; 
  text-align: center; 
}

.step:not(:last-child)::after { 
  content: ''; 
  position: absolute; 
  top: 3.5rem; 
  right: -1px; 
  width: 1px; 
  height: 48px; 
  background: var(--border); 
}

.step-num { 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  border: 2px solid var(--brand-pine); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: 'Fraunces', serif; 
  font-size: 1.3rem; 
  font-weight: 400; 
  color: var(--brand-pine); 
  margin: 0 auto 1.25rem; 
}

.step h4 { 
  font-family: 'Fraunces', serif; 
  font-weight: 400; 
  font-size: 1.05rem; 
  margin-bottom: 0.5rem; 
  color: var(--text-dark); 
}

.step p { 
  font-size: 0.85rem; 
  color: var(--text-mid); 
  font-weight: 300; 
}

/* ============================================
   Homepage - Compare Section
   ============================================ */
.compare-section { 
  background: white; 
}

.compare-table-wrap { 
  overflow-x: auto; 
  margin-top: 2.5rem; 
}

table.compare { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 0.88rem; 
  min-width: 700px; 
}

table.compare th, 
table.compare td { 
  padding: 14px 16px; 
  text-align: center; 
  border-bottom: 1px solid var(--border); 
}

table.compare th:first-child, 
table.compare td:first-child { 
  text-align: left; 
  font-weight: 500; 
  color: var(--text-mid); 
}

table.compare thead th { 
  font-weight: 500; 
  font-size: 0.8rem; 
  text-transform: uppercase; 
  letter-spacing: 0.06em; 
  color: var(--text-muted); 
  padding-top: 0; 
  background: white; 
}

table.compare thead th.highlight { 
  color: white; 
  background: var(--brand-pine); 
  border-radius: 10px 10px 0 0; 
}

.check { 
  color: var(--brand-pine); 
  font-size: 1.1rem; 
}

.cross { 
  color: #C0C0B8; 
  font-size: 1.1rem; 
}

.partial { 
  color: var(--brand-amber); 
  font-size: 0.82rem; 
  font-weight: 500; 
}

.col-highlight { 
  background: rgba(45,74,62,0.04); 
}

/* ============================================
   Homepage - Pricing Section
   ============================================ */
.pricing-section { 
  background: var(--brand-cream); 
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 1.5rem; 
  max-width: 900px; 
}

.price-card { 
  background: white; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 2rem; 
  position: relative; 
}

.price-card.featured { 
  border-color: var(--brand-pine); 
  border-width: 2px; 
}

.price-badge { 
  position: absolute; 
  top: -12px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--brand-pine); 
  color: white; 
  font-size: 0.72rem; 
  font-weight: 500; 
  letter-spacing: 0.05em; 
  padding: 4px 14px; 
  border-radius: 12px; 
  white-space: nowrap; 
}

.price-tier { 
  font-size: 0.8rem; 
  font-weight: 500; 
  color: var(--text-muted); 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  margin-bottom: 0.5rem; 
}

.price-amount { 
  font-family: 'Fraunces', serif; 
  font-size: 2.8rem; 
  font-weight: 300; 
  color: var(--text-dark); 
  line-height: 1; 
}

.price-amount span.dollar { 
  font-size: 1rem; 
  font-weight: 400; 
  color: var(--text-muted); 
  vertical-align: super; 
  margin-right: 2px; 
}

.price-per { 
  font-size: 0.82rem; 
  color: var(--text-muted); 
  margin-bottom: 1.5rem; 
}

.price-divider { 
  height: 1px; 
  background: var(--border); 
  margin: 1.25rem 0; 
}

.price-features { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin-bottom: 1.75rem; 
}

.price-features li { 
  font-size: 0.88rem; 
  color: var(--text-mid); 
  display: flex; 
  gap: 8px; 
  align-items: flex-start; 
  font-weight: 300; 
}

.price-features li::before { 
  content: '✓'; 
  color: var(--brand-pine); 
  font-weight: 600; 
  flex-shrink: 0; 
  margin-top: 1px; 
}

.price-btn { 
  display: block; 
  width: 100%; 
  text-align: center; 
  padding: 12px; 
  border-radius: 8px; 
  font-weight: 500; 
  font-size: 0.9rem; 
  text-decoration: none; 
  transition: all 0.2s; 
}

.price-btn-outline { 
  border: 1.5px solid var(--brand-pine); 
  color: var(--brand-pine); 
}

.price-btn-outline:hover { 
  background: var(--brand-pine-light); 
}

.price-btn-fill { 
  background: var(--brand-pine); 
  color: white; 
  border: none; 
}

.price-btn-fill:hover { 
  background: var(--brand-pine-mid); 
}

/* ============================================
   Homepage - Testimonials Section
   ============================================ */
.testimonials-section { 
  background: var(--brand-pine); 
  padding: 6rem 2rem; 
}

.testimonials-section .section-title { 
  color: white; 
}

.testimonials-section .section-label { 
  color: rgba(255,255,255,0.6); 
}

.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 1.5rem; 
  margin-top: 3rem; 
}

.testimonial { 
  background: rgba(255,255,255,0.08); 
  border: 1px solid rgba(255,255,255,0.12); 
  border-radius: 12px; 
  padding: 1.75rem; 
}

.testimonial p { 
  color: rgba(255,255,255,0.9); 
  font-size: 0.95rem; 
  line-height: 1.7; 
  font-style: italic; 
  font-family: 'Fraunces', serif; 
  font-weight: 300; 
  margin-bottom: 1.25rem; 
}

.testimonial-author { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.testimonial-avatar { 
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.15); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 0.75rem; 
  font-weight: 600; 
  color: rgba(255,255,255,0.5); 
}

.testimonial-name { 
  color: rgba(255,255,255,0.3); 
  font-weight: 500; 
  font-size: 0.85rem; 
  font-style: italic; 
}

.testimonial-role { 
  color: rgba(255,255,255,0.25); 
  font-size: 0.78rem; 
  font-style: italic; 
}

.testimonial-placeholder-note { 
  text-align: center; 
  margin-top: 2rem; 
}

.testimonial-placeholder-note span { 
  background: rgba(255,255,255,0.1); 
  color: rgba(255,255,255,0.45); 
  font-size: 0.78rem; 
  padding: 4px 14px; 
  border-radius: 12px; 
  border: 1px dashed rgba(255,255,255,0.2); 
}

/* ============================================
   Homepage - CTA Section
   ============================================ */
.cta-section { 
  background: var(--brand-amber-pale); 
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border); 
  padding: 6rem 2rem; 
  text-align: center; 
}

/* ============================================
   Apply Page - Layout
   ============================================ */
.page-header {
  background: var(--brand-pine); 
  padding: 5rem 2rem 4rem; 
  text-align: center;
}

.page-header .breadcrumb { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.5); 
  margin-bottom: 1rem; 
}

.page-header .breadcrumb a { 
  color: rgba(255,255,255,0.5); 
  text-decoration: none; 
}

.page-header .breadcrumb a:hover { 
  color: rgba(255,255,255,0.8); 
}

.page-header h1 { 
  font-family: 'Fraunces', serif; 
  font-size: clamp(2.2rem, 5vw, 3.5rem); 
  font-weight: 300; 
  color: white; 
  margin-bottom: 1rem; 
}

.page-header p { 
  color: rgba(255,255,255,0.75); 
  max-width: 520px; 
  margin: 0 auto; 
  font-weight: 300; 
  font-size: 1.05rem; 
}

.apply-layout {
  max-width: 1000px; 
  margin: 0 auto; 
  padding: 4rem 2rem;
  display: grid; 
  grid-template-columns: 1fr 340px; 
  gap: 4rem; 
  align-items: start;
}

/* ============================================
   Apply Page - Form Area
   ============================================ */
.form-section h2 { 
  font-family: 'Fraunces', serif; 
  font-weight: 400; 
  font-size: 1.5rem; 
  color: var(--text-dark); 
  margin-bottom: 0.5rem; 
}

.form-section > p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin-bottom: 2rem; 
  font-weight: 300; 
}

.tally-wrapper {
  background: white; 
  border: 1px solid var(--border); 
  border-radius: 12px;
  overflow: hidden; 
  min-height: 600px;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.tally-placeholder {
  width: 100%;
  text-align: center; 
  padding: 3rem 2rem;
}

.tally-placeholder .icon {
  width: 64px; 
  height: 64px; 
  border-radius: 50%;
  background: var(--brand-pine-light);
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tally-placeholder h3 { 
  font-family: 'Fraunces', serif; 
  font-weight: 400; 
  font-size: 1.3rem; 
  margin-bottom: 0.75rem; 
  color: var(--text-dark); 
}

.tally-placeholder p { 
  font-size: 0.88rem; 
  color: var(--text-muted); 
  max-width: 340px; 
  margin: 0 auto 1.5rem; 
  font-weight: 300; 
  line-height: 1.7; 
}

.tally-placeholder code { 
  background: var(--brand-smoke); 
  border: 1px solid var(--border); 
  border-radius: 6px; 
  padding: 8px 14px; 
  font-size: 0.82rem; 
  display: block; 
  margin: 0 auto; 
  color: var(--text-mid); 
  font-family: monospace; 
}

.tally-placeholder .steps { 
  text-align: left; 
  background: var(--brand-smoke); 
  border-radius: 8px; 
  padding: 1.25rem 1.5rem; 
  margin: 1.5rem 0; 
}

.tally-placeholder .steps ol { 
  padding-left: 1.25rem; 
}

.tally-placeholder .steps li { 
  font-size: 0.85rem; 
  color: var(--text-mid); 
  margin-bottom: 0.4rem; 
  font-weight: 300; 
}

.tally-placeholder .steps li strong { 
  font-weight: 500; 
  color: var(--text-dark); 
}

.tally-placeholder a.setup-link { 
  display: inline-block; 
  background: var(--brand-pine); 
  color: white; 
  padding: 10px 24px; 
  border-radius: 8px; 
  font-size: 0.88rem; 
  font-weight: 500; 
  text-decoration: none; 
  transition: background 0.2s; 
}

.tally-placeholder a.setup-link:hover { 
  background: var(--brand-pine-mid); 
}

/* ============================================
   Apply Page - Sidebar
   ============================================ */
.apply-sidebar { 
  position: sticky; 
  top: 80px; 
}

.sidebar-card { 
  background: white; 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 1.75rem; 
  margin-bottom: 1.5rem; 
}

.sidebar-card h4 { 
  font-family: 'Fraunces', serif; 
  font-weight: 400; 
  font-size: 1.05rem; 
  color: var(--text-dark); 
  margin-bottom: 1rem; 
}

.sidebar-card ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.sidebar-card ul li { 
  display: flex; 
  gap: 10px; 
  align-items: flex-start; 
  font-size: 0.85rem; 
  color: var(--text-mid); 
  font-weight: 300; 
}

.sidebar-card ul li .check { 
  color: var(--brand-pine); 
  font-weight: 600; 
  flex-shrink: 0; 
  margin-top: 1px; 
}

.sidebar-card p { 
  font-size: 0.85rem; 
  color: var(--text-mid); 
  font-weight: 300; 
  line-height: 1.7; 
}

.sidebar-card p + p { 
  margin-top: 0.75rem; 
}

.sidebar-card a { 
  color: var(--brand-pine); 
}

.org-types { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
  margin-top: 0.75rem; 
}

.org-tag { 
  background: var(--brand-smoke); 
  border: 1px solid var(--border); 
  border-radius: 20px; 
  padding: 3px 12px; 
  font-size: 0.78rem; 
  color: var(--text-mid); 
}

/* ============================================
   Privacy Page - Layout
   ============================================ */
.page-header .meta {
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.6);
  display: flex; 
  gap: 1.5rem; 
  justify-content: center; 
  flex-wrap: wrap;
}

.page-header .meta span { 
  display: flex; 
  align-items: center; 
  gap: 5px; 
}

.doc-layout {
  max-width: 1100px; 
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ============================================
   Privacy Page - Table of Contents
   ============================================ */
.toc {
  position: sticky; 
  top: 80px;
}

.toc-title {
  font-size: 0.75rem; 
  font-weight: 500; 
  letter-spacing: 0.1em;
  text-transform: uppercase; 
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.toc ol {
  list-style: none;
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}

.toc ol li { 
  margin-bottom: 0.5rem; 
}

.toc ol li a {
  font-size: 0.83rem; 
  color: var(--text-muted);
  text-decoration: none; 
  transition: color 0.2s;
  line-height: 1.4; 
  display: block;
}

.toc ol li a:hover { 
  color: var(--brand-pine); 
}

.toc ol li a.active { 
  color: var(--brand-pine); 
  font-weight: 500; 
}

/* ============================================
   Privacy Page - Content
   ============================================ */
.doc-content { 
  min-width: 0; 
}

.doc-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; 
  font-weight: 400;
  color: var(--text-dark);
  margin: 3rem 0 1rem; 
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 80px;
}

.doc-content h2:first-child { 
  margin-top: 0; 
  border-top: none; 
  padding-top: 0; 
}

.doc-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; 
  font-weight: 400;
  color: var(--text-dark); 
  margin: 2rem 0 0.75rem;
}

.doc-content p {
  color: var(--text-mid); 
  margin-bottom: 1rem;
  font-weight: 300; 
  font-size: 0.95rem;
  line-height: 1.8;
}

.doc-content p strong { 
  font-weight: 500; 
  color: var(--text-dark); 
}

.doc-content ul {
  color: var(--text-mid); 
  padding-left: 1.5rem;
  margin-bottom: 1rem; 
  font-size: 0.95rem; 
  font-weight: 300;
}

.doc-content ul li { 
  margin-bottom: 0.4rem; 
  line-height: 1.7; 
}

.doc-content a { 
  color: var(--brand-pine); 
}

.doc-content a:hover { 
  color: var(--brand-pine-mid); 
}

.doc-content table {
  width: 100%; 
  border-collapse: collapse;
  margin: 1.5rem 0; 
  font-size: 0.88rem;
}

.doc-content th {
  text-align: left; 
  font-weight: 500; 
  font-size: 0.8rem;
  color: var(--text-muted); 
  letter-spacing: 0.05em; 
  text-transform: uppercase;
  padding: 8px 12px; 
  border-bottom: 2px solid var(--border);
  background: var(--brand-smoke);
}

.doc-content td {
  padding: 10px 12px; 
  border-bottom: 1px solid var(--border);
  color: var(--text-mid); 
  vertical-align: top; 
  font-weight: 300;
}

.doc-content td strong { 
  font-weight: 500; 
  color: var(--text-dark); 
}

.callout {
  border-left: 3px solid var(--brand-pine);
  background: var(--brand-pine-light);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p { 
  margin: 0; 
  color: var(--brand-pine); 
  font-weight: 400; 
  font-size: 0.9rem; 
}

.callout p strong { 
  color: var(--brand-pine); 
}

/* ============================================
   Media Queries
   ============================================ */
@media (max-width: 768px) {
  nav { 
    padding: 0 1.2rem; 
  }
  
  .nav-links { 
    display: none; 
  }
  
  .footer-inner { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .step:not(:last-child)::after { 
    display: none; 
  }
  
  .apply-layout { 
    grid-template-columns: 1fr; 
  }
  
  .apply-sidebar { 
    position: static; 
  }
  
  .doc-layout { 
    grid-template-columns: 1fr; 
  }
  
  .toc { 
    display: none; 
  }
}
