@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=DM+Sans:wght@400;500;700&display=swap');
/* QuickBooks Study Companion — Shared Sub-Page Styles */

:root {
  /* ===== CONCEPT E — the ad language (cream / serif / green / gold) ===== */
  --teal: #2E7D5B;          /* accent green on light */
  --teal-light: #3F8F6C;
  --teal-deep: #1E5B45;     /* the brand deep green (buttons, footer, featured) */
  --coral: #A5722A;         /* warm accent text = deep gold (was tan) */
  --coral-deep: #8A5E20;

  --action: #1E5B45;        /* primary CTA = deep green pill */
  --action-deep: #164534;
  --accent-warm: #E8A93C;   /* gold badges, featured warm surfaces */
  --peach-accent: #F1E7D2;  /* parchment tint */

  --yellow: #E8A93C;        /* gold */
  --yellow-soft: #F7EFDB;
  --pink: #D64541;          /* brand red, rare accent */
  --pink-soft: #FBEDEC;
  --purple: #2E7D5B;
  --purple-soft: #EAF3EE;
  --blue: #2E7D5B;
  --blue-soft: #EAF3EE;
  --orange: #E8A93C;

  --green: #2E7D5B;         /* quiz-correct */
  --green-soft: #EAF3EE;

  --cream: #FFFDF8;         /* warm white panel */
  --ink: #1E2B25;           /* primary text = deep ink-green */
  --ink-soft: #3D4A42;      /* secondary text */
  --warm-bg: #F7F2E8;       /* page background = the ad cream */
  --warm-bg-deep: #F1EAD9;
  --surface: #FFFDF8;       /* card panel */
  --surface-border: #E3D9C6;
  --shadow-hard: 0 6px 16px rgba(30, 43, 37, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  background: var(--warm-bg);
  color: var(--ink);
  line-height: 1.5;
}

/* ========== TOP BAR (simpler than full sidebar for sub-pages) ========== */
/* Global guard: the page never scrolls sideways, at any width */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { overflow-x: hidden; overflow-x: clip; max-width: 100%; }

.topbar {
  background: var(--surface);
  border-bottom: 2px solid var(--ink);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.topbar-brand-logo {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 18px;
  font-weight: 800;
}
/* Three-circle brand mark: override the dark round container so the SVG shows cleanly. */
.logo-circles {
  background: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: 32px;
}
.logo-circles .brand-circles {
  height: 100%;
  width: auto;
  display: block;
}
.topbar-brand-text {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.topbar-brand-text small {
  display: block;
  font-weight: 500;
  font-size: 9.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}
.topbar-nav::-webkit-scrollbar { display: none; }
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 1;
}
.topbar-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
.topbar-nav a:hover { color: var(--coral); }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  background: white;
  color: #FFFFFF;
}
.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn.primary {
  background: var(--action);
  color: #FFFFFF;
}
.btn.primary:hover {
  background: var(--action-deep);
  border-color: var(--action-deep);
  color: #FFFFFF;
}
.btn.coral {
  background: var(--coral);
  color: #FFFFFF;
}
@media (max-width: 720px) {
  .topbar { padding: 10px 14px 8px; flex-wrap: wrap; }
  .topbar-nav {
    display: flex;
    order: 3;
    width: 100%;
    margin-top: 8px;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .topbar-nav::-webkit-scrollbar { display: none; }
  .topbar-nav a { font-size: 12px; flex-shrink: 0; }
  /* Shrink logo slightly on mobile to free up room for the full brand name */
  .topbar-brand-logo svg { height: 24px !important; }
  .topbar-brand { gap: 8px; }
  /* Show full "The Bookkeeping Companion" — stack "Companion" on its own line
     so it never gets clipped by the buttons on the right. */
  .topbar-brand-text {
    font-size: 12px;
    line-height: 1.1;
  }
  .topbar-brand-text small {
    display: block;
    margin: 1px 0 0 0;
    font-size: 8.5px;
  }
  /* Keep Log In / Start Free Trial each on a single line on narrow phones */
  .topbar-actions { gap: 6px; }
  .topbar-actions .btn {
    padding: 7px 11px;
    font-size: 11px;
    white-space: nowrap;
    gap: 4px;
  }
}
@media (max-width: 400px) {
  .topbar-brand-logo svg { height: 22px !important; }
  .topbar-brand-text { font-size: 11px; }
  .topbar-actions .btn { padding: 6px 9px; font-size: 10.5px; }
}

/* ========== PAGE CONTAINER ========== */
.page-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.page-wrap.wide { max-width: 1180px; }

/* ========== PAGE HEADER ========== */
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 16px;
  line-height: 1;
  text-indent: 0.08em;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.page-h1 {
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--ink);
}
.page-h1 .accent { color: var(--coral); }
.page-h1 .accent.yellow { color: #d99700; }
.page-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 48px;
}

/* ========== CONTENT BLOCKS ========== */
.content-block {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-hard);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.content-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 18px;
}
.content-block h3:first-child { margin-top: 0; }
.content-block p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block ul, .content-block ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.content-block li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.content-block a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}
.content-block a:hover { text-decoration: underline; }
.content-block strong { color: var(--ink); font-weight: 700; }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  background: var(--coral);
  color: #2C3531;
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #2C3531;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.pricing-card.featured .pricing-tier-name { color: #2C3531; }
.pricing-price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.pricing-card.featured .pricing-price small { color: rgba(44,53,49,0.75); }
.pricing-yearly {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.pricing-card.featured .pricing-yearly { color: rgba(44,53,49,0.8); }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--teal);
  font-weight: 800;
}
.pricing-card.featured .pricing-features li::before { color: var(--teal-deep); }
.pricing-features li.no::before { content: '✕'; color: var(--ink-soft); }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 2px solid var(--coral);
  border-radius: 100px;
  background: var(--coral);
  color: #2C3531;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pricing-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--teal-deep);
  background: var(--coral-deep);
}
.pricing-card.featured .pricing-cta {
  background: var(--teal-deep);
  color: #FFFFFF;
  border-color: var(--teal-deep);
}
.pricing-card.featured .pricing-cta:hover {
  background: #0d4f50;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 22px; }
  .pricing-card.featured { transform: scale(1); }
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 2px 2px 0 var(--ink);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq-q:hover { background: rgba(26,26,46,0.03); }
.faq-toggle {
  font-size: 22px;
  font-weight: 400;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ========== CONTACT FORM ========== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  background: var(--surface);
  color: var(--ink);
  transition: box-shadow 0.15s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  box-shadow: 2px 2px 0 var(--ink);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--yellow-soft);
  border: 2px solid var(--ink);
  border-radius: 14px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

/* ========== SITE FOOTER ========== */
.site-footer {
  margin-top: 64px;
  padding: 40px 32px 24px;
  border-top: 2px solid var(--ink);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand-block .footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.footer-brand-name {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--coral); }
.footer-legal {
  border-top: 1px solid rgba(26,26,46,0.1);
  padding-top: 18px;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.footer-legal p { margin-bottom: 6px; }
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-block { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: span 1; }
}

/* ============================================================================
   DARK-TEAL THEME — element fixes (baked in)
   Ensures readable contrast on the dark palette across all shared sub-pages
   (index, about, contact, faq, pricing, privacy, refund, terms).
   ============================================================================ */

/* Top bar: dark teal banner, light brand text, readable buttons */
.topbar { background: var(--surface) !important; border-bottom-color: var(--surface-border); }
.topbar a, .topbar .brand, .topbar .brand-text { color: #FFFFFF; }

/* Cards / panels / containers -> dark surfaces with readable text + borders */
.content-block, .pricing-card, .faq-item, .card, .panel {
  background: var(--surface);
  border-color: var(--surface-border);
  color: var(--ink);
}
.content-block *, .faq-item * { border-color: var(--surface-border); }

/* Primary buttons -> tan with dark text (high-contrast, on-brand) */
.btn {
  background: var(--coral);
  color: #FFFFFF;
  border-color: var(--coral);
}
.btn:hover { background: var(--coral-deep); color: #FFFFFF; }
/* Outlined / secondary buttons -> light outline on dark */
.btn.outline, .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Form fields -> dark inputs with readable text */
.form-field, input, textarea, select {
  background: #0d3e3f !important;
  color: var(--ink) !important;
  border-color: var(--surface-border) !important;
}
::placeholder { color: #8fb3ad !important; }

/* Pricing tier accents */
.pricing-card.featured { border-color: var(--teal); }
.pricing-card .price { color: #FFFFFF; }

/* Footer */
.footer, footer { background: var(--warm-bg-deep); color: var(--ink-soft); }
.footer a, footer a { color: var(--ink-soft); }
.footer a:hover, footer a:hover { color: #FFFFFF; }

/* Links use tan accent for warmth, not the old bright colors */
a.accent, .accent-link { color: var(--coral); }

/* ===== Button text protection =====
   Contextual link colors (.content-block a, .topbar a) are more specific than .btn
   and were repainting button text tan/white on the tan button background.
   These rules out-rank them and sit last in the cascade so nothing overrides them. */
.content-block a.btn, .topbar a.btn, .page-wrap a.btn { color: #FFFFFF; }
.content-block a.btn:hover, .topbar a.btn:hover, .page-wrap a.btn:hover { color: #FFFFFF; }
.content-block a.btn.outline, .topbar a.btn.outline, .page-wrap a.btn.outline,
.content-block a.btn-secondary, .topbar a.btn-secondary { color: #FFFFFF; }

/* ===== Mobile polish for suite components (tools, cert prep, paths, ledger) ===== */
@media (max-width: 600px) {
  /* Chart of Accounts generator: stack controls, full-width inputs */
  .coa-controls { flex-direction: column; align-items: stretch; }
  .coa-controls select { width: 100%; min-width: 0; }
  .coa-actions { width: 100%; }
  .coa-actions .coa-btn { flex: 1; text-align: center; }

  /* Data tables: tighter density (they scroll horizontally inside their wrappers) */
  .coa-table th, .coa-table td,
  .pa-map th, .pa-map td,
  .xf-table th, .xf-table td,
  .dc-table th, .dc-table td { padding: 8px 10px; font-size: 12.5px; }
  .xf-code { font-size: 11px; }

  /* Ledger: full-width fields, tighter table */
  .lg-field, .lg-field input, .lg-field select { width: 100%; min-width: 0; }
  .lg-form .lg-btn { width: 100%; }
  .lg-table th, .lg-table td { padding: 7px 8px; font-size: 12.5px; }
  .lg-stat { flex: 1; min-width: 100px; padding: 9px 12px; }
  .lg-stat strong { font-size: 16px; }

  /* Cert prep: cards and quiz breathe less, read the same */
  .pq-card { padding: 18px 16px; }
  .pq-q { font-size: 15.5px; }
  .pq-opt { padding: 12px 13px; font-size: 13.5px; }
  .pq-final-score { font-size: 36px; }
  .pa-facts { grid-template-columns: repeat(2, 1fr); }
  .pa-fact { padding: 12px 14px; }
  .pa-fact strong { font-size: 17px; }
  .pa-steps li { padding-left: 46px; }
  .pa-drills { padding: 18px 16px; }
  .pa-drill-grid { grid-template-columns: 1fr 1fr; }

  /* Paths & callouts */
  .xl-mod { padding: 14px 14px; gap: 12px; }
  .next-level-block, .workbook-callout { padding: 18px 16px; }
  .rc-section { padding: 18px 16px; }

  /* Tool hub & suite cards */
  .tool-card, .ss-tab-card { padding: 18px 16px; }
}
/* ===== Suite chips (app member strip + anywhere) ===== */
.suite-strip{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;}
.suite-chip{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;font-weight:800;color:var(--ink);text-decoration:none;background:var(--surface);border:2px solid var(--surface-border);border-radius:100px;padding:8px 15px;box-shadow:var(--shadow-hard);transition:transform .12s;}
.suite-chip:hover{transform:translate(-1px,-1px);}
.suite-chip span{font-size:14px;}
@media(max-width:640px){.suite-strip{gap:6px;}.suite-chip{font-size:11px;padding:7px 12px;}}

@media (max-width: 380px) {
  .pa-drill-grid { grid-template-columns: 1fr; }
  .pa-facts { grid-template-columns: 1fr 1fr; gap: 10px; }
  .suite-chip { font-size: 10.5px; padding: 6px 10px; }
}


/* ===== Button standardization: one shape language sitewide =====
   All action buttons share the brand pill: 100px radius, 2px border,
   hard shadow, weight 800, press-down on :active. Colors stay per-context. */
a.coa-btn, button.coa-btn, a.rc-btn, button.rc-btn, a.lg-btn, button.lg-btn,
a.pq-next, button.pq-next, a.quiz-next, button.quiz-next,
a.pa-drill-next, button.pa-drill-next,
a.ss-dl-btn, button.ss-dl-btn,
a.next-level-btn, button.next-level-btn,
a.workbook-callout-btn, button.workbook-callout-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border-radius: 100px;
  border: 2px solid var(--surface-border);
  box-shadow: var(--shadow-hard);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 22px;
  cursor: pointer;
  text-decoration: none;
}
a.ss-dl-btn, button.ss-dl-btn { font-size: 14.5px; padding: 13px 26px; }
a.coa-btn:active, button.coa-btn:active, a.rc-btn:active, button.rc-btn:active,
a.lg-btn:active, button.lg-btn:active, a.pq-next:active, button.pq-next:active,
a.quiz-next:active, button.quiz-next:active, a.pa-drill-next:active, button.pa-drill-next:active,
a.ss-dl-btn:active, button.ss-dl-btn:active, a.next-level-btn:active, button.next-level-btn:active,
a.workbook-callout-btn:active, button.workbook-callout-btn:active {
  transform: translate(2px, 2px); box-shadow: none;
}
/* CTA pairs: proper spacing instead of nbsp hacks; both buttons get the emboss */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.cta-row a.btn { box-shadow: var(--shadow-hard); }
.cta-row a.btn:active { transform: translate(2px, 2px); box-shadow: none; }
@media (max-width: 480px) { .cta-row a.btn { flex: 1; justify-content: center; } }


/* ================== CONCEPT E OVERLAY ================== */
/* Serif display with the gold screenprint offset, scaled by size */
h1, .page-title { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.01em;
  text-shadow: 3px 3px 0 rgba(232,169,60,.5); }
h2 { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.005em;
  text-shadow: 2px 2px 0 rgba(232,169,60,.4); }
h3 { font-family: 'Fraunces', Georgia, serif; text-shadow: 1px 1px 0 rgba(232,169,60,.35); }

/* Letterpress buttons: pressed labels + stamped faces */
.btn.primary, .btn[class*="primary"] {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -2px 0 rgba(0,0,0,.16), 0 4px 12px rgba(30,91,69,.22);
  text-shadow: 0 -1px 0 rgba(0,0,0,.28);
}
.btn:not(.primary) { text-shadow: 0 1px 0 rgba(255,255,255,.75); }
.btn { border-radius: 100px; font-weight: 700; }

/* Footer becomes the ad's green wave band */
.footer { position: relative; margin-top: 56px; background: var(--teal-deep) !important;
  border-top: none !important; }
.footer::before { content: ""; position: absolute; left: -6%; right: -6%; top: -34px; height: 70px;
  background: var(--teal-deep); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.footer, .footer a { color: #CFE3D8; }
.footer a:hover { color: #FFFFFF; }
.footer strong, .footer b { color: #FFFFFF; }

/* Topbar on paper */
.topbar { background: var(--cream); border-bottom: 1.5px solid var(--surface-border); }
.topbar-nav a:hover { color: var(--teal-deep); }

/* Cards stamp softly instead of hard-offsetting */
.content-block, .tool-card, .price-card, .card {
  box-shadow: 0 6px 16px rgba(30,43,37,.07);
}

/* Concept E: topbar text is always ink on paper */
.topbar-brand-text { color: var(--ink) !important; }
.topbar-brand-text small { color: var(--coral) !important; }
.topbar-nav a { color: var(--ink-soft) !important; }
.topbar-nav a:hover { color: var(--teal-deep) !important; }
