/* ================================================================
   GLISSANDO AI — SHARED LP / PAGE STYLES
   /css/glissando-pages.css
   Used by all non-blog, non-home pages rebuilt from Sitejet.
   Do not edit individual page files for shared styles — edit here.
   ================================================================ */

/* ── Reset & tokens ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple:   #6356e5;
  --purple-h: #4f44cc;
  --purple-l: #ede9ff;
  --ink:      #111827;
  --body:     #374151;
  --muted:    #6b7280;
  --border:   #e5e7eb;
  --bg:       #ffffff;
  --bg-alt:   #f9fafb;
  --bg-tint:  #f8f7ff;
  --radius:   10px;
  --shadow:   0 1px 4px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  --max-w:    1100px;
  --f:        'Inter', system-ui, sans-serif;
}
html  { scroll-behavior: smooth; }
body  { font-family: var(--f); color: var(--body); background: var(--bg);
        -webkit-font-smoothing: antialiased; line-height: 1.65; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }

/* ── Layout helpers ───────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-alt  { background: var(--bg-alt); }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--ink); }

.tag {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-l);
  border-radius: 40px; padding: 4px 12px; margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 580px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(24px, 3.5vw, 34px); font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 12px;
}
.section-head p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; font-family: var(--f);
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.18s ease; line-height: 1; letter-spacing: -0.01em;
}
.btn-primary { background: var(--purple); color: #fff; border-color: var(--purple);
               box-shadow: 0 2px 8px rgba(99,86,229,0.22); }
.btn-primary:hover { background: var(--purple-h); border-color: var(--purple-h);
                     transform: translateY(-1px); color: #fff;
                     box-shadow: 0 4px 16px rgba(99,86,229,0.32); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); background: var(--bg-alt); color: var(--ink); }
.btn-ghost   { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-white   { background: #fff; color: var(--purple); border-color: #fff; }
.btn-white:hover { background: var(--purple-l); color: var(--purple-h); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.nav-brand  { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; color: var(--purple); }
.nav-brand em { font-style: normal; }
.nav-links  { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--body); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── Hero ─────────────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  background: linear-gradient(170deg, #fff 55%, var(--bg-tint) 100%);
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--ink);
  letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--purple); }
.page-hero .hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65;
  margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero with stats strip */
.hero-stats-strip {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; background: #fff; box-shadow: var(--shadow);
  max-width: 480px; margin: 40px auto 0;
}
.hero-stats-strip .stat { flex: 1; padding: 18px 12px; text-align: center; border-right: 1px solid var(--border); }
.hero-stats-strip .stat:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.stat-num em { font-style: normal; color: var(--purple); }
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Problem / Solution ───────────────────────────────────────── */
.prob-sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ps-card { border-radius: 14px; padding: 32px 28px; }
.ps-card.dark  { background: var(--ink); }
.ps-card.light { background: var(--bg-tint); border: 1px solid var(--purple-l); }
.ps-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.ps-card.dark  .ps-label { color: rgba(255,255,255,0.4); }
.ps-card.light .ps-label { color: var(--purple); }
.ps-card h3 {
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 20px; line-height: 1.25;
}
.ps-card.dark  h3 { color: #fff; }
.ps-card.light h3 { color: var(--ink); }
.ps-list { display: flex; flex-direction: column; gap: 11px; }
.ps-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; }
.ps-dot {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.dark .ps-dot  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.dark .ps-item { color: rgba(255,255,255,0.72); }
.light .ps-dot { background: var(--purple-l); color: var(--purple); }
.light .ps-item { color: var(--body); }

/* ── Feature cards (3-col grid) ───────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon {
  width: 40px; height: 40px; background: var(--purple-l);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 14px;
}
.feat-card h3 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: -0.01em; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Process steps ────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { text-align: center; padding: 0 12px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 17px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Who-this-is-for (target audience pills) ──────────────────── */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.audience-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 16px;
}
.audience-icon {
  width: 36px; height: 36px; background: var(--purple-l);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
}
.audience-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.audience-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Case study cards ─────────────────────────────────────────── */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.case-card {
  background: var(--bg); border: 1px solid var(--border);
  border-left: 3px solid var(--purple); border-radius: 0 10px 10px 0;
  padding: 20px 18px; transition: box-shadow 0.18s;
}
.case-card:hover { box-shadow: var(--shadow); }
.case-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.case-problem { font-size: 13.5px; color: var(--body); line-height: 1.5; margin-bottom: 10px; }
.case-outcome { font-size: 13px; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 5px; }
.case-outcome::before { content: "✓"; font-size: 11px; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.testi-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple-l); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--purple); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

/* ── Team grid ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-av {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--purple-l); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 24px; color: var(--purple);
  margin: 0 auto 14px;
}
.team-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--muted); }

/* ── Tools hub cards ──────────────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tool-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.tool-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tool-icon {
  width: 44px; height: 44px; background: var(--purple-l); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 16px;
}
.tool-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.tool-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.tool-link { font-size: 14px; font-weight: 600; color: var(--purple); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.15s; }
.tool-link:hover { gap: 8px; }

/* ── Email capture strip ──────────────────────────────────────── */
.email-strip {
  background: var(--ink); border-radius: 12px;
  padding: 28px 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.email-strip h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.email-strip p  { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.email-strip form { display: flex; gap: 10px; flex-wrap: wrap; }
.email-strip input[type="email"] {
  padding: 10px 16px; border-radius: 8px; border: none;
  font-size: 14px; width: 220px; outline: none; font-family: var(--f);
}

/* ── About blurb ──────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: center; }
.about-split h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 16px; }
.about-split p { font-size: 15.5px; color: var(--body); line-height: 1.75; margin-bottom: 12px; }

/* ── FAQ accordion ────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--purple); flex-shrink: 0; margin-left: 16px; }
details[open] > summary::after { content: "−"; }
.faq-answer { padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── CTA banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, var(--purple) 100%);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Contact section ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 12px; }
.contact-info p  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.c-detail { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--body); }
.c-detail-icon {
  width: 34px; height: 34px; background: var(--purple-l); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--purple); flex-shrink: 0;
}
.contact-form-box { background: var(--bg-alt); border-radius: 14px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: var(--fb);
  color: var(--ink); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(99,86,229,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 12px; padding: 10px 16px; border-radius: 6px; font-size: 14px; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--ink); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand { font-size: 16px; font-weight: 800; color: var(--purple); letter-spacing: -0.03em; margin-bottom: 9px; }
.footer-brand em { font-style: normal; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.6; max-width: 210px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.58); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.28); }

/* ── Chatbot ──────────────────────────────────────────────────── */
.chatbot-icon {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #6356e5, #764ba2);
  color: white; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: all 0.2s;
}
.chatbot-icon:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.chatbot-expanded {
  position: fixed; bottom: 86px; right: 20px;
  width: 360px; height: 520px; background: white;
  border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  display: none; z-index: 9998; border: none; overflow: hidden;
}
.chatbot-expanded.open { display: block; }

/* ── Pricing cards ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 24px;
  background: var(--bg); display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pricing-card.featured {
  background: var(--ink); border-color: transparent;
  box-shadow: 0 4px 24px rgba(99,86,229,0.18);
}
.pricing-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 10px;
}
.pricing-card:not(.featured) .pricing-label { color: var(--muted); }
.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.45); }
.pricing-name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.pricing-card:not(.featured) .pricing-name { color: var(--ink); }
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-price { font-size: 30px; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 6px; }
.pricing-card:not(.featured) .pricing-price { color: var(--purple); }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-desc { font-size: 13px; margin-bottom: 20px; line-height: 1.5; }
.pricing-card:not(.featured) .pricing-desc { color: var(--muted); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.52); }
.pricing-features { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 22px; }
.pricing-feature { font-size: 13.5px; display: flex; align-items: flex-start; gap: 9px; }
.pricing-card:not(.featured) .pricing-feature { color: var(--body); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.pricing-feature::before { content: "✓"; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card:not(.featured) .pricing-feature::before { color: var(--purple); }
.pricing-card.featured .pricing-feature::before { color: rgba(255,255,255,0.6); }
.pricing-note { font-size: 12px; margin-top: 8px; padding-top: 8px; border-top: 1px solid; }
.pricing-card:not(.featured) .pricing-note { color: var(--muted); border-color: var(--border); }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }

/* ── Blog ─────────────────────────────────────────────────────── */
.blog-post-wrap { max-width: 820px; margin: 0 auto; padding: 40px 24px 60px; }
.blog-post-back { font-size: 14px; margin-bottom: 24px; }
.blog-post-back a { color: var(--purple); text-decoration: none; }
.blog-post-back a:hover { text-decoration: underline; }
.blog-post-date { font-size: 14px; color: #888; margin-bottom: 16px; }
.blog-post-thumb { width: 100%; max-height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 32px; }
.blog-post-body h1, .blog-post-body h2, .blog-post-body h3 { margin-top: 32px; }
.blog-post-body p { line-height: 1.7; margin-bottom: 16px; }
.blog-post-body img { max-width: 100%; border-radius: 6px; }
.blog-post-body ul, .blog-post-body ol { padding-left: 24px; margin-bottom: 16px; }
.blog-post-body li { line-height: 1.7; margin-bottom: 6px; }
.blog-post-body table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.blog-post-body th, .blog-post-body td { padding: 10px 14px; border: 1px solid #ddd; }
.blog-post-body th { background: #f5f5f5; }
.blog-post-body iframe { max-width: 100%; border-radius: 8px; }
.post-subtitle { font-size: 1.1em; color: #666; margin: 4px 0 28px; font-style: italic; }
/* Agent-type callout pattern */
.agent-type { margin: 8px 0 24px; }
.agent-type-badge { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.agent-num { font-size: 52px; font-weight: 900; color: #ebe9fc; line-height: 1; flex-shrink: 0; letter-spacing: -2px; }
.agent-type-badge h2 { margin-top: 0 !important; margin-bottom: 0; }
/* Callout boxes */
.callout { border-left: 4px solid var(--purple); background: #f8f7ff; border-radius: 0 8px 8px 0; padding: 13px 16px; margin: 10px 0; font-size: 15px; line-height: 1.6; }
.callout-warning { border-left-color: #e05555; background: #fff8f7; }
.callout-when { border-left-color: #3b9ddd; background: #f4faff; }
.type-divider { border: none; border-top: 1px solid #eee; margin: 28px 0; }
/* 3-question framework */
.three-q { margin: 20px 0 28px; }
.q-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; margin-bottom: 18px; }
.q-num { width: 38px; height: 38px; background: #1a1a2e; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 3px; }
.q-item p { margin-bottom: 0; }
/* In-post CTA box */
.cta-box { background: linear-gradient(135deg, #1a1a2e 0%, #6356e5 100%); border-radius: 12px; padding: 32px 24px; text-align: center; margin: 40px 0 8px; }
.cta-box h3 { color: white !important; margin-top: 0 !important; }
.cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.cta-box a { display: inline-block; background: white; color: var(--purple); padding: 11px 26px; border-radius: 6px; font-weight: 700; text-decoration: none; font-size: 15px; }
.cta-box a:hover { background: #f0eeff; }
/* Blog index grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; padding: 16px 0 40px; }
.blog-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.08); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.14); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 12px; color: #888; margin-bottom: 8px; }
.blog-card-title { font-size: 17px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--ink); text-decoration: none; }
.blog-card-title a:hover { color: var(--purple); }
.blog-card-excerpt { font-size: 14px; color: #555; line-height: 1.6; flex: 1; }
.blog-card-more { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--purple); text-decoration: none; }
.blog-card-more:hover { text-decoration: underline; }
.blog-pagination { display: flex; gap: 8px; justify-content: center; padding: 16px 0 32px; }
.blog-pagination a, .blog-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; }
.blog-pagination a { background: #f0efff; color: var(--purple); }
.blog-pagination a:hover { background: var(--purple); color: #fff; }
.blog-pagination span { background: var(--purple); color: #fff; }

/* ── Work / Case Studies ──────────────────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; padding: 8px 0 40px; }
.work-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 16px rgba(0,0,0,.07); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; text-decoration: none; color: inherit; }
.work-card:hover { box-shadow: 0 8px 32px rgba(99,86,229,.16); transform: translateY(-3px); }
.work-card-img { width: 100%; height: 220px; object-fit: cover; object-position: top; display: block; }
.work-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.work-tag { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; background: var(--purple-l); color: var(--purple); }
.work-card h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: var(--ink); line-height: 1.3; }
.work-card p { font-size: 14.5px; color: var(--body); line-height: 1.65; flex: 1; margin: 0 0 18px; }
.work-card-link { font-size: 14px; font-weight: 600; color: var(--purple); align-self: flex-start; }

.mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; padding: 8px 0 16px; }
.mini-card { background: var(--bg-alt); border-radius: 10px; padding: 22px; border: 1px solid var(--border); }
.mini-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 7px; color: var(--ink); }
.mini-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0 0 10px; }
.mini-tag { font-size: 11px; font-weight: 600; color: var(--purple); }

/* Case study detail pages */
.case-wrap { max-width: 860px; margin: 0 auto; padding: 48px 24px 64px; }
.case-back { font-size: 14px; margin-bottom: 28px; }
.case-back a { color: var(--purple); text-decoration: none; }
.case-hero-img { width: 100%; border-radius: 12px; margin: 0 0 36px; display: block; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.case-h1 { font-size: 36px; font-weight: 800; color: var(--ink); margin: 0 0 16px; line-height: 1.2; }
.case-lead { font-size: 18px; color: var(--body); line-height: 1.7; margin-bottom: 36px; }
.case-meta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 32px 0 40px; }
.case-meta-item { background: var(--bg-alt); border-radius: 10px; padding: 18px 20px; }
.case-meta-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.case-meta-value { font-size: 15px; font-weight: 600; color: var(--ink); }
.case-body h2 { font-size: 24px; font-weight: 700; margin: 44px 0 14px; color: var(--ink); }
.case-body p { font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; color: var(--body); }
.case-body ul { padding-left: 20px; margin-bottom: 18px; }
.case-body li { font-size: 15.5px; line-height: 1.7; margin-bottom: 8px; color: var(--body); }
.case-img { width: 100%; border-radius: 10px; margin: 24px 0 8px; display: block; }
.case-img-caption { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 24px; }
.case-result { background: linear-gradient(135deg, #f8f7ff, #ede9ff); border-radius: 12px; padding: 28px 32px; margin: 36px 0; border-left: 4px solid var(--purple); }
.case-result h3 { color: var(--purple); margin: 0 0 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }
.case-result ul { padding-left: 20px; margin: 0; }
.case-result li { font-size: 15px; color: var(--body); margin-bottom: 7px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feat-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
  .testi-grid    { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .page-hero { padding: 60px 0 48px; }
  .page-hero h1 { font-size: 30px; }
  .prob-sol-grid { grid-template-columns: 1fr; }
  .feat-grid     { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .tools-grid    { grid-template-columns: 1fr; }
  .cases-grid    { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .email-strip   { flex-direction: column; }
  .email-strip input[type="email"] { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 62px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 12px 24px 20px; gap: 2px;
  }
  .nav-links.open a { padding: 10px 0; display: block; font-size: 15px; }
  .chatbot-expanded { width: calc(100vw - 32px); right: 16px; }
  .agent-num { font-size: 38px; }
  .q-item { grid-template-columns: 40px 1fr; gap: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
}
