/* ─── Shared Inner-Page Styles ─────────────────────────────────────── */

/* Inner pages: navbar always shows white bg (transparent default hides on dark heroes) */
.navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px) saturate(1.4) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 2px 20px rgba(13,20,50,0.07) !important;
  padding: 10px 0 !important;
}
.navbar .nav-links a { color: var(--body); }
.navbar .btn-nav-login { border-color: var(--border-2); color: var(--body); }
.navbar .hamburger span { background: var(--ink); }
.navbar .logo-pill img { height: 64px; }

/* Active nav link */
.nav-links a.nav-active { color: var(--orange); font-weight: 700; }

/* Page hero (dark) */
.page-hero {
  background: linear-gradient(145deg, #0D1432 0%, #1A0840 60%, #0B1E50 100%);
  padding: 110px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }

/* Pricing: light hero */
.page-hero-light {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 120px 0 64px;
  text-align: center;
}

/* Contact: warm orange-purple gradient hero */
.page-hero-warm {
  background: linear-gradient(135deg, #F7931E 0%, #C15A10 30%, #7B35C8 70%, #5B22A8 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='white' stroke-width='0.4' stroke-opacity='0.08'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-warm .container { position: relative; z-index: 1; }

/* Industry chips */
.ind-chips {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-top: 28px;
}
.ind-chips span {
  font-size: 13px; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 5px 14px; white-space: nowrap;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(247,147,30,0.15); border: 1px solid rgba(247,147,30,0.3);
  color: #FFAB4A; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.page-h1 {
  font-family: var(--font-head); font-size: clamp(36px, 5vw, 62px);
  font-weight: 400; color: #fff; line-height: 1.18;
  letter-spacing: -0.3px; margin-bottom: 20px;
}
.page-h1 .accent { background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-sub {
  font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,0.62);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
}
.page-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust-row {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px;
}
.hero-trust-row span { white-space: nowrap; }
.htr-dot { color: rgba(255,255,255,0.2); font-size: 16px; }
.btn-page-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad-orange); color: #fff; font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 12px; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(247,147,30,0.4); transition: var(--t); text-decoration: none;
}
.btn-page-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(247,147,30,0.5); }
.btn-page-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  font-size: 15px; font-weight: 600; padding: 14px 32px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15); transition: var(--t); text-decoration: none;
}
.btn-page-ghost:hover { background: rgba(255,255,255,0.14); }

/* ─── Features Page ──────────────────────────────────────────────────── */
.feat-category { margin-bottom: 80px; }
.feat-cat-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
  padding-bottom: 20px; border-bottom: 2px solid var(--border);
}
.feat-cat-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 6px;
}
.feat-cat-title { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--ink); }
.feat-cat-count { font-size: 13px; color: var(--muted); margin-left: auto; }
.feat-modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-mod-card {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border); transition: var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.feat-mod-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); border-color: rgba(123,53,200,0.2); }
.fmc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.fmc-name { font-family: var(--font-head); font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.fmc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.fmc-feats { list-style: none; padding: 0; margin: 0 0 16px; }
.fmc-feats li { font-size: 12.5px; color: var(--ink); padding: 3px 0; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.fmc-feats li svg { flex-shrink: 0; margin-top: 1px; }
.fmc-tag {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 5px; margin-top: auto;
}
.soon-badge {
  font-size: 11px; font-weight: 700; background: rgba(16,185,129,0.1); color: #10B981;
  padding: 2px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 4px;
}

/* ─── Industries Page ────────────────────────────────────────────────── */
.ind-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.ind-detail-card {
  background: #fff; border-radius: 20px; padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: var(--t);
}
.ind-detail-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.10); }
.idc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.idc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.idc-name { font-family: var(--font-head); font-size: 20px; font-weight: 500; color: var(--ink); }
.idc-challenge { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.idc-features { display: flex; flex-wrap: wrap; gap: 8px; }
.idc-feat-tag { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 7px; }

/* ─── Pricing Page ───────────────────────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; margin-top: 64px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  padding: 18px 20px; text-align: center; background: var(--bg-soft); color: var(--ink);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.th-featured { background: var(--purple); color: #fff; border-radius: 12px 12px 0 0; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--ink); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table td.td-featured { background: rgba(123,53,200,0.04); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .ct-yes { color: #10B981; font-weight: 700; font-size: 16px; }
.compare-table .ct-no { color: #CBD5E1; font-size: 16px; }
.compare-table .ct-text { font-size: 12.5px; color: var(--purple); font-weight: 600; }
.compare-table .cat-row td { background: var(--bg-soft); font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); padding: 10px 20px; }

/* FAQ */
.faq-section { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-head); font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--purple); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; background: var(--bg-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--t); }
.faq-item.open .faq-icon { background: var(--purple); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14.5px; color: var(--muted); line-height: 1.8; padding-bottom: 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ─── Book Demo Page ─────────────────────────────────────────────────── */
.demo-page-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px;
  max-width: 1100px; margin: 0 auto; padding: 80px 32px;
}
.demo-left { padding-top: 8px; }
.demo-left h2 { font-family: var(--font-head); font-size: 38px; font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.2px; }
.demo-left p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.demo-checklist { list-style: none; padding: 0; margin: 0 0 36px; }
.demo-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--border); }
.demo-checklist li:last-child { border-bottom: none; }
.dl-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(16,185,129,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-steps { display: flex; align-items: center; gap: 12px; }
.ds-item { text-align: center; flex: 1; }
.ds-num { width: 36px; height: 36px; background: var(--grad-purple); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 15px; margin: 0 auto 8px; }
.ds-text { font-size: 12px; color: var(--muted); line-height: 1.4; }
.ds-arrow { color: var(--muted); font-size: 18px; }
.demo-form-card {
  background: #fff; border-radius: 24px; padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.dfc-title { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.dfc-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* ─── Contact Page ───────────────────────────────────────────────────── */

/* Hero chips row */
.contact-hero-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.contact-hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 40px; padding: 9px 18px; color: #fff;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.contact-hero-chip:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.chc-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Main section */
.contact-section { background: var(--bg-soft); }
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  max-width: 1100px; margin: 0 auto; padding: 80px 32px;
  align-items: start;
}

/* Left column */
.cp-left {}
.cp-heading {
  font-family: var(--font-head); font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px; letter-spacing: 0;
}
.cp-sub { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

/* Contact method cards */
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cmc {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 20px; text-decoration: none; color: var(--ink); transition: var(--t);
}
.cmc:hover {
  border-color: rgba(123,53,200,0.3);
  box-shadow: 0 6px 20px rgba(123,53,200,0.10);
  transform: translateX(4px);
}
.cmc.cmc-wa:hover { border-color: rgba(37,211,102,0.4); box-shadow: 0 6px 20px rgba(37,211,102,0.10); }
.cmc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmc-body { flex: 1; min-width: 0; }
.cmc-type { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 2px; }
.cmc-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmc-hint { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cmc-arr { flex-shrink: 0; color: var(--muted); transition: var(--t); }
.cmc:hover .cmc-arr { color: var(--purple); transform: translateX(2px); }

/* Office hours */
.office-hours { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
.oh-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.oh-row {
  display: flex; justify-content: space-between; font-size: 14px; color: var(--ink);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.oh-row:last-child { border-bottom: none; }

/* Demo CTA block at bottom of left col */
.contact-demo-block {
  background: linear-gradient(135deg, rgba(123,53,200,0.07) 0%, rgba(37,99,235,0.06) 100%);
  border: 1px solid rgba(123,53,200,0.15);
  border-radius: 16px; padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.cdb-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-purple); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Form fields */
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 16px; }
.cf-label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.cf-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 15px; color: var(--ink);
  background: #fff; font-family: var(--font-body);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
}
.cf-input:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,53,200,0.10);
}
.cf-input::placeholder { color: #A0AEC0; }
.cf-submit {
  width: 100%; padding: 14px 24px;
  background: var(--grad-orange); color: #fff;
  font-size: 16px; font-weight: 700; font-family: var(--font-body);
  border: none; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(247,147,30,0.35); transition: var(--t);
  margin-top: 8px;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(247,147,30,0.5); }
.cf-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* ─── Blog Page ──────────────────────────────────────────────────────── */
.blog-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.blog-cat-btn {
  font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 8px;
  border: 1px solid var(--border); background: #fff; color: var(--ink); cursor: pointer; transition: var(--t);
}
.blog-cat-btn.active, .blog-cat-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }
.blog-card-cover { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-cover img { transform: scale(1.04); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-head); font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--border); }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--purple); text-decoration: none; }
.blog-read-more:hover { text-decoration: underline; }

/* ─── Article Page ───────────────────────────────────────────────────── */
.article-hero { background: linear-gradient(145deg,#0D1432 0%,#1A0840 60%,#0B1E50 100%); padding: 110px 0 56px; }
.article-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.article-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.article-cat-pill { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; background: rgba(247,147,30,0.15); border: 1px solid rgba(247,147,30,0.3); color: #FFAB4A; }
.article-cat-pill.purple { background: rgba(123,53,200,0.2); border-color: rgba(123,53,200,0.35); color: #C084FC; }
.article-cat-pill.blue { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.35); color: #93C5FD; }
.article-cat-pill.green { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3); color: #6EE7B7; }
.article-date-meta { font-size: 13px; color: rgba(255,255,255,0.45); }
.article-h1 { font-family: var(--font-head); font-size: clamp(26px,4vw,46px); font-weight: 400; color: #fff; line-height: 1.25; letter-spacing: -0.2px; margin-bottom: 16px; }
.article-lead { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 700px; }
.article-author-row { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.article-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.article-author-name { font-size: 14px; font-weight: 600; color: #fff; }
.article-author-role { font-size: 12px; color: rgba(255,255,255,0.45); }
/* Aliases used by article blade files */
.article-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.article-cat-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; }
.article-read-time { font-size: 13px; color: rgba(255,255,255,0.45); }
.aa-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.aa-name { font-size: 14px; font-weight: 600; color: #fff; }
.aa-role { font-size: 12px; color: rgba(255,255,255,0.45); }
/* Base layout */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 52px 24px 80px; }
.article-cover-img { width: 100%; border-radius: 16px; display: block; margin-bottom: 36px; aspect-ratio: 16/7; object-fit: cover; }
.article-sidebar { position: sticky; top: 90px; align-self: start; }
.article-sidebar-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; margin-bottom: 20px; }
.article-sidebar-card h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); margin-bottom: 14px; }
.article-sidebar-card p { font-size: 14px; color: var(--body); line-height: 1.7; margin-bottom: 14px; }
.related-links { display: flex; flex-direction: column; gap: 10px; }
.related-links a { font-size: 14px; color: var(--purple); text-decoration: none; line-height: 1.5; }
.related-links a:hover { text-decoration: underline; }
.related-card { display: block; border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--border); text-decoration: none; transition: box-shadow 0.18s ease, transform 0.18s ease; }
.related-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.related-card-body { padding: 16px 18px; }
.related-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; }
.related-title { font-family: var(--font-head); font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.45; }
.article-feat-img-wrap { max-width: 820px; margin: -28px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.article-feat-img-wrap img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.28); aspect-ratio: 16/7; object-fit: cover; }
.article-body { max-width: 100%; margin: 0; padding: 0; }
.article-body h2 { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--ink); margin: 44px 0 14px; letter-spacing: 0; }
.article-body h3 { font-family: var(--font-head); font-size: 17px; font-weight: 500; color: var(--ink); margin: 28px 0 10px; }
.article-body p { font-size: 16px; color: #374151; line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { font-size: 15.5px; color: #374151; line-height: 1.8; margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-callout { border-left: 4px solid var(--purple); background: rgba(123,53,200,0.05); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 24px 0; }
.article-callout.orange { border-left-color: var(--orange); background: rgba(247,147,30,0.05); }
.article-callout.green { border-left-color: #10B981; background: rgba(16,185,129,0.05); }
.article-callout p { margin: 0; font-size: 15px; color: var(--ink); }
.article-tip { display: flex; gap: 14px; background: var(--bg-soft); border-radius: 12px; padding: 18px 20px; margin: 22px 0; border: 1px solid var(--border); }
.article-tip-icon { font-size: 22px; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.article-tip p { margin: 0; font-size: 14.5px; color: var(--body); line-height: 1.7; }
.article-hr { border: none; border-top: 1px solid var(--border); margin: 44px 0; }
.article-step-list { list-style: none; padding: 0; counter-reset: steps; }
.article-step-list li { counter-increment: steps; display: flex; gap: 16px; margin-bottom: 20px; }
.article-step-list li::before { content: counter(steps); min-width: 32px; height: 32px; border-radius: 50%; background: var(--grad-purple); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.article-step-list li div { font-size: 15.5px; color: #374151; line-height: 1.8; }
.article-step-list li strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.related-section { background: var(--bg-soft); padding: 60px 0; }
.related-section h3 { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ─── Shared inner-page CTA ──────────────────────────────────────────── */
.inner-cta { background: linear-gradient(145deg, #0D1432 0%, #1A0840 60%, #0B1E50 100%); padding: 80px 0; text-align: center; }
.inner-cta h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: #fff; letter-spacing: -0.2px; margin-bottom: 12px; }
.inner-cta p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 36px; }
.inner-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Responsive ─────────────────────────────────────────────────────── */

/* ── Tablet ──────────────────────────────────────────────────── */
@media(max-width: 1024px) {
  .feat-modules-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-page-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .ind-detail-grid   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .article-layout    { grid-template-columns: 1fr; }
  .article-sidebar   { display: none; }
  .related-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤768px) ─────────────────────────────────────────── */
@media(max-width: 768px) {
  /* Inner page hero */
  .page-hero       { padding: 90px 0 56px; }
  .page-hero-light { padding: 90px 0 48px; }
  .page-hero-warm  { padding: 90px 0 48px; }
  .page-h1 { font-size: clamp(28px, 7vw, 44px); letter-spacing: -1px; margin-bottom: 14px; }
  .page-sub { font-size: 15px; margin-bottom: 24px; }
  .page-hero-actions { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto 20px; }
  .btn-page-primary, .btn-page-ghost { justify-content: center; font-size: 14px; padding: 13px 20px; }

  /* Industry chips */
  .ind-chips { gap: 7px; margin-top: 20px; }
  .ind-chips span { font-size: 12px; padding: 4px 12px; }

  /* Inner page grid layouts */
  .ind-detail-grid   { grid-template-columns: 1fr; gap: 16px; }
  .ind-detail-card   { padding: 24px 20px; }
  .feat-modules-grid { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Pricing */
  .pricing-page-grid { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto 56px; }
  .compare-table-wrap { margin-top: 40px; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13px; }

  /* FAQ */
  .faq-q { font-size: 15px; padding: 18px 0; }
  .faq-a { font-size: 14px; }

  /* Demo form */
  .demo-page-grid    { padding: 48px 20px; gap: 32px; }
  .demo-form-card    { padding: 28px 20px; border-radius: 18px; }
  .demo-left h2      { font-size: clamp(24px, 6vw, 34px); }
  .demo-steps { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ds-arrow { transform: rotate(90deg); align-self: center; }

  /* Contact hero chips — stack vertically on mobile */
  .contact-hero-row { flex-direction: column; align-items: center; gap: 10px; margin-top: 24px; }
  .contact-hero-chip { width: 100%; max-width: 300px; justify-content: center; font-size: 13.5px; padding: 10px 16px; }

  /* Contact left column */
  .cp-heading { font-size: 24px; }
  .contact-demo-block { flex-direction: column; gap: 12px; padding: 18px 16px; }

  /* Contact form */
  .contact-page-grid { padding: 48px 20px; gap: 32px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .cmc { padding: 14px 16px; gap: 12px; }
  .cmc-val { font-size: 14px; }
  .cmc-icon { width: 44px; height: 44px; border-radius: 10px; }
  .office-hours { border-radius: 10px; }

  /* Blog */
  .blog-categories { gap: 7px; margin-bottom: 32px; }
  .blog-cat-btn { font-size: 12px; padding: 7px 14px; }
  .blog-card-title { font-size: 15px; }
  .blog-card-body  { padding: 18px; }

  /* Article */
  .article-hero { padding: 88px 0 44px; }
  .article-h1   { font-size: clamp(24px, 6vw, 38px); letter-spacing: -0.5px; }
  .article-lead { font-size: 16px; }
  .article-body { font-size: 15px; }
  .article-body h2 { font-size: clamp(20px, 5vw, 28px); }
  .article-cover-img { border-radius: 12px; }
  .article-layout  { gap: 0; }
  .article-sidebar { display: none; }
  .related-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Inner CTA */
  .inner-cta { padding: 56px 0; }
  .inner-cta h2 { font-size: clamp(24px, 6vw, 38px); }
  .inner-cta p  { font-size: 15px; }
  .inner-cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .inner-cta-actions .btn-page-primary,
  .inner-cta-actions .btn-page-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Form inputs — 16px+ to prevent iOS zoom */
  .cf-input, .cf-textarea, .cf-select { font-size: 16px; }

  /* Bottom padding for sticky bar */
  .inner-cta { padding-bottom: 80px; }
}

/* ── Small phones (≤480px) ───────────────────────────────────── */
@media(max-width: 480px) {
  .page-h1 { font-size: clamp(26px, 8vw, 36px); }
  .blog-grid { grid-template-columns: 1fr; }
  .demo-page-grid, .contact-page-grid { padding: 36px 16px; }
  .demo-form-card { padding: 24px 16px; }
  .ind-detail-card { padding: 20px 16px; }
  .idc-name { font-size: 17px; }
  .feat-cat-title { font-size: 18px; }
  .feat-mod-card { padding: 20px 16px; }
  .related-grid { grid-template-columns: 1fr; }
  .page-eyebrow { font-size: 11.5px; padding: 5px 12px; }

  /* Pricing cards compact */
  .pricing-page-grid { max-width: 340px; }

  /* Article hero tighter */
  .article-hero { padding: 80px 0 36px; }
  .article-hero-inner { padding: 0 16px; }
  .article-body { padding: 0; }

  /* Contact page — phones */
  .contact-hero-chip { max-width: 100%; font-size: 13px; }
  .page-hero-warm { padding: 80px 0 40px; }
  .cp-heading { font-size: 22px; }
  .cmc { padding: 12px 14px; gap: 10px; }
  .cmc-icon { width: 40px; height: 40px; border-radius: 10px; }
  .cmc-val { font-size: 13.5px; }
  .cf-input { padding: 12px 12px; border-radius: 9px; }
  .cf-submit { font-size: 15px; padding: 13px 20px; }
  .contact-demo-block { padding: 16px 14px; }
  .cdb-icon { width: 38px; height: 38px; border-radius: 10px; }
}
