/* ============================================================
   911 Bookkeepers — Shared Stylesheet
   ============================================================ */
:root {
  --red:        #CC1200;
  --red-dark:   #9E0000;
  --red-glow:   rgba(204,18,0,.38);
  --navy:       #002080;
  --navy-mid:   #0E2C52;
  --navy-dark:  #06182F;
  --gold:       #F5C400;
  --gold-light: #FFD24A;
  --fire:       #F5620A;
  --ink:        #0B0E12;
  --black-bg:   #111827;
  --steel-800:  #2A313B;
  --steel-700:  #3A434F;
  --steel-600:  #4F5A68;
  --steel-500:  #6B7480;
  --steel-400:  #9AA3AD;
  --steel-300:  #C4CBD2;
  --steel-200:  #DEE3E8;
  --steel-100:  #EEF1F4;
  --steel-50:   #F6F8FA;
  --white:      #FFFFFF;
  --success:    #1F9D55;
  --success-bg: #E7F6ED;
  --warn:       #D97706;
  --warn-bg:    #FEF3C7;
  --danger-bg:  #FEE2E2;

  --shadow-sm:    0 1px 2px rgba(11,14,18,.10);
  --shadow-md:    0 4px 12px rgba(11,14,18,.12);
  --shadow-lg:    0 12px 28px rgba(11,14,18,.18);
  --shadow-xl:    0 24px 52px rgba(11,14,18,.24);
  --shadow-red:   0 8px 24px rgba(204,18,0,.35);

  --grad-dispatch: linear-gradient(150deg, #06182F 0%, #0E2C52 55%, #0A1F3A 100%);
  --grad-alarm:    linear-gradient(135deg, #CC1200 0%, #9E0000 100%);
  --grad-dark:     linear-gradient(160deg, #111827 0%, #1C2128 100%);
  --stripe-hazard: repeating-linear-gradient(45deg, #F5C400 0 12px, #0B0E12 12px 24px);
  --stripe-alert:  repeating-linear-gradient(45deg, #CC1200 0 12px, #0B0E12 12px 24px);

  --font-display: 'Anton', sans-serif;
  --font-head:    'Saira Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-script:  'Kaushan Script', cursive;
  --font-mono:    'JetBrains Mono', monospace;

  --r-sm:   4px;
  --r-md:   6px;
  --r-lg:   10px;
  --r-xl:   16px;
  --r-pill: 999px;

  --ease-out:  cubic-bezier(.2,.7,.25,1);
  --ease-snap: cubic-bezier(.2,1.3,.4,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--steel-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---- Layout ---- */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.container-md { max-width: 980px;  margin: 0 auto; padding: 0 28px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border: 2px solid var(--ink); border-radius: var(--r-md);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; line-height: 1;
  transition: transform 120ms var(--ease-snap), box-shadow 120ms var(--ease-out), background 120ms;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: none !important; }
.btn-red    { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { background: #E01500; }
.btn-ink    { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn-ink:hover { background: var(--steel-800); }
.btn-ghost  { background: transparent; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--steel-50); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.08); }
.btn-lg  { padding: 15px 30px; font-size: 15px; }
.btn-sm  { padding: 8px 16px; font-size: 12px; }
.btn-xl  { padding: 18px 40px; font-size: 17px; }

/* ---- Top Bar ---- */
.topbar { background: var(--ink); color: var(--white); }
.topbar-stripe { height: 5px; background: var(--stripe-alert); }
.topbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 7px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; font-size: 11.5px;
}
.topbar-left { display: flex; align-items: center; gap: 8px; color: var(--steel-400); }
.topbar-left strong { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-link { color: var(--white); display: flex; align-items: center; gap: 7px; }
.topbar-link:hover { color: var(--gold); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 11px 28px;
  display: flex; align-items: center; gap: 20px;
}
.logo-lockup { display: flex; align-items: baseline; gap: 6px; flex: none; }
.logo-911 { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--red); }
.logo-rest { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink); line-height: 1.15; }
.logo-sub  { font-family: var(--font-head); font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel-500); line-height: 1.15; }
nav.site-nav { display: flex; gap: 2px; flex: 1; margin-left: 12px; }
.site-nav a {
  padding: 8px 13px; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px;
  color: var(--steel-600); border-bottom: 2px solid transparent;
  transition: color 120ms, border-color 120ms; white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--red); border-bottom-color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); padding: 4px; }
.mobile-nav { display: none; border-top: 2px solid var(--ink); background: var(--white); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 28px; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px;
  color: var(--steel-700); border-bottom: 1px solid var(--steel-100);
}
.mobile-nav a:hover { background: var(--steel-50); color: var(--red); }

/* ---- Section typography ---- */
.section-label {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 11.5px; color: var(--red); margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: 40px; line-height: 1.04; letter-spacing: 0.01em;
  color: var(--ink); margin: 0 0 16px;
}
.section-h2.light { color: var(--white); }
.section-intro { font-size: 18px; line-height: 1.6; color: var(--steel-600); margin: 0; max-width: 620px; }
.section-intro.center { text-align: center; max-width: 680px; margin: 0 auto; }

/* ---- Credibility strip ---- */
.credibility { background: var(--ink); color: var(--white); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.cred-stripe { height: 5px; background: var(--stripe-hazard); }
.cred-inner {
  max-width: 1160px; margin: 0 auto; padding: 44px 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.cred-item { text-align: center; }
.cred-big { font-family: var(--font-display); font-style: italic; font-size: 46px; line-height: 1; color: var(--gold); }
.cred-name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; color: var(--white); margin-top: 6px; }
.cred-sub { font-size: 12.5px; color: var(--steel-600); margin-top: 3px; }

/* ---- Final CTA ---- */
.final-cta {
  position: relative; overflow: hidden;
  background: var(--grad-alarm); color: var(--white);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: 80px 0;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.08) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.final-inner { position: relative; text-align: center; }
.final-h2 {
  font-family: var(--font-display); text-transform: uppercase; font-style: italic;
  font-size: 52px; line-height: 1; margin-bottom: 14px;
}
.final-sub { font-size: 19px; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-disclaimer { margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.5); font-family: var(--font-mono); }

/* ---- Page hero (interior pages) ---- */
.page-hero {
  background: var(--grad-dispatch); color: var(--white);
  border-bottom: 3px solid var(--ink); position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px 500px at 80% 50%, rgba(204,18,0,.18), transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero-inner {
  position: relative; max-width: 1160px; margin: 0 auto;
  padding: 72px 28px 80px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border: 2px solid rgba(245,196,0,.5); border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 11px; color: var(--gold-light); margin-bottom: 18px;
}
.page-hero-h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 56px; line-height: 1; letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.page-hero-h1 .gold { color: var(--gold); }
.page-hero-sub { font-size: 20px; line-height: 1.55; color: var(--steel-300); max-width: 620px; margin: 0 0 30px; }
.page-hero-sub strong { color: var(--white); font-weight: 600; }
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 2px solid var(--ink);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform 180ms var(--ease-out), box-shadow 180ms;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-stripe-red   { height: 6px; background: var(--red); }
.card-stripe-gold  { height: 6px; background: var(--gold); }
.card-stripe-navy  { height: 6px; background: var(--navy); }
.card-stripe-steel { height: 6px; background: var(--steel-400); }
.card-body { padding: 26px 24px; }

/* ---- Testimonials ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.testi-top  { height: 5px; background: var(--red); flex: none; }
.testi-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.testi-label { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; font-size: 11px; color: var(--red); margin-bottom: 10px; }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 3px; }
.testi-quote { font-size: 15px; line-height: 1.6; color: var(--steel-700); margin-bottom: auto; padding-bottom: 20px; }
.testi-quote em { font-style: normal; color: var(--ink); font-weight: 600; }
.testi-result { display: flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px; color: var(--ink); background: var(--steel-50); border: 1.5px solid var(--steel-200); border-radius: var(--r-sm); padding: 7px 11px; margin-top: 18px; }
.testi-result svg { color: var(--red); flex: none; }

/* ---- Pricing / Plan Cards ---- */
.billing-wrap { display: flex; justify-content: center; margin-bottom: 44px; }
.billing-inner { display: inline-flex; background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-pill); padding: 4px; box-shadow: var(--shadow-sm); }
.bill-btn { border: none; padding: 9px 22px; border-radius: var(--r-pill); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 12px; background: transparent; color: var(--steel-600); transition: background 120ms, color 120ms; cursor: pointer; }
.bill-btn.active { background: var(--red); color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform 180ms var(--ease-out), box-shadow 180ms; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured { background: var(--grad-dispatch); }
.plan-top-std  { height: 6px; background: var(--red); }
.plan-top-feat { height: 10px; background: var(--stripe-hazard); }
.plan-top-prem { height: 6px; background: var(--gold); }
.plan-wrap { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.plan-icon { width: 48px; height: 48px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--ink); background: var(--steel-50); color: var(--red); flex: none; }
.plan-card.featured .plan-icon { background: rgba(255,255,255,.10); color: var(--gold); border-color: rgba(255,255,255,.2); }
.plan-type { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; font-size: 10px; color: var(--steel-500); margin-bottom: 6px; }
.plan-card.featured .plan-type { color: var(--steel-400); }
.plan-name { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 22px; color: var(--ink); margin-bottom: 8px; line-height: 1.1; }
.plan-card.featured .plan-name { color: var(--white); }
.plan-who { font-size: 14.5px; color: var(--steel-600); line-height: 1.6; margin-bottom: 20px; }
.plan-card.featured .plan-who { color: var(--steel-300); }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 2px; }
.plan-amt { font-family: var(--font-mono); font-weight: 700; font-size: 44px; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.plan-card.featured .plan-amt { color: var(--gold); }
.plan-per { font-size: 14px; color: var(--steel-500); }
.plan-card.featured .plan-per { color: var(--steel-400); }
.plan-bill { font-size: 11.5px; color: var(--steel-400); font-family: var(--font-mono); margin-bottom: 20px; }
.plan-card.featured .plan-bill { color: var(--steel-500); }
.plan-cta-btn { display: block; width: 100%; margin-bottom: 20px; }
.plan-div { border: none; border-top: 1px solid var(--steel-200); margin: 0 0 16px; }
.plan-card.featured .plan-div { border-color: rgba(255,255,255,.15); }
.plan-feats { display: flex; flex-direction: column; gap: 10px; }
.plan-feat { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--steel-600); line-height: 1.45; }
.plan-card.featured .plan-feat { color: var(--steel-300); }
.feat-chk { color: var(--success); flex: none; margin-top: 2px; }
.plan-card.featured .feat-chk { color: var(--gold); }
.plan-pop { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--r-pill); background: var(--gold); color: var(--ink); border: 2px solid var(--ink); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 10px; margin-bottom: 12px; width: fit-content; }

/* ---- About photo ---- */
.about-photo-wrap { position: relative; display: inline-block; margin-bottom: 28px; }
.about-photo { width: 180px; height: 180px; object-fit: cover; object-position: center top; border-radius: var(--r-lg); border: 3px solid var(--ink); box-shadow: var(--shadow-lg); display: block; }
.about-photo-badge { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; font-size: 10px; white-space: nowrap; padding: 4px 12px; border-radius: var(--r-pill); border: 2px solid var(--ink); }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,24,47,.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 180ms var(--ease-out);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  width: 480px; max-width: 100%; background: var(--white);
  border: 2px solid var(--ink); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
  transform: translateY(14px) scale(.97); transition: transform 200ms var(--ease-snap);
}
.modal-overlay.open .modal { transform: none; }
.modal-stripe { height: 7px; background: var(--stripe-alert); }
.modal-inner { padding: 30px; }
.modal-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.modal-title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 24px; color: var(--ink); }
.modal-sub { font-size: 14px; color: var(--steel-500); margin: 0 0 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; color: var(--steel-600); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 13px; font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--white); border: 2px solid var(--steel-300);
  border-radius: var(--r-md); outline: none; transition: border-color 120ms;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,32,128,.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel-400); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-disclaimer { font-size: 11.5px; color: var(--steel-400); text-align: center; margin-top: 10px; font-family: var(--font-mono); }
.modal-success { text-align: center; padding: 10px 0 6px; display: none; }
.modal-success.show { display: block; }
.modal-form.hide { display: none; }
.success-ring { display: inline-flex; padding: 18px; border-radius: 50%; background: var(--success-bg); border: 2px solid var(--success); color: var(--success); margin-bottom: 16px; }
.success-title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 26px; margin: 0 0 10px; color: var(--ink); }
.success-sub { font-size: 15px; color: var(--steel-500); margin: 0 0 22px; line-height: 1.5; }

/* ---- Footer ---- */
footer { background: var(--navy-dark); color: var(--steel-300); }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 56px 28px 32px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px;
}
.footer-logo-911  { font-family: var(--font-display); font-size: 46px; line-height: 1; color: var(--red); }
.footer-logo-name { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; color: var(--white); }
.footer-logo-sub  { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; font-size: 10px; color: var(--steel-600); }
.footer-brand-text { font-size: 13.5px; line-height: 1.55; color: var(--steel-500); margin-top: 12px; max-width: 240px; }
.footer-col-head { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; font-size: 11.5px; color: var(--gold); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: var(--steel-400); transition: color 120ms; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 11.5px; color: var(--steel-700); font-family: var(--font-mono);
}

/* ---- Footer Social ---- */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--r-md); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: var(--steel-300); text-decoration: none; transition: background 160ms, color 160ms, border-color 160ms; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-social-text { font-family: var(--font-head); font-weight: 800; font-size: 15px; line-height: 1; }

/* ---- Blog Preview ---- */
.blog-preview { background: var(--white); padding: 100px 0; border-top: 2px solid var(--steel-200); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 2px solid var(--steel-200); border-radius: var(--r-xl); padding: 28px; text-decoration: none; color: inherit; transition: border-color 160ms, box-shadow 160ms, transform 160ms var(--ease-out); }
.blog-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-tag { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--red); background: rgba(204,18,0,.08); border: 1px solid rgba(204,18,0,.2); border-radius: var(--r-pill); padding: 3px 10px; margin-bottom: 14px; width: fit-content; }
.blog-card-title { font-family: var(--font-head); font-weight: 800; font-size: 18px; line-height: 1.25; color: var(--ink); margin-bottom: 12px; text-transform: uppercase; }
.blog-card-excerpt { font-size: 14px; color: var(--steel-600); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.blog-card-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--steel-200); padding-top: 14px; }
.blog-card-date { font-size: 12px; color: var(--steel-400); font-family: var(--font-mono); }
.blog-card-read { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--red); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-more { text-align: center; margin-top: 40px; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .cred-inner    { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  nav.site-nav   { display: none; }
  .nav-toggle    { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .page-hero-h1  { font-size: 40px; }
  .final-h2      { font-size: 38px; }
}
@media (max-width: 600px) {
  .section-h2    { font-size: 28px; }
  .footer-inner  { grid-template-columns: 1fr; }
  .cred-inner    { grid-template-columns: 1fr 1fr; }
  .topbar-left   { display: none; }
  .final-cta     { padding: 60px 0; }
  .page-hero-h1  { font-size: 32px; }
}
