/* ============================================================
   Small Landlord Lab — Stylesheet
   Fonts: IBM Plex Serif (headings), IBM Plex Mono (labels/prices), Inter (body)
   ============================================================ */

/* ── Tokens ── */
:root {
  --navy:        #1F2A44;
  --navy-hover:  #2D3E5E;
  --gray-dark:   #374151;
  --gray-mid:    #4B5563;
  --gray-light:  #6B7280;
  --bg-light:    #F8FAFC;
  --bg-white:    #FFFFFF;
  --border:      #E5E7EB;
  --border-dark: #D1D5DB;
  --text-base:   #1F2937;
  --text-light:  #4B5563;

  --font-serif: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --font-mono:  'IBM Plex Mono', 'Courier New', Courier, monospace;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 760px;
  --pad-x: 1.5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-base);
  background: var(--bg-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
main { flex: 1; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.625rem, 4vw, 2.25rem); font-weight: 500; }
h2 { font-size: clamp(1.25rem, 3vw, 1.625rem); font-weight: 500; }
h3 { font-size: 1.125rem; font-weight: 500; }
h4 { font-size: 0.9375rem; font-weight: 600; font-family: var(--font-sans); }
p  { color: var(--text-light); line-height: 1.75; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
}
.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--navy);
}
@media (max-width: 580px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 0.875rem var(--pad-x);
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6875rem 1.375rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:hover { background: var(--navy-hover); border-color: var(--navy-hover); }
.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-outline:hover { background: var(--bg-light); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* ── Eyebrow / Label ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */
.hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.hero .eyebrow { margin-bottom: 1.25rem; }
.hero h1 { margin-bottom: 1.125rem; max-width: 580px; }
.hero .lead {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

/* ── Tools section (home) ── */
.tools-section { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.tools-section > .container > .eyebrow { margin-bottom: 2rem; }

/* Product Card */
.product-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem 2rem;
  background: var(--bg-white);
  transition: border-color 0.15s;
}
.product-card:hover { border-color: var(--border-dark); }
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.card-format {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.product-card h3 { margin-bottom: 0.75rem; font-size: 1.125rem; }
.product-card p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.card-price {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gray-mid);
}

/* ── Value Prop (home) ── */
.value-section { padding: 3rem 0; }
.value-section h2 { margin-bottom: 1rem; }
.value-section p { max-width: 580px; font-size: 0.9375rem; }

/* ─────────────────────────────────────────
   TOOLS LISTING PAGE
───────────────────────────────────────── */
.page-header {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header h1 { margin-bottom: 0.875rem; }
.page-header .lead {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.tools-grid {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ─────────────────────────────────────────
   PRODUCT DETAIL PAGE
───────────────────────────────────────── */
.product-header {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.product-header .eyebrow { margin-bottom: 1rem; }
.product-header h1 { margin-bottom: 1rem; }
.product-header .lead { font-size: 1.0625rem; color: var(--text-light); max-width: 580px; line-height: 1.7; }

.product-body { padding: 2.5rem 0; }

/* Metrics grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.625rem;
  margin: 1.25rem 0;
}
.metric-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-mid);
  padding: 0.625rem 0.875rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.metric-item::before { content: "—"; color: var(--border-dark); }

/* Steps list */
.steps-list {
  list-style: none;
  counter-reset: steps;
  margin: 1.25rem 0;
}
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-light);
  align-items: flex-start;
  line-height: 1.6;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-light);
  min-width: 1.75rem;
  padding-top: 0.125rem;
  flex-shrink: 0;
}

/* Includes list */
.includes-list {
  list-style: none;
  margin: 1.25rem 0;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-light);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: "✓";
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* Purchase box */
.purchase-box {
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.price-amount {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.price-note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--gray-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* FAQ */
.faq { margin: 2rem 0; }
.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.faq-a { font-size: 0.9375rem; color: var(--text-light); }

/* Product subsection headings */
.product-body h2 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.product-body h2:not(:first-child) { margin-top: 3rem; }

/* ─────────────────────────────────────────
   GUIDE PAGE
───────────────────────────────────────── */
.guide-header {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.guide-header .eyebrow { margin-bottom: 1rem; }
.guide-header h1 { margin-bottom: 0.75rem; }
.guide-header .subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gray-mid);
  font-style: italic;
  margin-top: 0.25rem;
}

/* Table of Contents */
.toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.toc .toc-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1rem;
  display: block;
}
.toc ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.toc li { font-size: 0.9375rem; }
.toc a { color: var(--navy); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* Guide body */
.guide-body { padding: 2.5rem 0; }
.guide-section { margin-bottom: 4rem; }
.guide-section h2 {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.guide-section h3 {
  font-size: 1.0625rem;
  margin: 2rem 0 0.875rem;
  color: var(--navy);
}
.guide-section p { font-size: 0.9375rem; margin-bottom: 1rem; }
.guide-section p:last-child { margin-bottom: 0; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
}
thead th {
  background: var(--bg-light);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  white-space: nowrap;
}
tbody td {
  padding: 0.75rem 1rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFBFC; }
td.field-name {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--gray-dark);
  white-space: nowrap;
  font-weight: 500;
}
td.example-val {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--gray-mid);
  white-space: nowrap;
}

/* Callout boxes */
.callout {
  border-left: 3px solid var(--navy);
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}
.callout p { margin-bottom: 0; font-size: 0.9375rem; }
.callout-warning {
  border-left-color: #B45309;
  background: #FFFBEB;
}
.callout-warning p { color: #78350F; }

/* Flow diagram */
.flow-diagram {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.9;
  margin: 1.5rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-light);
}
.flow-diagram .flow-num {
  display: inline-block;
  width: 1.5rem;
  color: var(--gray-light);
}
.flow-diagram .flow-arrow {
  display: block;
  padding-left: 1.5rem;
  color: var(--border-dark);
}
.flow-diagram strong { color: var(--navy); }

/* Decision checklist */
.decision-list {
  list-style: none;
  margin: 1.25rem 0;
  counter-reset: decision;
}
.decision-list > li {
  counter-increment: decision;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.decision-list > li:last-child { border-bottom: none; }
.decision-list > li > h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.decision-list > li > h4::before {
  content: counter(decision);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-light);
  font-weight: 400;
  min-width: 1rem;
}
.decision-list > li > p { font-size: 0.9375rem; margin-left: 1.75rem; }

/* Guide CTA */
.guide-cta {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.25rem;
  text-align: center;
  margin-top: 3rem;
}
.guide-cta h3 { margin-bottom: 0.625rem; }
.guide-cta p { margin-bottom: 1.5rem; font-size: 0.9375rem; }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-body { padding: 2.5rem 0; max-width: 620px; }
.about-body p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-body { padding: 2.5rem 0; max-width: 480px; }
.contact-body > p { font-size: 0.9375rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-base);
  background: var(--bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31, 42, 68, 0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-top: 1rem;
}
.form-success {
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.form-success p { margin-bottom: 0; font-size: 0.9375rem; }
.form-success.visible { display: block; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-light);
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--navy); }

/* ─────────────────────────────────────────
   TOOLS LISTING — card-tag (category label)
───────────────────────────────────────── */
.card-tag {
  font-family: var(--font-mono);
  font-size: 0.6375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 0.175rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.card-body { margin-bottom: 1.25rem; }

/* ─────────────────────────────────────────
   BUNDLE PAGE
───────────────────────────────────────── */
.bundle-hero {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.bundle-hero .eyebrow { margin-bottom: 1.25rem; }
.bundle-hero h1 { margin-bottom: 1rem; }
.bundle-hero .lead {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.bundle-price-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.bundle-price-block {
  display: flex;
  flex-direction: column;
}
.bundle-price-amount {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.bundle-compare {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bundle-compare-was {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--gray-light);
  text-decoration: line-through;
}
.bundle-compare-save {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Bundle category groups */
.bundle-category {
  margin: 2rem 0 2.5rem;
}
.bundle-cat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.bundle-tool-list {
  list-style: none;
}
.bundle-tool-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.bundle-tool-list li:last-child { border-bottom: none; }
.bundle-tool-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.bundle-tool-name:hover { text-decoration: underline; }
.bundle-tool-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Workflow */
.bundle-workflow {
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.workflow-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.workflow-step:last-child { border-bottom: none; }
.workflow-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-light);
  min-width: 2rem;
  padding-top: 0.2rem;
  flex-shrink: 0;
}
.workflow-content h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.workflow-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}
.workflow-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Utility ── */
.mt-sm  { margin-top: 0.5rem; }
.mt-md  { margin-top: 1rem; }
.mt-lg  { margin-top: 1.5rem; }
.mb-sm  { margin-bottom: 0.5rem; }
.mb-md  { margin-bottom: 1rem; }
.mb-lg  { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─────────────────────────────────────────
   V2 VISUAL ENHANCEMENTS
   Accent: Orange #D97706 / #B45309
───────────────────────────────────────── */

/* Orange top stripe on nav */
.nav { border-top: 3px solid #D97706; }

/* Logo mark in nav */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--navy);
}
.nav-logo svg { display: block; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--navy);
}

/* Dark hero with subtle gradient */
.hero-dark {
  background: var(--navy);
  border-bottom: none;
  padding: 5rem 0 4rem;
}
.hero-dark .eyebrow { color: #D97706; }
.hero-dark h1 { color: #FFFFFF; max-width: 560px; }
.hero-dark .lead { color: rgba(255,255,255,0.72); }

/* Orange primary button */
.btn-teal {
  background: #D97706;
  border-color: #D97706;
  color: #fff;
}
.btn-teal:hover {
  background: #B45309;
  border-color: #B45309;
}

/* Ghost button (for use on dark hero) */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* Card enhancements */
.product-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  border-left: 3px solid transparent;
}
.product-card:hover {
  border-color: var(--border-dark);
  box-shadow: 0 4px 14px rgba(31,42,68,0.08);
  transform: translateY(-1px);
}

/* Orange accents */
.includes-list li::before { color: #D97706; }
.metric-item::before { color: #D97706; }
.purchase-box { border-color: #D97706; }
.price-amount { color: #D97706; }

/* Orange bundle price on home + bundle page */
.bundle-price-amount { color: #D97706; }
.bundle-compare-save { color: #D97706; }

/* Value section */
.value-section { background: var(--bg-white); padding: 3.5rem 0; }

/* Home bundle strip */
.home-bundle { background: #FFFBEB; }

/* Home guide callout */
.home-guide {
  padding: 3.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.home-guide .eyebrow { margin-bottom: 0.75rem; }
.home-guide h2 { margin-bottom: 0.75rem; }
.home-guide p { max-width: 580px; font-size: 0.9375rem; }

/* Tools page section label */
.tools-section-label { border-bottom-color: #D97706; }

/* Card hover */
.product-card:hover { border-left-color: #D97706; }

/* Tools bundle callout */
.tools-bundle-callout { border-color: #D97706; }

/* Dark navy footer */
.footer-dark {
  background: var(--navy);
  border-top: none;
}
.footer-dark .footer-brand { color: rgba(255,255,255,0.45); }
.footer-dark .footer-links a { color: rgba(255,255,255,0.45); }
.footer-dark .footer-links a:hover { color: #fff; }

/* ─────────────────────────────────────────
   HOME PAGE v2 — hero actions, categories, bundle
───────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.home-categories {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.home-categories > .container > .eyebrow { margin-bottom: 1.75rem; }

.category-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}
.category-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.category-tool-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.category-tool-list a {
  font-size: 0.9375rem;
  color: var(--navy);
  text-decoration: none;
}
.category-tool-list a:hover { text-decoration: underline; text-underline-offset: 2px; }

.home-bundle {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.home-bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.home-bundle-inner h2 { margin-bottom: 0.5rem; }
.home-bundle-inner p  { font-size: 0.9375rem; max-width: 420px; }
.home-bundle-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   TOOLS PAGE v2 — section labels + bundle callout
───────────────────────────────────────── */
.tools-section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 2rem 0 0.75rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 0.25rem;
}
.tools-section-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
}
.tools-section-sub {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.tools-bundle-callout {
  margin-top: 2rem;
  padding: 2rem 2.25rem;
  background: var(--bg-light);
  border: 1.5px solid var(--navy);
  border-radius: 6px;
}
.tools-bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.tools-bundle-inner h3 { margin-bottom: 0.375rem; }
.tools-bundle-inner p  { font-size: 0.9375rem; color: var(--text-light); }

/* ─────────────────────────────────────────
   TERMS AGREEMENT CHECKBOX
───────────────────────────────────────── */
.terms-agree {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.terms-agree input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.terms-agree label {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  cursor: pointer;
  line-height: 1.4;
}
.terms-agree label a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Disabled buy button */
.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   TERMS PAGE
───────────────────────────────────────── */
.product-body h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--navy);
}
