/* =====================================================
   PAGE: beste-hausplaner-software-kostenlos
   Site: zipano.de
   Scope: Styles unique to this comparison/rating page.
   All shared styles live in css/global.css.
   ===================================================== */


/* ---- 1. Image Placeholders ---- */
.img-placeholder {
  background: var(--c-bg-alt);
  border: 2px dashed var(--c-border-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-8);
  text-align: center;
  color: var(--c-text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.img-placeholder__label {
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
}

.img-placeholder__prompt {
  max-width: 480px;
  color: var(--c-text-muted);
  font-style: italic;
}

.img-placeholder--hero {
  min-height: 340px;
  border-radius: var(--radius-lg);
}

.img-placeholder--product {
  min-height: 220px;
  margin: var(--sp-5) 0;
}


/* ---- 2. Hero Section ---- */
.hero {
  background: linear-gradient(155deg, #EEF3FD 0%, #fff 55%);
  padding: var(--sp-12) 0 var(--sp-16);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text-muted);
}

.hero-badge--gold {
  background: var(--c-highlight);
  color: #92640a;
  border-color: #f3d08a;
}

.hero-badge--blue {
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-color: #c2d4f5;
}

.hero h1 {
  margin-bottom: var(--sp-5);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__cta-note {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero { padding: var(--sp-8) 0 var(--sp-10); }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hero__image { order: -1; }

  .hero__cta-group { flex-direction: column; align-items: flex-start; }
}


/* ---- 3. Intro Section ---- */
.intro { background: var(--c-bg); }

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.intro__text p { color: var(--c-text-muted); }

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--c-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid #c2d4f5;
}

.feature-checklist__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--c-text);
  line-height: 1.5;
}

.feature-checklist .icon { color: var(--c-primary); margin-top: 2px; }

@media (max-width: 768px) {
  .intro__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}


/* ---- 4. Quick Ranking Table Section ---- */
.ranking-section { background: var(--c-bg-alt); }

.ranking-section .section-title { margin-bottom: var(--sp-2); }

.ranking-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  margin-top: var(--sp-8);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--c-bg);
}

.ranking-table thead th {
  background: #0F172A;
  color: #e2e8f0;
  padding: 0.85rem 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: none;
  white-space: nowrap;
}

.ranking-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

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

.ranking-table tbody tr:hover td { background: var(--c-primary-light); }

.ranking-table .tr-highlight td {
  background: var(--c-accent-light);
  border-left: 3px solid var(--c-accent);
}

.ranking-table .tr-highlight:hover td { background: #ffe8d4; }

.rank-cell {
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--c-text-muted);
  min-width: 48px;
}

.rank-cell--gold  { color: #B45309; }
.rank-cell--silver { color: #4B5563; }

.product-name-cell {
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
}

.product-name-cell__sub {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--c-text-muted);
  display: block;
  margin-top: 2px;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  white-space: nowrap;
}

.score-pill--high {
  background: var(--c-success-bg);
  color: var(--c-success);
}

.score-pill--mid {
  background: var(--c-primary-light);
  color: var(--c-primary);
}

.price-tag {
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
}

.price-tag--free {
  color: var(--c-success);
}

.platform-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.platform-tag--online {
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-color: #c2d4f5;
}

.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  white-space: nowrap;
}

.label-badge--recommended {
  background: var(--c-accent-light);
  color: var(--c-accent);
  border: 1px solid #f5ab7a;
}

.label-badge--testsieger {
  background: var(--c-highlight);
  color: #B45309;
  border: 1px solid #f3d08a;
}

.label-badge--profi {
  background: #F0F4FF;
  color: var(--c-primary);
  border: 1px solid #c2d4f5;
}

.table-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--c-primary);
  text-decoration: none;
}

.table-cta-link:hover { text-decoration: underline; color: var(--c-primary-dark); }

.table-cta-link--accent { color: var(--c-accent); }
.table-cta-link--accent:hover { color: var(--c-accent-hover); }


/* ---- 5. CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #F56500 0%, #D95800 100%);
  padding: var(--sp-10) 0;
  color: #fff;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.cta-banner__text-block {}

.cta-banner__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-bottom: var(--sp-2);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, var(--text-2xl));
  margin-bottom: var(--sp-2);
}

.cta-banner__sub {
  opacity: 0.88;
  font-size: var(--text-base);
  margin-bottom: 0;
}

.cta-banner__btn {
  background: #fff;
  color: var(--c-accent);
  border: 2px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.cta-banner__btn:hover {
  background: #fff5f0;
  color: var(--c-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-banner__features {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}

.cta-banner__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-6);
  }

  .cta-banner__btn { align-self: stretch; justify-content: center; }
}


/* ---- 6. Product Card (Detailed Reviews) ---- */
.reviews-section { background: var(--c-bg); }

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
  margin-top: var(--sp-8);
}

.product-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s;
}

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

.product-card--highlighted {
  border-color: var(--c-accent);
  border-width: 2px;
  box-shadow: 0 6px 28px rgba(245,101,0,0.13), var(--shadow-md);
}

.product-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-alt);
  flex-wrap: wrap;
}

.product-card--highlighted .product-card__header {
  background: var(--c-accent-light);
  border-bottom-color: #f5ab7a;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.rank-badge--1 {
  background: var(--c-highlight);
  color: #92640a;
  border: 2px solid #f3d08a;
}

.rank-badge--2 {
  background: var(--c-accent-light);
  color: var(--c-accent);
  border: 2px solid #f5ab7a;
}

.rank-badge--other {
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
  border: 2px solid var(--c-border);
}

.product-card__title-group { flex: 1; min-width: 0; }

.product-card__title-group h3 {
  font-size: var(--text-xl);
  line-height: 1.2;
  margin-bottom: var(--sp-1);
}

.product-card__tagline {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: 0;
}

.product-card__score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  flex-shrink: 0;
}

.score-circle {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.score-circle--gold  { background: #B45309; }
.score-circle--accent { background: var(--c-accent); }
.score-circle--gray  { background: var(--c-text-muted); }

.star-row {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
}

.star-row .star-empty { color: var(--c-border-dark); }

.score-label {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.product-card__body { padding: var(--sp-6); }

.product-card__intro {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
  line-height: 1.75;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  border: 1px solid var(--c-border);
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
}

.meta-chip--free {
  background: var(--c-success-bg);
  color: var(--c-success);
  border-color: #a7f3c4;
}

.meta-chip--paid {
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-color: #c2d4f5;
}

.meta-chip--online {
  background: #EFF6FF;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
}

.pros-block,
.cons-block {
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
}

.pros-block {
  background: var(--c-success-bg);
  border: 1px solid #a7f3c4;
}

.cons-block {
  background: var(--c-error-bg);
  border: 1px solid #fca5a5;
}

.pros-cons__heading {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.pros-block .pros-cons__heading { color: var(--c-success); }
.cons-block .pros-cons__heading { color: var(--c-error); }

.pros-cons__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--c-text);
}

.pros-block .icon { color: var(--c-success); flex-shrink: 0; margin-top: 2px; }
.cons-block .icon { color: var(--c-error);   flex-shrink: 0; margin-top: 2px; }

@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* Verdict Box */
.verdict-box {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  margin-top: var(--sp-5);
}

.verdict-box--highlighted {
  background: var(--c-accent-light);
  border-color: #f5ab7a;
}

.verdict-box__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}

.verdict-box--highlighted .verdict-box__heading { color: var(--c-accent); }

.verdict-box p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}

.verdict-box p:last-of-type { margin-bottom: var(--sp-4); }

.verdict-box .btn { font-size: var(--text-sm); }


/* ---- 7. Comparison Feature Table ---- */
.comparison-section { background: var(--c-bg-alt); }

.comparison-table th,
.comparison-table td {
  text-align: center;
  min-width: 110px;
  padding: 0.65rem 0.75rem;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  min-width: 200px;
  font-weight: 600;
  background: var(--c-bg-alt);
  position: sticky;
  left: 0;
  z-index: 1;
}

.comparison-table thead th:first-child {
  background: #0F172A;
}

.comparison-table thead th.col-highlight {
  background: var(--c-accent);
  color: #fff;
}

.comparison-table tbody td.col-highlight {
  background: var(--c-accent-light);
}

.comparison-table tbody tr:nth-child(even) td.col-highlight {
  background: #fde8d4;
}

.comparison-table tbody tr:hover td.col-highlight {
  background: #fbd6bc;
}

.check-icon   { color: var(--c-success); }
.cross-icon   { color: var(--c-error); }
.partial-icon { color: var(--c-gold); }

.category-row td {
  background: var(--c-primary-light) !important;
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-primary);
  padding: 0.4rem 0.75rem;
  border-top: 2px solid var(--c-border);
}


/* ---- 8. Audience Guide Section ---- */
.audience-section { background: var(--c-bg); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.audience-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: box-shadow 0.2s;
}

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

.audience-card--featured {
  background: var(--c-accent-light);
  border-color: #f5ab7a;
}

.audience-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--c-primary);
}

.audience-card--featured .audience-card__icon {
  background: rgba(245,101,0,0.12);
  color: var(--c-accent);
}

.audience-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--sp-1);
}

.audience-card__pick {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.audience-card--featured .audience-card__pick { color: var(--c-accent); }

.audience-card p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

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

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


/* ---- 9. Free vs. Paid Section ---- */
.free-paid-section { background: var(--c-bg-alt); }

.free-paid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.tier-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}

.tier-card--free  { border-top: 4px solid var(--c-success); }
.tier-card--paid  { border-top: 4px solid var(--c-primary); }

.tier-card__label {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-1);
}

.tier-card--free .tier-card__label  { color: var(--c-success); }
.tier-card--paid .tier-card__label  { color: var(--c-primary); }

.tier-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-4); }

.tier-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--c-text-muted);
}

.tier-card--free .tier-list .icon  { color: var(--c-success); flex-shrink: 0; margin-top: 2px; }
.tier-card--paid .tier-list .icon  { color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }

.tier-card__example {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.tier-card__example strong { color: var(--c-text); }

@media (max-width: 640px) {
  .free-paid-grid { grid-template-columns: 1fr; }
}


/* ---- 10. Standards Section (WoFlV / DIN 277) ---- */
.standards-section { background: var(--c-bg); }

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.standard-card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-bg-alt);
}

.standard-card__eyebrow {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.standard-card h4 { margin-bottom: var(--sp-3); font-size: var(--text-xl); }

.standard-card p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

.standards-compliance {
  margin-top: var(--sp-8);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.standards-compliance__title {
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 700;
  background: var(--c-primary);
  color: #fff;
}

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


/* ---- 11. DWG / DXF Section ---- */
.formats-section { background: var(--c-bg-alt); }

.formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.format-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
}

.format-card__label {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: #0F172A;
  color: #e2e8f0;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-xs);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
  font-family: monospace;
}

.format-card h4 { font-size: var(--text-lg); margin-bottom: var(--sp-3); }

.format-card p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

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


/* ---- 12. FAQ Section ---- */
.faq-section { background: var(--c-bg); }

.faq-section .section-title { margin-bottom: var(--sp-2); }

.faq-list { margin-top: var(--sp-8); }


/* ---- 13. Bottom CTA Banner (variant) ---- */
.cta-banner--bottom {
  background: linear-gradient(135deg, #0F172A 0%, #1B4FCC 100%);
}

.cta-banner--bottom h2 { color: #fff; }

.cta-banner--bottom .cta-banner__btn {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  box-shadow: var(--shadow-accent);
}

.cta-banner--bottom .cta-banner__btn:hover {
  background: var(--c-accent-hover);
  color: #fff;
  border-color: var(--c-accent-hover);
}

.cta-banner--bottom .cta-banner__sub { color: rgba(255,255,255,0.75); }

.cta-banner--bottom .cta-banner__features li { color: rgba(255,255,255,0.8); }


/* ---- 14. Section Eyebrow Label ---- */
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}

/* ---- 15. Inline note / callout ---- */
.callout-box {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-primary-light);
  border: 1px solid #c2d4f5;
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius-sm);
  margin: var(--sp-6) 0;
}

.callout-box__icon { color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }

.callout-box p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ---- 16. Table caption / mobile helper ---- */
.table-scroll-hint {
  display: none;
  font-size: var(--text-xs);
  color: var(--c-text-light);
  text-align: center;
  padding: var(--sp-2) 0 0;
}

@media (max-width: 768px) {
  .table-scroll-hint { display: block; }
}
