/* ============================================
   Truxim - Global Stylesheet
   Version 1.0
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg: #fcfcfc;
  --fg: #9e7c63;
  --accent1: #ccac92;
  --accent2: #bd9c82;
  --accent3: #ad8c73;
  --text: #2c2c2c;
  --text-secondary: #5a5a5a;
  --text-light: #888;
  --border: #e8e0d8;
  --border-light: #f0ebe6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --radius: 4px;
  --max-width: 1140px;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --transition: 0.2s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--accent3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.2rem;
}

ul, ol {
  padding-left: 1.5rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

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

.text-fg {
  color: var(--fg);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent1);
  border: none;
  margin: 2rem 0;
}

.divider.centered {
  margin: 2rem auto;
}

/* --- Header --- */
.site-header {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-logo img,
.site-logo svg {
  height: 36px;
  width: auto;
}

.nav-toggle-check {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 0.5rem 0;
}

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

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--fg);
}

/* --- Mobile Nav --- */
@media (max-width: 860px) {
  .nav-toggle-label {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }

  .nav-toggle-check:checked ~ .main-nav {
    display: flex;
  }
}

/* --- Hero --- */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--fg);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent3);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--fg);
}

.btn-outline:hover {
  background-color: var(--fg);
  color: var(--white);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 0.75rem;
  display: block;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* --- Product Grid --- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  transition: box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card .product-icon {
  width: 48px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.product-card h3 {
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --- Phase/Framework Blocks --- */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent1);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 1.2rem;
}

.phase-block h4 {
  font-family: var(--font-heading);
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.phase-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .phase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .phase-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Purchase Section --- */
.purchase-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.purchase-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}

.purchase-btn:hover {
  border-color: var(--fg);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}

.purchase-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- FAQ / Accordion (CSS-only) --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  display: none;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  line-height: 1.5;
}

.faq-label:hover {
  color: var(--fg);
}

.faq-label::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent1);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-question:checked ~ .faq-label::after {
  content: '\2212';
}

.faq-question:checked ~ .faq-answer {
  max-height: 600px;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.comparison-table th {
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 2px solid var(--border);
  background: var(--bg);
}

.comparison-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--fg);
  font-weight: 600;
}

/* --- Article / Blog --- */
.article-list {
  max-width: 780px;
  margin: 0 auto;
}

.article-entry {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.article-entry:last-child {
  border-bottom: none;
}

.article-entry h2 {
  margin-bottom: 0.5rem;
}

.article-entry h2 a {
  color: var(--text);
}

.article-entry h2 a:hover {
  color: var(--fg);
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.article-body h3 {
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
}

.article-body h4 {
  margin: 1.5rem 0 0.75rem;
}

.article-body p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.article-body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.article-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.article-cta p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* --- Full Article Page --- */
.article-full {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 0;
}

.article-full h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

/* --- Resource Index Cards --- */
.resource-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
}

.resource-card:last-child {
  border-bottom: none;
}

.resource-card h3 {
  margin-bottom: 0.5rem;
}

.resource-card h3 a {
  color: var(--text);
}

.resource-card h3 a:hover {
  color: var(--fg);
}

.resource-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* --- Email Capture Placeholder --- */
.email-capture {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
}

.email-capture h3 {
  margin-bottom: 0.75rem;
}

.email-capture p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.email-capture .brevo-placeholder {
  padding: 2rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.85rem;
  font-family: monospace;
}

/* --- Checklist Display --- */
.checklist-section {
  margin-bottom: 2.5rem;
}

.checklist-section h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.checklist-items {
  list-style: none;
  padding: 0;
}

.checklist-items li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}

.checklist-items li:last-child {
  border-bottom: none;
}

.checklist-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--accent1);
  border-radius: 2px;
}

/* --- Callout Box --- */
.callout {
  padding: 2rem 2.5rem;
  background: var(--white);
  border-left: 3px solid var(--fg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.callout p:last-child {
  margin-bottom: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-brand img,
.footer-brand svg {
  height: 28px;
  width: auto;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-legal {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
}

.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- About Page --- */
.about-content {
  max-width: 740px;
  margin: 0 auto;
}

.about-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal-content ul {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
}

/* --- SEQ Q&A Section --- */
.qa-section {
  max-width: 780px;
  margin: 0 auto;
}

.qa-item {
  margin-bottom: 2.5rem;
}

.qa-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.qa-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Responsive Typography --- */
@media (max-width: 860px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1.05rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-lg {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .card {
    padding: 1.5rem;
  }

  .email-capture {
    padding: 2rem 1.5rem;
  }
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--fg);
  color: var(--white);
  font-size: 0.85rem;
  z-index: 200;
}

.skip-link:focus {
  top: 0;
}

/* --- Schema / SEO Helpers --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Agent Page Support Classes --- */

/* Hero inner / variants */
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-subtitle,
.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Button aliases */
.button,
.cta-button {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  background-color: var(--fg);
  color: var(--white);
}

.button:hover,
.cta-button:hover {
  background-color: var(--accent3);
  color: var(--white);
}

.button-primary {
  background-color: var(--fg);
  color: var(--white);
}

.button-secondary {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--fg);
}

.button-secondary:hover {
  background-color: var(--fg);
  color: var(--white);
}

.button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* CTA section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-buttons,
.about-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

/* Content sections */
.content-section {
  padding: 4rem 0;
}

.content-section .container {
  max-width: 780px;
  margin: 0 auto;
}

/* How It Works page */
.method-overview {
  padding: 3rem 0 2rem;
  max-width: 740px;
}

.method-overview .container {
  max-width: 740px;
}

.method-overview p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.phases-grid-section {
  padding: 2rem 0 4rem;
}

.phase-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.phase-card h3 {
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.phase-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.phases-detail {
  padding: 2rem 0 4rem;
}

.phase-detail-block {
  margin-bottom: 3.5rem;
  max-width: 740px;
}

.phase-detail-block h2 {
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.phase-detail-block h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.phase-detail-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.phase-detail-block ul {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.phase-detail-block li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
}

.how-to-use {
  padding: 3rem 0;
  max-width: 740px;
}

.how-to-use .container {
  max-width: 740px;
}

.how-to-use h2 {
  margin-bottom: 1rem;
}

.how-to-use p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* About page */
.about-section {
  margin-bottom: 2.5rem;
}

.what-not-list,
.who-list,
.who-not-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.what-not-list li,
.who-list li,
.who-not-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.what-not-list li::before,
.who-not-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 2px;
  background: var(--accent1);
}

.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 2px;
  background: var(--fg);
}

.about-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

/* Products page */
.products-section {
  padding: 3rem 0 5rem;
}

.product-card-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Free checklist page */
.checklist-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.checklist-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.checklist-category {
  margin-bottom: 2rem;
}

.checklist-category h3 {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.2rem;
}

.checklist-category ul {
  list-style: none;
  padding: 0;
}

.checklist-category li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}

.checklist-category li:last-child {
  border-bottom: none;
}

.checklist-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--accent1);
  border-radius: 2px;
}

/* Email capture inner */
.email-capture-inner {
  max-width: 100%;
}

/* Callout inner */
.callout-inner {
  max-width: 740px;
  margin: 0 auto;
}

.callout-inner h3 {
  margin-bottom: 0.75rem;
}

/* Disclaimer block on checklist page */
.disclaimer {
  padding: 2rem 0;
  text-align: center;
}

.disclaimer-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.disclaimer-inner p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Feature list (product page) */
.feature-list {
  max-width: 780px;
  margin: 0 auto;
}

.feature-item {
  margin-bottom: 2.5rem;
}

.feature-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Why different */
.why-different {
  max-width: 740px;
}

.why-different p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Article navigation */
.article-nav {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.article-nav ul {
  list-style: none;
  padding: 0;
}

.article-nav li {
  margin-bottom: 0.5rem;
}

.article-nav a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.article-nav a:hover {
  color: var(--fg);
}

/* Resources page */
.hero-section {
  padding: 6rem 0 5rem;
  text-align: center;
}

.article-nav-section {
  padding: 2rem 0;
  max-width: 780px;
  margin: 0 auto;
}

.article-nav-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-nav-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.article-navigation ul {
  list-style: none;
  padding: 0;
}

.article-navigation li {
  margin-bottom: 0.5rem;
}

.article-navigation a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.article-navigation a:hover {
  color: var(--fg);
}

.article-header {
  margin-bottom: 1.5rem;
}

.article-header h2 {
  margin-bottom: 0.25rem;
}

/* Products section wrapper */
.products-section {
  padding: 3rem 0 5rem;
}

/* --- Visual Structure: Section Alternation --- */
.section-alt {
  background: rgba(204, 172, 146, 0.06);
}

/* --- Visual Structure: Phase Cards with Shadow --- */
.phase-block {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}

.phase-block:hover {
  box-shadow: var(--shadow-md);
}

/* --- Visual Structure: Domain Cards (Product Page) --- */
.domain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}

.domain-card:hover {
  box-shadow: var(--shadow-md);
}

.domain-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--fg);
}

.domain-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--fg);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domain-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.domain-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.domain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.domain-grid .domain-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

@media (max-width: 860px) {
  .domain-grid {
    grid-template-columns: 1fr;
  }
  .domain-grid .domain-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

/* --- Visual Structure: Comparison Table Premium Highlight --- */
.comparison-table th:last-child {
  background: rgba(204, 172, 146, 0.12);
  color: var(--fg);
}

.comparison-table td:last-child {
  background: rgba(204, 172, 146, 0.06);
}

.comparison-table .check-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.comparison-table .check-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--fg);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-table .dash-icon {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* --- Visual Structure: Email Callout Box --- */
.email-callout {
  max-width: 560px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.email-callout p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Phases Section (How It Works page) --- */
.phases-section {
  padding: 4rem 0;
}

.phases-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

/* --- Overview Section --- */
.overview-section {
  padding: 4rem 0 2rem;
}

.overview-content {
  max-width: 740px;
  margin: 0 auto;
}

.overview-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- How To Use Section --- */
.how-to-use-section {
  padding: 3rem 0;
}

.how-to-use-content {
  max-width: 740px;
  margin: 0 auto;
}

.how-to-use-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* --- Built On Method Section --- */
.built-on-method-section {
  padding: 3rem 0;
}

.built-on-method-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: rgba(204, 172, 146, 0.06);
  border-left: 3px solid var(--fg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.built-on-method-content h2 {
  margin-bottom: 1rem;
}

.built-on-method-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* --- Link Primary --- */
.link-primary {
  color: var(--fg);
  font-weight: 500;
}

.link-primary:hover {
  color: var(--accent3);
}

/* --- Phase Examples (How It Works) --- */
.phase-purpose {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.phase-outcome {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.phase-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-examples li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.phase-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent1);
}

/* --- Hero Content (agent pages) --- */
.hero-content {
  text-align: center;
}

/* --- CTA Content --- */
.cta-content {
  text-align: center;
}

/* --- Pricing Section --- */
.pricing-section {
  text-align: center;
}

/* --- Legal Footer Block (inside content) --- */
.legal-footer-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.legal-footer-block p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle-label,
  .email-capture,
  .purchase-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
