/* ============================================================
   HEAT SMART LTD — pages.css
   Shared styles for inner pages: page-hero, breadcrumbs,
   accreditation badges, content layouts, blog, legal docs,
   quote wizard, calculator, 404
   ============================================================ */

/* ── BREADCRUMBS ─────────────────────────────────────────── */
.breadcrumb-bar {
  padding: 110px 0 0;
  background: var(--bg);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 18px 0;
}
.breadcrumb-list a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--green); }
.breadcrumb-list .sep { color: var(--text-dim); }
.breadcrumb-list .current { color: var(--green-light); font-weight: 500; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: 40px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero .blob { opacity: 0.45; }

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero-content.centered { max-width: 760px; margin: 0 auto; text-align: center; }
.page-hero-content.centered .eyebrow { justify-content: center; }
.page-hero-content.centered .eyebrow::before { display: none; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}
.page-hero-content.centered .page-hero-sub { margin: 0 auto; }

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.page-hero-content.centered .page-hero-actions { justify-content: center; }

/* ── ACCREDITATION BADGES ─────────────────────────────────── */
.accreditation-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 28px 0;
}
.accred-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
}
.accred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.92;
  transition: opacity 0.25s, transform 0.25s;
}
.accred-badge:hover { opacity: 1; transform: translateY(-2px); }
.accred-badge svg { flex-shrink: 0; }
.accred-badge .accred-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.accred-badge .accred-name { font-size: 0.82rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.accred-badge .accred-desc { font-size: 0.68rem; color: var(--text-dim); white-space: nowrap; }

/* Larger badge variant for About page */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.accred-card {
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: var(--transition);
}
.accred-card:hover { border-color: rgba(34,197,94,0.3); transform: translateY(-4px); }
.accred-card .accred-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.accred-card .accred-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

/* ── SERVICE PAGE LAYOUT ──────────────────────────────────── */
.content-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.content-section.alt { background: var(--bg-2); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}
.content-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}
.content-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-block ul.styled-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.content-block ul.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.content-block ul.styled-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.spec-table td:first-child { color: var(--text); font-weight: 600; width: 40%; background: rgba(255,255,255,0.02); }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.pricing-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.pricing-card.highlight {
  border-color: rgba(34,197,94,0.35);
  background: linear-gradient(160deg, rgba(34,197,94,0.06), var(--bg-card));
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,0.3); }
.pricing-card .pc-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 8px; }
.pricing-card .pc-price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pricing-card .pc-unit { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 16px; display: block; }
.pricing-card ul { display: flex; flex-direction: column; gap: 8px; }
.pricing-card ul li { font-size: 0.84rem; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; }
.pricing-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Process steps (reused pattern) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step { position: relative; padding-left: 4px; }
.process-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(34,197,94,0.18);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ── ABOUT PAGE SPECIFIC ──────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.team-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,0.2); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: white;
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--green); display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--green); }
.timeline-item h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── CONTACT PAGE MAP ─────────────────────────────────────── */
.contact-map-wrap {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
}
#contactMap { width: 100%; height: 100%; }
.map-fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.06), var(--bg-2));
}

/* ── FAQ HUB PAGE ─────────────────────────────────────────── */
.faq-category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.faq-tab {
  padding: 9px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  transition: var(--transition);
  cursor: none;
}
.faq-tab:hover, .faq-tab.active {
  background: var(--green-muted);
  border-color: rgba(34,197,94,0.4);
  color: var(--green-light);
}
.faq-category-block { margin-bottom: 48px; }
.faq-category-block.hidden-cat { display: none; }
.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(34,197,94,0.25); box-shadow: var(--shadow-card); }
.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,10,14,0.4), transparent);
}
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  background: rgba(34,197,94,0.85);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  z-index: 1;
}
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; color: var(--text-dim); }
.blog-card-body h3 { font-size: 1.08rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-read-more { display: flex; align-items: center; gap: 6px; font-size: 0.84rem; font-weight: 600; color: var(--green); margin-top: 8px; }
.blog-read-more svg { transition: transform 0.2s; }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }

/* Blog post article */
.blog-post-wrap { max-width: 760px; margin: 0 auto; }
.blog-post-hero-img {
  width: 100%; height: 320px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-meta-row .author-pill { display: flex; align-items: center; gap: 8px; }
.blog-meta-row .author-avatar-sm {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: white;
}

article.blog-content { font-size: 1rem; color: var(--text-muted); line-height: 1.85; }
article.blog-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--text);
  margin: 40px 0 16px; letter-spacing: -0.01em;
}
article.blog-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
article.blog-content p { margin-bottom: 18px; }
article.blog-content ul, article.blog-content ol { margin: 0 0 18px 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
article.blog-content li { font-size: 0.95rem; }
article.blog-content strong { color: var(--text); }
article.blog-content blockquote {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}
.blog-callout {
  background: var(--green-muted);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
}
.blog-callout h4 { font-size: 0.95rem; font-weight: 700; color: var(--green-light); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.blog-callout p { color: var(--text); font-size: 0.9rem; margin-bottom: 0; }

.blog-data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.85rem; }
.blog-data-table th, .blog-data-table td { padding: 10px 16px; border: 1px solid var(--border); text-align: left; }
.blog-data-table th { background: rgba(255,255,255,0.03); color: var(--text); font-weight: 700; }
.blog-data-table td { color: var(--text-muted); }

.blog-share {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 0; margin: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.blog-share span { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.blog-author-box {
  display: flex; gap: 16px; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-top: 32px;
}
.blog-author-box .author-avatar { width: 52px; height: 52px; font-size: 1.2rem; flex-shrink: 0; }
.blog-author-box h5 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.blog-author-box p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

.related-posts { margin-top: 56px; }
.related-posts h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 24px; }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-updated { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 32px; }
.legal-wrap h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--text); margin: 36px 0 14px; }
.legal-wrap h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.legal-wrap p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 22px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.legal-wrap li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.legal-toc {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 28px; margin-bottom: 40px;
}
.legal-toc h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.legal-toc a { font-size: 0.86rem; color: var(--text-muted); transition: color 0.2s; }
.legal-toc a:hover { color: var(--green); }

/* ── 404 PAGE ─────────────────────────────────────────────── */
.error-404-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.error-404-section h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.error-404-section p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }
.error-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.error-search { max-width: 420px; margin: 32px auto 0; display: flex; gap: 8px; }
.error-search input {
  flex: 1; padding: 12px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text); font-size: 0.9rem; outline: none;
}
.error-search input:focus { border-color: rgba(34,197,94,0.4); }
.error-search button {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── QUOTE WIZARD ─────────────────────────────────────────── */
.wizard-section { padding: 110px 0 100px; min-height: 100vh; background: var(--bg); position: relative; overflow: hidden; }
.wizard-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wizard-container { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }

.wizard-progress-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.wizard-progress-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wizard-step-label { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 32px; text-align: center; }

.wizard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.wizard-card::before {
  content: '';
  position: absolute; top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.wizard-step { display: none; flex-direction: column; flex: 1; animation: fadeInUp 0.4s cubic-bezier(0.16,1,0.3,1); }
.wizard-step.active { display: flex; }

.wizard-step h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}
.wizard-step .wizard-sub {
  font-size: 0.88rem; color: var(--text-muted); text-align: center; margin-bottom: 32px;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
}
.wizard-option {
  padding: 22px 18px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition-fast);
  cursor: none;
}
.wizard-option svg { color: var(--text-muted); transition: color 0.2s; }
.wizard-option span { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.wizard-option:hover { border-color: rgba(34,197,94,0.35); background: var(--green-muted); }
.wizard-option.selected { border-color: var(--green); background: var(--green-muted); box-shadow: 0 0 0 1px var(--green) inset; }
.wizard-option.selected svg { color: var(--green); }

.wizard-input-group { margin-bottom: 20px; }
.wizard-input-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.wizard-input-group input {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text);
  font-size: 1rem; outline: none; transition: border-color 0.2s;
}
.wizard-input-group input:focus { border-color: rgba(34,197,94,0.5); box-shadow: 0 0 0 3px rgba(34,197,94,0.08); }
.wizard-input-group .field-error { font-size: 0.78rem; color: #f87171; margin-top: 6px; display: none; }
.wizard-input-group.has-error input { border-color: #f87171; }
.wizard-input-group.has-error .field-error { display: block; }

.wizard-map-wrap {
  width: 100%; height: 280px; border-radius: var(--radius-md); overflow: hidden;
  border: 1.5px solid var(--border); margin-bottom: 16px; position: relative;
}
#quoteMap { width: 100%; height: 100%; }
.wizard-map-hint { font-size: 0.8rem; color: var(--text-dim); text-align: center; }
.map-pin-badge {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  background: rgba(7,10,14,0.85); padding: 6px 14px; border-radius: 100px;
  font-size: 0.75rem; color: var(--text); display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(34,197,94,0.3);
}

.wizard-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 28px; }
.wizard-back {
  display: flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600;
  color: var(--text-muted); padding: 12px 8px; transition: color 0.2s;
}
.wizard-back:hover { color: var(--text); }
.wizard-back.hidden-nav { visibility: hidden; }
.wizard-continue { margin-left: auto; }
.wizard-continue:disabled { opacity: 0.4; pointer-events: none; }

.wizard-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-top: 32px; font-size: 0.76rem; color: var(--text-dim);
}
.wizard-trust-row span { display: flex; align-items: center; gap: 6px; }
.wizard-trust-row svg { color: var(--green); }

.wizard-success { text-align: center; padding: 40px 0; }
.wizard-success-icon {
  width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--green-muted); border: 2px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--green);
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.wizard-success h2 { margin-bottom: 12px; }
.wizard-success p { font-size: 0.92rem; color: var(--text-muted); max-width: 420px; margin: 0 auto; }

/* ── ROI CALCULATOR ───────────────────────────────────────── */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.calc-inputs { padding: 44px; border-right: 1px solid var(--border); }
.calc-results { padding: 44px; background: linear-gradient(160deg, rgba(34,197,94,0.05), transparent); display: flex; flex-direction: column; }

.calc-field { margin-bottom: 26px; }
.calc-field label { display: flex; align-items: center; justify-content: space-between; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.calc-field label .calc-val { color: var(--green); font-family: var(--font-display); font-weight: 700; }
.calc-field input[type="range"] {
  width: 100%; height: 6px; border-radius: 3px; background: var(--border);
  outline: none; -webkit-appearance: none; cursor: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); cursor: none; box-shadow: 0 2px 8px rgba(34,197,94,0.5);
  transition: transform 0.15s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--green); border: none; cursor: none;
}
.calc-range-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-dim); margin-top: 6px; }

.calc-select-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.calc-select-btn {
  padding: 10px 8px; background: rgba(255,255,255,0.03); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  text-align: center; transition: var(--transition-fast); cursor: none;
}
.calc-select-btn:hover { border-color: rgba(34,197,94,0.3); }
.calc-select-btn.selected { border-color: var(--green); background: var(--green-muted); color: var(--green-light); }

.calc-result-hero { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.calc-result-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.calc-result-value { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.calc-result-value span { font-size: 1.6rem; color: var(--green); }

.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.calc-result-stat { padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; }
.calc-result-stat .crs-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--green-light); display: block; }
.calc-result-stat .crs-lbl { font-size: 0.74rem; color: var(--text-dim); margin-top: 4px; }

.calc-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 100px; margin-bottom: 8px; }
.calc-bar { flex: 1; background: linear-gradient(180deg, var(--green-light), var(--green-dark)); border-radius: 3px 3px 0 0; transition: height 0.6s cubic-bezier(0.16,1,0.3,1); min-height: 4px; }
.calc-bar-labels { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--text-dim); margin-bottom: 24px; }

.calc-disclaimer { font-size: 0.74rem; color: var(--text-dim); line-height: 1.5; margin-top: auto; }

/* ── ANCHOR NAV (in-page service tabs) ────────────────────── */
.page-anchor-nav {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: rgba(7,10,14,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.page-anchor-list { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.page-anchor-list::-webkit-scrollbar { display: none; }
.page-anchor-list a {
  font-size: 0.84rem; font-weight: 500; color: var(--text-muted);
  white-space: nowrap; padding: 6px 0; border-bottom: 2px solid transparent; transition: var(--transition-fast);
}
.page-anchor-list a:hover, .page-anchor-list a.active { color: var(--green-light); border-bottom-color: var(--green); }
