/* ════════════════════════════════════════════════════════
   CHATUR SOFTWARE — MAIN STYLESHEET
   Light editorial — paper, ink, one restrained accent
════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:         #faf9f6;
  --bg2:        #f3f1ea;
  --bg3:        #ece9e0;
  --surface:    #ffffff;
  --surface2:   #fcfbf8;
  --border:     #e6e2d8;
  --border-h:   #d3cec0;

  --teal:       #0f766e;
  --teal-dim:   #e7f1ef;
  --teal-glow:  transparent;
  --blue:       #0f766e;
  --blue-dim:   #e7f1ef;
  --blue-glow:  transparent;
  --green:      #0f766e;
  --amber:      #0f766e;

  --text:       #1f2933;
  --text-2:     #52606d;
  --text-3:     #7b8794;

  --ff-sans:    'Plus Jakarta Sans', sans-serif;
  --ff-serif:   'Lora', serif;

  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       16px;
  --r-xl:       24px;

  --shadow-sm:  0 1px 2px rgba(31,41,51,0.05);
  --shadow-md:  0 2px 8px rgba(31,41,51,0.07);
  --shadow-lg:  0 8px 24px rgba(31,41,51,0.09);

  --transition: 0.2s ease;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-h); border-radius: 3px; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { position: relative; z-index: 1; padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg2); }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.display-xl {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 600; line-height: 1.12;
  letter-spacing: -0.015em;
}
.display-lg {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600; line-height: 1.25;
  letter-spacing: -0.005em;
}
.serif-accent {
  font-family: var(--ff-serif);
  font-style: italic; font-weight: 500;
  color: var(--teal);
}
/* Legacy class — gradient text removed with the redesign */
.grad-text {
  color: var(--teal);
  -webkit-text-fill-color: currentColor;
}
.lead {
  font-size: 1.15rem; color: var(--text-2);
  line-height: 1.8; font-weight: 400;
  max-width: 620px;
}
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #0d5f59;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 1.5px solid var(--border-h);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-dim);
}
.btn-ghost {
  color: var(--teal);
  padding: 10px 0;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost::after { content: '→'; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── NAV ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(250,249,246,0.94);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em;
}
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 900; color: var(--bg);
  flex-shrink: 0;
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(31,41,51,0.06);
}
.btn-nav {
  display: inline-flex; align-items: center;
  padding: 9px 20px; margin-left: 0.5rem;
  background: var(--teal);
  color: #fff !important; font-size: 0.875rem; font-weight: 600;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.btn-nav:hover { background: #0d5f59; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; z-index: 1;
}
.hero-content { max-width: 780px; }
.hero-title { margin-bottom: 1.5rem; }
.hero-title .serif-accent { font-size: 1.05em; }
.hero-lead { margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-2); font-weight: 500;
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-block {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--text);
  line-height: 1.2; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-2); font-weight: 600;
}

/* ── CARDS ────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.4rem;
}
.icon-teal, .icon-blue, .icon-green,
.icon-amber, .icon-pink, .icon-purple { background: var(--teal-dim); }
.card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.7rem; letter-spacing: -0.01em;
}
.card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.2rem; }
.chip {
  font-size: 0.7rem; padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-3);
  font-weight: 600; letter-spacing: 0.04em;
}

/* ── GRID LAYOUTS ─────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.col-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.col-2-rev { grid-auto-flow: dense; }
.col-2-rev > *:first-child { order: 2; }

/* ── SECTION HEADER ───────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header .lead { margin-top: 1rem; }

/* ── PROCESS STEPS ────────────────────────────────────── */
.process-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-list::before {
  content: '';
  position: absolute; left: 26px; top: 20px; bottom: 20px; width: 2px;
  background: var(--border-h);
  border-radius: 2px;
}
.process-item {
  display: flex; gap: 2rem; padding: 1.8rem 0;
  opacity: 0; transform: translateX(-16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-item.visible { opacity: 1; transform: translateX(0); }
.step-badge {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--surface2);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-size: 1rem; font-weight: 800;
  color: var(--teal); position: relative; z-index: 1;
  transition: border-color var(--transition);
}
.process-item:hover .step-badge { border-color: var(--teal); }
.step-content { padding-top: 0.6rem; }
.step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-content p  { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; max-width: 540px; }

/* ── CASE STUDY CARDS ─────────────────────────────────── */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-top {
  padding: 1.8rem 2rem 1.4rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem;
}
.case-ico {
  width: 46px; height: 46px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.case-meta-text { flex: 1; }
.case-tag {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-3); font-weight: 700;
}
.case-meta-text h3 { font-size: 1rem; font-weight: 700; margin-top: 4px; }
.case-body { padding: 1.5rem 2rem 2rem; }
.case-body p { font-size: 0.875rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }
.case-metrics { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.metric { text-align: center; }
.metric-val {
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 600;
  color: var(--teal); line-height: 1.2;
}
.metric-label { font-size: 0.7rem; color: var(--text-3); margin-top: 3px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.case-outcome {
  border-left: 3px solid var(--teal);
  padding: 0.35rem 0 0.35rem 1rem;
  font-size: 0.875rem; color: var(--text);
  font-family: var(--ff-serif); font-style: italic;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  position: relative;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: rgba(15,118,110,0.3); }
.testi-quote-icon {
  font-size: 3.5rem; line-height: 1;
  font-family: var(--ff-serif);
  color: rgba(15,118,110,0.12);
  margin-bottom: 0.5rem;
}
.testi-stars { color: var(--amber); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.975rem; font-weight: 600; color: var(--text);
  background: none;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--teal);
  transition: transform 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); border-color: var(--teal); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 420px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }

/* ── CONTACT FORM ─────────────────────────────────────── */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-3);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text); font-family: var(--ff-sans); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  border-radius: var(--r-sm); border: none; cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.success-banner {
  display: none;
  text-align: center; padding: 2.5rem;
  color: var(--green); font-weight: 600; font-size: 1.05rem;
}
.success-banner .success-icon { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }

/* ── CONTACT INFO ITEMS ───────────────────────────────── */
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--transition);
}
.contact-info-item:hover { border-color: rgba(15,118,110,0.35); }
.ci-icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(15,118,110,0.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); font-weight: 700; }
.ci-value { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }
.ci-value a:hover { color: var(--teal); }

/* ── TECH CHIPS ───────────────────────────────────────── */
.tech-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.tech-chip {
  padding: 6px 14px;
  background: rgba(15,118,110,0.07);
  border: 1px solid rgba(15,118,110,0.2);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.02em;
}

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-top { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.875rem; color: var(--text-2);
  line-height: 1.75; margin-top: 1rem; max-width: 280px;
}
.footer-contact-links { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  transition: border-color var(--transition), color var(--transition);
}
.footer-contact-link:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-3); font-weight: 700; margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a, .footer-col span {
  font-size: 0.875rem; color: var(--text-2);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-3); }
.founder-line { font-size: 0.9rem; color: var(--text-3); margin-top: 4px; }

/* ── FAB ──────────────────────────────────────────────── */
.fab-wa {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 800;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ── REVEAL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.reveal.visible { opacity: 1; }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .process-item { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ── HIGHLIGHT BOX ────────────────────────────────────── */
.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal);
}

/* ── INLINE BADGE ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-teal { background: rgba(15,118,110,0.1); color: var(--teal); border: 1px solid rgba(15,118,110,0.2); }
.badge-blue { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(15,118,110,0.2); }
.badge-green { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(15,118,110,0.2); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.85)} }

/* ── WORKFLOW VISUAL ──────────────────────────────────── */
.workflow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
}
.workflow-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,118,110,0.04), transparent 50%);
  pointer-events: none;
}
.wf-nodes { display: flex; flex-direction: column; gap: 0; }
.wf-node-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.4rem 0; }
.wf-node {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.node-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; background: var(--text-3);
}
.wf-node.active  { border-color: var(--teal); box-shadow: 0 0 14px rgba(15,118,110,0.2); }
.wf-node.active .node-dot  { background: var(--teal); animation: pulse 1.4s infinite; }
.wf-node.done   { border-color: rgba(15,118,110,0.5); }
.wf-node.done .node-dot   { background: var(--green); }
.wf-connector { flex: 1; height: 1.5px; background: var(--border); }
.wf-arr { font-size: 0.6rem; color: var(--text-3); }
.wf-result {
  margin-top: 1.25rem; padding: 0.9rem 1.1rem;
  background: rgba(15,118,110,0.06);
  border: 1px solid rgba(15,118,110,0.2);
  border-radius: 10px;
  font-size: 0.8rem; color: var(--green); font-weight: 600;
}
.wf-divider { height: 18px; border-left: 2px dashed rgba(15,118,110,0.18); margin-left: 18px; }

/* ── PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero .lead { margin: 1rem auto 0; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(250,249,246,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 24px 2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem; z-index: 800;
  }
  .nav-menu.open .nav-link { padding: 12px 8px; font-size: 1rem; }
  .nav-menu.open .btn-nav { margin: 0.5rem 0 0; width: 100%; justify-content: center; padding: 12px; }
  .col-2 { grid-template-columns: 1fr; gap: 3rem; }
  .col-2-rev > *:first-child { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .display-xl { font-size: 2.4rem; }
  .display-lg { font-size: 2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .contact-form-card { padding: 1.75rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════
   CHAT WIDGET
════════════════════════════════════════════════════════ */
#chatWidget{position:fixed;bottom:5.5rem;right:1.5rem;z-index:1000;display:flex;flex-direction:column;align-items:flex-end;gap:.75rem}
#chatToggle{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--teal),var(--blue));border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 4px 20px rgba(15,118,110,.4);transition:transform .2s,box-shadow .2s;position:relative}
#chatToggle:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(15,118,110,.55)}
#chatToggle.chat-active{background:linear-gradient(135deg,var(--blue),var(--teal))}
.chat-badge{position:absolute;top:-4px;right:-4px;width:20px;height:20px;border-radius:50%;background:#ef4444;color:#fff;font-size:.7rem;font-weight:700;display:flex;align-items:center;justify-content:center;border:2px solid var(--bg);animation:badgePulse 2s ease-in-out infinite}
@keyframes badgePulse{0%,100%{transform:scale(1)}50%{transform:scale(1.15)}}
.chat-box{width:340px;max-height:480px;background:var(--surface);border:1px solid var(--border-h);border-radius:16px;display:flex;flex-direction:column;box-shadow:0 16px 48px rgba(31,41,51,.18);overflow:hidden;transform-origin:bottom right;transition:opacity .2s,transform .25s cubic-bezier(.34,1.56,.64,1)}
.chat-box.hidden{opacity:0;transform:scale(.85) translateY(10px);pointer-events:none}
.chat-box.chat-open{opacity:1;transform:scale(1) translateY(0)}
.chat-header{background:var(--bg2);padding:1rem 1.1rem;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--border)}
.chat-header-info{display:flex;align-items:center;gap:.75rem}
.chat-avatar{width:38px;height:38px;border-radius:50%;background:linear-gradient(135deg,var(--teal),var(--blue));display:flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;color:#fff;position:relative;flex-shrink:0}
.chat-online-dot{position:absolute;bottom:1px;right:1px;width:10px;height:10px;border-radius:50%;background:#22c55e;border:2px solid var(--surface)}
.chat-header-name{font-size:.9rem;font-weight:600;color:var(--text)}
.chat-header-status{font-size:.72rem;color:var(--teal);margin-top:1px}
#chatClose{background:none;border:none;color:var(--text-2);cursor:pointer;padding:4px;border-radius:6px;display:flex;align-items:center;transition:color .15s,background .15s}
#chatClose:hover{color:var(--text);background:var(--border)}
.chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.75rem;scroll-behavior:smooth}
.chat-messages::-webkit-scrollbar{width:4px}
.chat-messages::-webkit-scrollbar-thumb{background:var(--border-h);border-radius:4px}
.chat-msg{display:flex;max-width:88%;animation:msgIn .2s ease}
@keyframes msgIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.chat-msg-user{align-self:flex-end;flex-direction:row-reverse}
.chat-msg-bot{align-self:flex-start}
.chat-bubble{padding:.65rem .9rem;border-radius:16px;font-size:.875rem;line-height:1.55;word-break:break-word}
.chat-msg-user .chat-bubble{background:var(--teal);color:#fff;font-weight:500;border-bottom-right-radius:4px}
.chat-msg-bot .chat-bubble{background:var(--bg3);color:var(--text);border:1px solid var(--border);border-bottom-left-radius:4px}
.chat-typing{display:flex;align-items:center;gap:5px;padding:.75rem 1rem}
.chat-typing span{width:7px;height:7px;border-radius:50%;background:var(--teal);animation:typingDot 1.2s ease-in-out infinite}
.chat-typing span:nth-child(2){animation-delay:.2s}
.chat-typing span:nth-child(3){animation-delay:.4s}
@keyframes typingDot{0%,60%,100%{opacity:.3;transform:translateY(0)}30%{opacity:1;transform:translateY(-4px)}}
.chat-input-area{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;border-top:1px solid var(--border);background:var(--bg2)}
#chatInput{flex:1;background:var(--surface2);border:1px solid var(--border);border-radius:12px;padding:.6rem .9rem;font-size:.875rem;color:var(--text);outline:none;font-family:var(--ff-sans);transition:border-color .2s}
#chatInput:focus{border-color:var(--teal)}
#chatInput::placeholder{color:var(--text-3)}
#chatSend{width:38px;height:38px;border-radius:10px;background:linear-gradient(135deg,var(--teal),var(--blue));border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0;transition:transform .15s,opacity .15s}
#chatSend:hover{transform:scale(1.08);opacity:.9}
@media(max-width:480px){
  #chatWidget{bottom:1.5rem;right:1rem}
  .fab-wa{bottom:1.5rem;right:4.75rem}
  .chat-box{width:calc(100vw - 2rem);max-height:420px}
}
.hidden{display:none!important}

/* ── SEARCH NAV BUTTON ───────────────────────────────── */
.nav-search-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; margin-right: 4px;
  border-radius: 8px;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.nav-search-btn:hover { color: var(--text); border-color: var(--border-h); background: var(--bg2); }

.nav-search-hint {
  font-size: 0.7rem; color: var(--text-3);
  letter-spacing: 0.05em;
  display: none;
}
@media(min-width:900px) { .nav-search-hint { display: inline; } }

/* ── SEARCH OVERLAY ──────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(31,41,51,0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: clamp(60px, 12vh, 120px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-modal {
  width: 100%; max-width: 640px;
  margin: 0 16px;
  background: var(--surface);
  border: 1px solid var(--border-h);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(31,41,51,0.18);
  overflow: hidden;
  transform: translateY(-16px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.search-overlay.open .search-modal { transform: translateY(0) scale(1); }
.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.search-icon { color: var(--text-3); flex-shrink: 0; }
.search-input {
  flex: 1;
  background: none; border: none; outline: none;
  font-family: var(--ff-sans);
  font-size: 1.1rem; font-weight: 400;
  color: var(--text);
  caret-color: var(--teal);
}
.search-input::placeholder { color: var(--text-3); }
.search-esc-key {
  font-family: var(--ff-sans); font-size: 0.68rem;
  padding: 3px 7px; border-radius: 5px;
  background: var(--surface2); border: 1px solid var(--border-h);
  color: var(--text-3); letter-spacing: 0.04em;
  white-space: nowrap; flex-shrink: 0;
}
.search-results { max-height: 400px; overflow-y: auto; padding: 8px; }
.search-results:empty { display: none; }
.search-empty {
  padding: 32px 20px; text-align: center;
  color: var(--text-3); font-size: 0.9rem;
}
.search-group-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3);
  padding: 10px 12px 6px;
}
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 12px; border-radius: 10px;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s;
  color: var(--text);
}
.search-result-item:hover,
.search-result-item.active {
  background: rgba(15,118,110,0.08);
}
.search-result-item.active { outline: none; }
.sri-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--surface2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border: 1px solid var(--border);
}
.sri-text { flex: 1; min-width: 0; }
.sri-title { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sri-sub   { font-size: 0.78rem; color: var(--text-3); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sri-title mark { background: none; color: var(--teal); font-weight: 700; }
.sri-arrow { color: var(--text-3); opacity: 0; transition: opacity 0.15s; flex-shrink: 0; font-size: 0.8rem; }
.search-result-item:hover .sri-arrow,
.search-result-item.active .sri-arrow { opacity: 1; }
.search-footer {
  display: flex; gap: 16px;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem; color: var(--text-3);
}
/* ── FEATURED BANNER (single random pick, mid-page) ──── */
.banner-feature { padding: 100px 0; position: relative; z-index: 1; }
.banner-feature-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 0 1.5rem;
  overflow: hidden;
}
.banner-feature-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-3);
  padding: 1.25rem 2rem 0;
}
.banner-content { padding: 1.5rem 2rem 1rem; }
.banner-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
.banner-text { flex: 1; min-width: 260px; }
.banner-text h2 { margin: 0.5rem 0 1rem; line-height: 1.2; }
.banner-text p  { color: var(--text-2); margin-bottom: 1.75rem; line-height: 1.7; }
.banner-visual {
  flex: 1; min-width: 220px;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; align-items: center;
}
/* stat pills */
.banner-stat-pill {
  background: var(--surface2); border: 1px solid var(--border-h);
  border-radius: 999px; padding: 0.55rem 1.2rem;
  font-size: 0.85rem; color: var(--text); white-space: nowrap;
  transition: border-color var(--transition), background var(--transition);
}
.banner-stat-pill:hover { border-color: var(--teal); background: var(--teal-dim); }
/* flow steps */
.banner-flow {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap; justify-content: center; width: 100%;
}
.banner-flow-step {
  background: var(--surface2); border: 1px solid var(--border-h);
  border-radius: var(--r-sm); padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 600;
}
.banner-flow-arr { color: var(--teal); font-weight: 700; font-size: 1.1rem; }
.banner-flow-label {
  width: 100%; text-align: center;
  font-size: 0.78rem; color: var(--text-3);
  margin-top: 0.75rem; letter-spacing: 0.03em;
}
/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .banner-feature { padding: 70px 0; }
  .banner-content { padding: 1.5rem 1.25rem 1rem; }
  .banner-feature-eyebrow { padding: 1rem 1.25rem 0; }
  .banner-inner {
    flex-direction: column; gap: 1.5rem;
    text-align: center; align-items: center;
  }
  .banner-text { min-width: unset; width: 100%; }
  .banner-text h2 { font-size: 1.45rem; }
  .banner-text p  { font-size: 0.88rem; margin-bottom: 1.25rem; }
  .banner-text .btn { width: 100%; justify-content: center; }
  .banner-visual { justify-content: center; }
  .banner-stat-pill { font-size: 0.8rem; padding: 0.45rem 1rem; }
  .banner-flow-step { font-size: 0.78rem; padding: 0.4rem 0.75rem; }
}

.search-footer kbd {
  font-family: var(--ff-sans); font-size: 0.65rem;
  padding: 2px 5px; border-radius: 4px;
  background: var(--surface2); border: 1px solid var(--border-h);
  margin-right: 3px;
}

/* ════════════════════════════════════════════════════════
   PREMIUM POLISH
════════════════════════════════════════════════════════ */

/* SVG icon color inheritance inside card-icon containers */
.icon-teal   svg, .icon-blue svg, .icon-green svg,
.icon-amber  svg, .icon-pink svg, .icon-purple svg { color: var(--teal); display: block; }

/* Industry cards — refined icon container */
.industry-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--text-2);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.card:hover .industry-icon {
  border-color: rgba(15,118,110,0.3);
  background: rgba(15,118,110,0.07);
  color: var(--teal);
}


/* SVG icons in workflow nodes */
.wf-node svg { flex-shrink: 0; opacity: 0.6; }
.wf-node.active svg { opacity: 1; color: var(--teal); }
.wf-node.done   svg { color: var(--green); opacity: 1; }

/* ── PERSONA CARDS ───────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-h);
}
.persona-card-featured {
  border-color: var(--teal);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.persona-role-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.persona-pain {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  line-height: 1.4; margin-bottom: 1.25rem;
  font-style: italic;
}
.persona-list {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 1.5rem; flex: 1;
}
.persona-list li {
  font-size: 0.875rem; color: var(--text-2);
  padding-left: 1.1rem; position: relative; line-height: 1.6;
}
.persona-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--text-3); font-size: 0.8rem;
}
.persona-outcome {
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem 1.1rem;
  font-size: 0.875rem; color: var(--text-2);
  line-height: 1.6;
  margin-top: auto;
}
.outcome-label {
  display: block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.4rem;
}
@media (max-width: 900px) {
  .persona-grid { grid-template-columns: 1fr; }
  .persona-card-featured { margin-top: 24px; }
}

/* ── FOMO SECTION ────────────────────────────────────── */
.fomo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.fomo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.fomo-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-h);
  box-shadow: var(--shadow-md);
}
.fomo-icon-wrap {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--teal-dim);
  color: var(--teal);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.fomo-icon-wrap svg { display: block; }
.fomo-body { flex: 1; }
.fomo-title {
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.5rem; line-height: 1.35;
}
.fomo-desc {
  font-size: 0.825rem; color: var(--text-2);
  line-height: 1.65;
}
@media (max-width: 900px) { .fomo-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .fomo-grid { grid-template-columns: 1fr 1fr; } }

/* ── TESTIMONIALS — RESULT BADGE ─────────────────────── */
.testi-result-badge {
  display: inline-block;
  background: var(--teal-dim);
  border: 1px solid rgba(15,118,110,0.25);
  color: var(--teal);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ── PREMIUM CTA ─────────────────────────────────────── */
.cta-premium-section {
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.cta-premium-box {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.cta-premium-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
}
.cta-checklist {
  display: flex; flex-direction: column; gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1rem;
}
.cta-check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.cta-check-item:last-child { border-bottom: none; }
.cta-check-item:hover { background: var(--surface2); }
.check-icon {
  color: var(--teal); font-weight: 900; font-size: 0.9rem;
  flex-shrink: 0; width: 18px;
}
@media (max-width: 860px) {
  .cta-premium-box {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
}

/* ── ACCESSIBILITY: SKIP LINK ────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--teal);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ── HONEYPOT (hidden from humans) ───────────────────── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── COOKIE / TRACKING CONSENT BANNER ────────────────── */
.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.consent-banner[hidden] { display: none; }
.consent-text {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
  flex: 1 1 320px;
}
.consent-text a { color: var(--teal); }
.consent-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.consent-btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1px solid var(--border-h);
  background: transparent;
  color: var(--text);
  transition: var(--transition);
}
.consent-decline:hover { border-color: var(--text-2); }
.consent-accept {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.consent-accept:hover { box-shadow: var(--shadow-sm); }

/* ── MAP CLICK-TO-LOAD FACADE ────────────────────────── */
.map-facade {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  color: var(--text);
  background:
    radial-gradient(circle at 30% 20%, var(--teal-dim), transparent 60%),
    radial-gradient(circle at 75% 80%, var(--blue-dim), transparent 60%),
    var(--surface);
  transition: var(--transition);
}
.map-facade:hover { background-color: var(--surface2); }
.map-facade-pin { font-size: 2rem; }
.map-facade-label { font-weight: 700; font-size: 1rem; }
.map-facade-cta { font-size: 0.82rem; color: var(--text-2); }

/* LinkedIn card (home) — hover handled via CSS so no inline JS is needed (CSP). */
.linkedin-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.linkedin-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

/* ── Comparison tables & answer blocks (AEO content) ───────── */
.cs-table-wrap { max-width: 880px; margin: 1.5rem auto 0; overflow-x: auto; }
.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.cs-table th, .cs-table td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.cs-table thead th {
  background: var(--bg3, rgba(255,255,255,0.03));
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.cs-table tbody tr:last-child td { border-bottom: none; }
.cs-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.cs-table td { color: var(--text-2); }

.answer-lead {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-2);
}
.answer-lead strong { color: var(--text); }

/* ── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 1.1rem;
  list-style: none;
  padding: 0;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb li[aria-current="page"] { color: var(--text-2); font-weight: 600; }
.breadcrumb .bc-sep { opacity: 0.5; }
