
:root {
  --purple: #6C47FF;
  --purple-dark: #5938D6;
  --purple-light: #F0ECFF;
  --purple-50: #FAF8FF;
  --green: #16A34A;
  --red: #DC2626;
  --amber: #F59E0B;
  --blue: #3B82F6;
  --bg: #FFFFFF;
  --bg-alt: #FAFBFC;
  --bg-section: #F7F8FA;
  --border: #E8EBF0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-soft: #94A3B8;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Site-wide motion design ── */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.15s;
  --t-base: 0.25s;
  --t-slow: 0.45s;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
/* Fade-in-up for content as it enters viewport */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero h1, .hero-sub, .hero-cta {
  animation: fade-in-up var(--t-slow) var(--ease-out) backwards;
}
.hero-sub { animation-delay: 0.08s; }
.hero-cta { animation-delay: 0.16s; }
.hero-illustration {
  animation: fade-in-up 0.7s var(--ease-out) 0.24s backwards;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; margin: 0 0 16px; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: 22px; }
h4 { font-size: 17px; }
p { margin: 0 0 14px; color: var(--text); }
.muted { color: var(--text-muted); }
/* Container hierarchy:
 * - All containers share ONE width (1200px) so outer page width is identical
 *   on every page — Linear/Stripe-style proportions, not too sprawling on
 *   wide displays, generous gutters on smaller screens.
 * - Inside container-sm, direct children are constrained to 760px max for
 *   readable line length. This gives uniform outer width + readable prose.
 * - container-wide is reserved for grid sections that want to feel slightly
 *   more expansive (case-study grids); it equals .container today.
 */
.container,
.container-sm,
.container-md,
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1280px) {
  .container, .container-sm, .container-md, .container-wide { padding: 0 32px; }
}
@media (max-width: 640px) {
  .container, .container-sm, .container-md, .container-wide { padding: 0 20px; }
}

/* All containers now behave identically (1200px outer width). Long-form prose
 * uses .prose helper for readable line length. Section headings/eyebrows stay
 * full-width centered via .section-title / .section-eyebrow utilities. */
.prose { max-width: 760px; margin-left: auto; margin-right: auto; }
.prose > p, .prose > ul, .prose > ol { margin-bottom: 18px; }
/* Direct text children of .container-sm get prose treatment automatically — keeps
 * existing markup readable without a forced inner wrapper. */
.container-sm > p,
.container-sm > ul,
.container-sm > ol,
.container-sm > .post-meta {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.container-sm > article { max-width: 100%; margin: 0; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

/* ── HEADER ── */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: var(--text); }
.brand-logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.nav-links { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: 14.5px; text-decoration: none;
  position: relative; transition: color var(--t-fast) ease;
}
.nav-links > li > a:not(.btn)::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--purple); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--t-base) var(--ease-out);
}
.nav-links > li:hover > a:not(.btn)::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--purple); }
.nav-links li { position: relative; }
/* Bridge the gap between trigger link and dropdown so hover doesn't break */
.nav-links .has-dd { padding-bottom: 14px; margin-bottom: -14px; }
.nav-links .dd {
  display: none; position: absolute; top: calc(100% + 6px); left: -8px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 8px; min-width: 240px; box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; z-index: 50;
}
/* Invisible bridge above the dropdown so cursor can travel from link → dropdown */
.nav-links .dd::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav-links .has-dd:hover .dd,
.nav-links .has-dd:focus-within .dd { display: block; }
.nav-links .dd li { padding: 0; }
.nav-links .dd a {
  display: block; padding: 9px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap;
}
.nav-links .dd a:hover { background: var(--purple-50); color: var(--purple); }
.nav-links .dd-div { height: 1px; background: var(--border); margin: 6px 0; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14.5px; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
  white-space: nowrap; position: relative;
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-fast) ease,
              border-color var(--t-fast) ease,
              color var(--t-fast) ease,
              box-shadow var(--t-base) ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 1px 2px rgba(108, 71, 255, 0.18);
}
.btn-primary:hover {
  background: var(--purple-dark); text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(108, 71, 255, 0.32);
}
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover {
  border-color: var(--purple); color: var(--purple); text-decoration: none;
  background: var(--purple-50);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 28px; font-size: 15.5px; }
/* Animated arrow indicator on CTA buttons */
.btn-primary.btn-lg::after,
.btn:hover .btn-arrow,
.btn-arrow { transition: transform var(--t-base) var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── HERO ── */
.hero { padding: 80px 0 60px; text-align: center; }
.hero-eyebrow {
  display: inline-block; padding: 6px 14px;
  background: var(--purple-light); color: var(--purple);
  border-radius: 99px; font-size: 12.5px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero-sub {
  max-width: 600px; margin: 16px auto 32px; font-size: 18px;
  color: var(--text-muted); line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 32px; font-size: 13px; color: var(--text-soft); }
.hero-illustration { margin: 48px auto 0; max-width: 1100px; }

/* ── SECTION HEADERS ── */
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 12.5px; font-weight: 700; color: var(--purple);
  margin-bottom: 12px;
}
.section-title { max-width: 920px; margin: 0 auto 16px; text-align: center; }
.section-sub { max-width: 720px; margin: 0 auto 48px; text-align: center; color: var(--text-muted); font-size: 17px; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: border-color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.feature-card:hover {
  border-color: var(--purple); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(108, 71, 255, 0.10);
}
.feature-card .feat-num {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--purple);
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
/* Top accent line on hover */
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
  opacity: 0; transition: opacity 0.15s ease;
}
.feature-card:hover::before { opacity: 1; }

/* ── KPI STRIP ── */
.kpi-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; padding: 40px 32px;
  background: var(--purple-50); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.kpi-strip .kpi {
  text-align: center; padding: 14px;
  transition: transform var(--t-base) var(--ease-out);
}
.kpi-strip .kpi:hover { transform: translateY(-3px) scale(1.02); }
.kpi-value { font-size: 36px; font-weight: 800; color: var(--purple); letter-spacing: -0.02em; }
.kpi-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── TESTIMONIAL ── */
/* Card fills its container — edges align with KPI strips and grids on the
 * same page. Internal quote text is capped at 760px for readability. */
.testimonial {
  background: var(--bg-section); border-radius: var(--radius);
  padding: 48px 56px; margin: 0 auto;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.testimonial-quote { max-width: 820px; }
.testimonial-author { margin-top: 24px; }
@media (max-width: 640px) { .testimonial { padding: 32px 24px; } }

/* Inline product screenshots — subtle lift on hover */
figure svg {
  transition: transform var(--t-slow) var(--ease-out),
              filter var(--t-slow) var(--ease-out);
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.06));
}
figure:hover svg {
  transform: translateY(-3px) scale(1.005);
  filter: drop-shadow(0 14px 30px rgba(15, 23, 42, 0.12));
}

/* Sidebar items in blog post sidebar */
.sidebar-card {
  transition: transform var(--t-fast) var(--ease-out),
              border-color var(--t-fast) ease;
}
.sidebar-card:hover { border-color: var(--purple); }
.sidebar-list a {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease-out), color var(--t-fast) ease;
}
.sidebar-list a:hover { transform: translateX(3px); }
.testimonial-quote { font-size: 19px; line-height: 1.55; font-weight: 500; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 99px;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12.5px; color: var(--text-muted); }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch; max-width: 1140px; margin: 0 auto;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-4px); border-color: var(--purple);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.12);
}
.pricing-card.featured {
  border-color: var(--purple); border-width: 2px; box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.featured:hover { box-shadow: 0 20px 50px rgba(108, 71, 255, 0.20); }
.pricing-card .badge {
  align-self: flex-start; padding: 4px 10px; font-size: 11px; font-weight: 700;
  background: var(--purple-light); color: var(--purple);
  border-radius: 99px; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pricing-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 22px; }
.pricing-amount { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-left: 6px; }
.pricing-features { list-style: none; padding: 0; margin: 24px 0; }
.pricing-features li { padding: 8px 0; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { margin-top: auto; }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: #fff;
}
.compare-table th, .compare-table td {
  padding: 14px 18px; text-align: left; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table th { background: var(--bg-section); font-weight: 600; }
.compare-table td:nth-child(2), .compare-table td:nth-child(3) {
  text-align: center; font-weight: 600;
}
.compare-table td:nth-child(3) { background: var(--purple-50); color: var(--purple); }

/* ── CASE STUDY CARD ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.case-card:hover {
  transform: translateY(-4px); border-color: var(--purple); text-decoration: none;
  box-shadow: 0 16px 36px rgba(108, 71, 255, 0.12);
}
.case-card h3 { font-size: 18px; margin: 0; }
.case-card .case-tagline { color: var(--text-muted); font-size: 14px; line-height: 1.5; flex: 1; }
.case-card .case-meta { font-size: 12px; color: var(--text-soft); margin-top: 8px; }
.case-card .case-meta b { color: var(--text); font-weight: 600; }

/* ── PREMIUM ICON TILE — used by case cards, industry pages, KPI sections ── */
.icon-tile {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--p, #6C47FF), var(--s, #A78BFA));
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 18px -4px rgba(108, 71, 255, 0.28),
              inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform var(--t-base) var(--ease-bounce),
              box-shadow var(--t-base) var(--ease-out);
}
.icon-tile svg { width: 28px; height: 28px; }
.icon-tile-sm { width: 40px; height: 40px; border-radius: 10px; }
.icon-tile-sm svg { width: 22px; height: 22px; }
.icon-tile-lg { width: 72px; height: 72px; border-radius: 18px; }
.icon-tile-lg svg { width: 36px; height: 36px; }
.case-card:hover .icon-tile,
a:hover > .icon-tile,
.feat-row:hover .icon-tile {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 12px 28px -6px rgba(108, 71, 255, 0.40);
}

/* ── CASE STUDY DETAIL ── */
.case-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--purple-50), #fff);
}
.case-hero-tag {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.8); color: var(--purple);
  border-radius: 99px; font-size: 13px; font-weight: 600;
}
.case-results-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px; padding: 28px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-top: 40px;
}
.result-item { text-align: center; padding: 8px; }
.result-delta { font-size: 24px; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.result-delta.neutral { color: var(--purple); }
.result-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.result-before-after { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px); border-color: var(--purple); text-decoration: none;
  box-shadow: 0 14px 32px rgba(108, 71, 255, 0.12);
}
.blog-card-thumb {
  aspect-ratio: 16/9; background: var(--bg-section); overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-card-thumb svg {
  width: 100%; height: 100%; display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.blog-card:hover .blog-card-thumb svg { transform: scale(1.06); }
.blog-card-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.blog-card h3 { transition: color var(--t-fast) ease; }
.blog-card:hover h3 { color: var(--purple); }
.blog-card .blog-category {
  font-size: 11.5px; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card h3 { font-size: 17px; line-height: 1.35; margin: 0; }
.blog-card .blog-excerpt { font-size: 14px; color: var(--text-muted); flex: 1; line-height: 1.55; }
.blog-card .blog-meta { font-size: 12px; color: var(--text-soft); margin-top: 6px; }

/* Category filter pills */
.cat-pills {
  display: flex; gap: 8px; flex-wrap: wrap; padding: 4px 0;
  overflow-x: auto; scrollbar-width: thin;
}
.cat-pill {
  border: 1px solid var(--border); background: #fff;
  padding: 8px 16px; border-radius: 99px;
  font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast) ease, color var(--t-fast) ease,
              border-color var(--t-fast) ease, transform var(--t-fast) var(--ease-out);
}
.cat-pill:hover { background: var(--purple-50); border-color: var(--purple); color: var(--purple); transform: translateY(-1px); }
.cat-pill.cat-active {
  background: var(--purple); color: #fff; border-color: var(--purple);
}

/* Featured blog card */
.featured-blog {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--text);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) ease,
              box-shadow var(--t-base) ease;
}
@media (max-width: 880px) { .featured-blog { grid-template-columns: 1fr; } }
.featured-blog:hover {
  transform: translateY(-3px); border-color: var(--purple); text-decoration: none;
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.10);
}
.featured-blog-img { background: var(--purple-50); padding: 32px; display: flex; align-items: center; }
.featured-blog-body { padding: 40px 36px; display: flex; flex-direction: column; gap: 12px; }
.featured-blog-body .blog-category {
  font-size: 11.5px; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.featured-blog-body h2 { font-size: 26px; line-height: 1.25; margin: 0; }
.featured-blog-body p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.featured-blog-body .blog-meta { font-size: 12.5px; color: var(--text-soft); }
.featured-blog-cta {
  font-weight: 600; color: var(--purple); font-size: 14.5px; margin-top: 4px;
  transition: transform var(--t-base) var(--ease-out);
}
.featured-blog:hover .featured-blog-cta { transform: translateX(4px); }

/* ── BLOG POST WITH SIDEBAR ── */
.post-with-sidebar {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px; padding: 30px 24px 60px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 980px) { .post-with-sidebar { grid-template-columns: 1fr; gap: 32px; } }
.post-sidebar { display: flex; flex-direction: column; gap: 18px; }
@media (min-width: 981px) { .post-sidebar { position: sticky; top: 90px; align-self: start; max-height: calc(100vh - 110px); overflow-y: auto; } }
.sidebar-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
}
.sidebar-h {
  font-size: 12.5px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.sidebar-author { display: flex; align-items: center; gap: 10px; }
.sidebar-avatar {
  width: 40px; height: 40px; border-radius: 99px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.sidebar-input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 13.5px; margin-bottom: 8px;
  font-family: inherit;
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li {
  font-size: 13px; padding: 5px 0;
  border-bottom: 1px solid var(--border-light, #F1F5F9);
}
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list a { color: var(--text); }
.sidebar-list a:hover { color: var(--purple); text-decoration: none; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark)) !important;
  color: #fff; border-color: var(--purple) !important;
}

/* ── BLOG POST ── */
.post-hero { padding: 60px 0 30px; }
.post-hero h1 { max-width: 740px; }
.post-hero .post-meta { font-size: 13.5px; color: var(--text-muted); margin-top: 18px; }
.post-body { max-width: 720px; margin: 0 auto; padding: 30px 24px 80px; font-size: 17px; line-height: 1.8; }
.post-body h2 { font-size: 26px; margin-top: 42px; margin-bottom: 16px; }
.post-body h3 { font-size: 20px; margin-top: 32px; }
.post-body p { color: var(--text); margin-bottom: 18px; }
.post-body ul { padding-left: 22px; margin: 18px 0; }
.post-body li { margin-bottom: 8px; }

/* ── FOOTER ── */
footer.site {
  background: #0F172A; color: #CBD5E1;
  padding: 60px 0 30px; margin-top: 80px;
}
footer.site a { color: #CBD5E1; }
footer.site a:hover { color: #fff; text-decoration: none; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid #1E293B;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-size: 15px; line-height: 1.6; max-width: 280px; color: #94A3B8; }
.footer-col h4 { color: #fff; font-size: 13.5px; margin-bottom: 14px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 13.5px; }
.footer-bottom {
  padding-top: 30px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: #64748B;
}

/* ── PRODUCT PAGE ── */
.product-hero { padding: 80px 0 40px; }
.product-hero h1 { max-width: 720px; }
/* All product feature grids are SQUARE: 3×3 (9 cards) on desktop, 2×2 fallback on tablet */
.product-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
/* 2×2 grid for 4-card sections (about page differentiators, etc.) */
.differentiator-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 32px;
}
@media (max-width: 720px) { .differentiator-grid { grid-template-columns: 1fr; } }
.differentiator-grid > .product-feature { padding: 32px; }
@media (max-width: 1100px) { .product-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .product-features-grid { grid-template-columns: 1fr; } }

.product-feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.product-feature:hover {
  transform: translateY(-3px); border-color: var(--purple);
  box-shadow: 0 12px 28px rgba(108, 71, 255, 0.10);
}
.product-feature h3 { font-size: 17px; margin: 0; color: var(--text); }
.product-feature p  { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── INDUSTRY / PLATFORM PAGES — 2×2 balanced grid for pain_points & features ── */
.bullet-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin: 32px auto 0; max-width: 980px;
}
@media (max-width: 720px) { .bullet-grid { grid-template-columns: 1fr; } }
.bullet-block {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.bullet-block:hover {
  transform: translateY(-3px); border-color: var(--purple);
  box-shadow: 0 10px 24px rgba(108, 71, 255, 0.08);
}
.bullet-block h3 { font-size: 17px; margin: 0; }
.bullet-block p { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.6; }

/* ── FAQ ── */
.faq-block { max-width: 720px; margin: 40px auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 18px 0;
}
.faq-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* 2-column FAQ grid — used on industry/compare/about pages where FAQs should
 * fill the full container width instead of being centered narrow. */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px;
  margin: 32px auto 0;
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-grid .faq-item {
  padding: 22px 0;
}
.faq-grid .faq-item h4 { font-size: 16.5px; }
.faq-grid .faq-item p { font-size: 14.5px; line-height: 1.6; }

/* ── CONTACT FORM ── */
.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; max-width: 920px; margin: 32px auto 0;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 14px;
  background: #fff; color: var(--text);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.10);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
  background-size: 18px; padding-right: 40px;
}

/* ── BANNER CTA ── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff; border-radius: var(--radius);
  padding: 56px 40px; text-align: center; margin: 60px auto;
}
.cta-banner h2 { color: #fff; max-width: 600px; margin: 0 auto 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 28px; }
.cta-banner .btn { background: #fff; color: var(--purple); border-color: #fff; }
.cta-banner .btn:hover { background: var(--purple-50); }

/* ── LOGO BAR ── */
.logo-bar {
  display: flex; gap: 36px; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 28px 0;
}
.logo-bar .logo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--text-soft);
  padding: 6px 12px; background: var(--bg-section); border-radius: 8px;
  transition: transform var(--t-fast) var(--ease-out),
              color var(--t-fast) ease,
              background var(--t-fast) ease;
}
.logo-bar .logo-pill:hover {
  transform: translateY(-2px) scale(1.04);
  color: var(--purple); background: var(--purple-50);
}
.logo-bar .logo-pill .logo-mark {
  width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
}
