/* ════════════════════════════════════════════════════════════════
   ALTITUDE APAC — SUPPLEMENTARY STYLESHEET
   All inner-page component styles missing from style.css
   ════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 5rem 6% 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.025;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.hero-inner, .page-hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin-left: auto; margin-right: auto;
}
/* Keep text readable — constrain only the text block inside */
.page-hero-inner h1,
.page-hero-inner p,
.page-hero-inner .breadcrumb,
.page-hero-inner .page-tag,
.page-hero-inner .hero-actions {
  max-width: 720px;
}
.page-tag, .hero-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); background: rgba(232,137,42,0.12);
  border: 1px solid rgba(232,137,42,0.25);
  padding: 0.3rem 0.75rem; border-radius: 4px; margin-bottom: 1rem;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75; max-width: 620px; margin-bottom: 1.75rem; }
.breadcrumb {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1rem; }
.page-breadcrumb a { color: var(--ink-soft); text-decoration: none; }

/* ── PAGE HERO WITH IMAGE ── */
.page-hero.has-hero-img .hero-inner { max-width: 55%; }
.hero-left { flex: 1; }
.hero-right { flex: 0 0 420px; }
.hero-dash { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem; }

/* ── SECTION LAYOUT ── */
section { padding: 5rem 6%; }
.section-pad { padding: 5rem 6%; }
.section-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange-dark); margin-bottom: 0.5rem; display: block;
}

/* ── SPLIT LAYOUT ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text h2 { font-family: var(--font-head); font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight:700; color:var(--navy); letter-spacing:-0.025em; margin-bottom:1rem; line-height:1.2; }
.split-text p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.split-visual, .split-img {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 320px;
}
.split-img img { width: 100%; height: auto; display: block; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.check-list li {
  font-size: 0.9rem; color: var(--ink-mid); padding-left: 1.6rem; position: relative; line-height: 1.5;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 700; font-size: 0.85rem;
}

/* ── FEATURE GRID ── */
.feature-grid, .features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem;
}
.features-section { background: var(--bg-soft); }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.feature-card:hover { border-color: var(--orange-border); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(232,137,42,0.1); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; background: var(--orange-light);
  border: 1px solid var(--orange-border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.feature-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }
.feature-list { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.feature-list li { font-size: 0.82rem; color: var(--ink-soft); padding-left: 1rem; position: relative; }
.feature-list li::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── STATS BAND (inline on inner pages) ── */
.stats-band {
  background: var(--navy); padding: 3.5rem 6%;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 2rem;
}

/* ── USE CASES ── */
.use-cases { background: var(--bg-soft); }
.use-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem;
}
.use-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.use-card:hover { border-color: var(--orange-border); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,137,42,0.08); }
.use-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.use-num { font-size: 0.68rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.use-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.use-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy); padding: 5rem 6%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(232,137,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: -0.025em; line-height: 1.2; }
.cta-band h2 .accent { color: var(--orange); }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; line-height: 1.75; }

/* ── BUTTONS (additional) ── */
.btn-outline-white-sm {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 6px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  transition: all var(--ease);
}
.btn-outline-white-sm:hover { border-color: #fff; color: #fff; }
.btn-book, .btn-submit, .btn-submit-cv {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 600; padding: 0.75rem 1.75rem;
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  cursor: pointer; transition: background var(--ease), transform var(--ease);
  text-decoration: none;
}
.btn-book:hover, .btn-submit:hover, .btn-submit-cv:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ── LOGO / PARTNER GRIDS ── */
.logo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem;
  margin-top: 2.5rem;
}
.logo-tile {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.logo-tile:hover { border-color: var(--orange-border); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,137,42,0.08); }
.tech-logo-wrap { height: 70px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.tech-logo-img { max-height: 50px; max-width: 140px; object-fit: contain; filter: grayscale(30%); transition: filter var(--ease); }
.logo-tile:hover .tech-logo-img, .tech-tile:hover .tech-logo-img, .sales-tile:hover .tech-logo-img { filter: none; }
.logo-name, .tech-name, .sales-name { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.logo-badge, .tech-badge, .sales-region {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange-dark); background: var(--orange-light); border: 1px solid var(--orange-border);
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.logo-desc, .sales-desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.65; margin-top: 0.5rem; }
.tech-partner-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1.25rem;
  margin-top: 2rem;
}
.tech-tile {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1rem; text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}
.tech-tile:hover { border-color: var(--orange-border); transform: translateY(-2px); }
.sales-partner-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.5rem;
  margin-top: 2rem;
}
.sales-tile {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.sales-tile:hover { border-color: var(--orange-border); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,137,42,0.08); }

/* ── BENEFITS / PARTNER BENEFITS ── */
.benefits { background: var(--bg); }
.benefits-section { background: var(--bg-soft); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; margin-top: 2.5rem;
}
.benefit-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.benefit-card:hover { border-color: var(--orange-border); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,137,42,0.08); }
.benefit-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.benefit-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }
.benefit-stats { display: flex; gap: 1.5rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.benefit-stat { text-align: center; }
.benefit-stat-value { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--orange); }
.benefit-stat-label { font-size: 0.68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── PROCESS / STEPS ── */
.process { background: var(--bg-soft); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.5rem; margin-top: 2.5rem;
}
.step-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  position: relative;
}
.step-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  color: var(--orange-light); position: absolute; top: 1rem; right: 1.25rem; line-height: 1;
}
.step-body { position: relative; z-index: 1; }
.step-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; margin-top: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  padding: 0 0 1.5rem 1.5rem; border-left: 2px solid var(--orange-border); position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: -5px; top: 4px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.timeline-year { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.timeline-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.timeline-desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.65; }

/* ── VALUES ── */
.values { background: var(--bg-soft); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
}
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ── FORMS ── */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--ink-mid); }
.form-group input, .form-group select, .form-group textarea {
  font-size: 0.9rem; padding: 0.7rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); transition: border-color var(--ease);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-consent { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.82rem; color: var(--ink-soft); margin: 1rem 0; }
.form-consent input { margin-top: 2px; flex-shrink: 0; }
.form-consent a { color: var(--orange-dark); }
.form-success { text-align: center; padding: 3rem; display: none; }
.form-success.visible { display: block; }
.success-icon, .success-circle {
  width: 60px; height: 60px; background: var(--orange-light); border: 2px solid var(--orange-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.25rem;
}
.form-success h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-soft); font-size: 0.9rem; }
.partner-form-wrap, .contact-form-wrap {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; max-width: 760px; margin: 0 auto;
}
.form-header { margin-bottom: 2rem; }
.form-card-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-dark); margin-bottom: 0.5rem; display: block; }
.form-card-header { margin-bottom: 1.5rem; }
.form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.5rem; }

/* ── CONTACT PAGE ── */
.contact-main {
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start;
}
.contact-info { }
.contact-info h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.office-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.office-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.office-flag { font-size: 1.5rem; margin-bottom: 0.5rem; }
.office-country { font-size: 0.82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.office-addr, .office-contact { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.65; }

/* ── FAQ ── */
.faq-section { background: var(--bg-soft); }
.faq-grid { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; margin: 2rem auto 0; }
.faq-header { margin-bottom: 0.5rem; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { font-size: 0.95rem; font-weight: 600; color: var(--navy); padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75; padding: 0 1.5rem 1.25rem; }

/* ── CAREERS ── */
.cv-section { padding: 5rem 6%; box-sizing: border-box; overflow: visible; }
.cv-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.cv-left { min-width: 0; }
.cv-right { min-width: 0; width: 100%; box-sizing: border-box; }
.cv-desc { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.5rem; }
.cv-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.cv-perks li { display: flex; align-items: flex-start; gap: 0.85rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; list-style: none; }
.cv-perks li > div { display: flex; flex-direction: column; gap: 0.2rem; }
.cv-perks li strong { font-size: 0.9rem; font-weight: 600; color: var(--navy); display: block; }
.cv-perks li span { font-size: 0.82rem; color: var(--ink-soft); display: block; }
.cv-perk-icon { font-size: 1.25rem; flex-shrink: 0; }
.cv-form-wrap { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; width: 100%; box-sizing: border-box; }
.cv-form-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.cv-form-sub { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.cv-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cv-full, .form-group.cv-full { grid-column: 1 / -1; }
.cv-consent { display: flex; gap: 0.75rem; font-size: 0.82rem; color: var(--ink-soft); margin: 1rem 0; }
.cv-success { text-align: center; padding: 2rem; display: none; }
.cv-success-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ── FILE UPLOAD ── */
.file-upload { border: 2px dashed var(--border); border-radius: 8px; padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color var(--ease); }
.file-upload:hover { border-color: var(--orange); }
.file-upload-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.file-icon { font-size: 1.5rem; }
.file-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.file-hint { font-size: 0.75rem; color: var(--ink-faint); }

/* ── CHANNEL TABS (identify pages) ── */
.channels { }
.channel-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.channel-tab {
  font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--bg); color: var(--ink-soft); cursor: pointer;
  transition: all var(--ease); text-decoration: none;
}
.channel-tab:hover, .channel-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; }
.channel-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.channel-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.channel-name { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.channel-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ── INTEGRATIONS ── */
.integrations { background: var(--bg-soft); }
.int-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; }
.int-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: border-color var(--ease), transform var(--ease); }
.int-card:hover { border-color: var(--orange-border); transform: translateY(-2px); }
.int-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.int-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.int-type, .int-label { font-size: 0.68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.int-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange-dark); background: var(--orange-light); border: 1px solid var(--orange-border); padding: 0.15rem 0.5rem; border-radius: 4px; margin-top: 0.5rem; display: inline-block; }

/* ── CRM SECTION ── */
.crm-section { }
.crm-logos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.25rem; }
.crm-logo-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: border-color var(--ease), transform var(--ease); }
.crm-logo-card:hover { border-color: var(--orange-border); transform: translateY(-2px); }
.crm-img { max-height: 40px; max-width: 120px; object-fit: contain; margin-bottom: 0.75rem; filter: grayscale(20%); }
.crm-logo-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.crm-logo-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--orange-dark); background: var(--orange-light); border: 1px solid var(--orange-border); padding: 0.15rem 0.5rem; border-radius: 4px; }
.crm-logo-desc { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.6; margin-top: 0.5rem; }

/* ── SOLUTION VISUAL (chat/call mockups) ── */
.solution-section { }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.solution-content h2 { font-family: var(--font-head); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.solution-content p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.solution-bullets { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.solution-bullets li { font-size: 0.875rem; color: var(--ink-mid); padding-left: 1.5rem; position: relative; }
.solution-bullets li::before { content: ''; position: absolute; left: 0; top: 0.45em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.solution-visual { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.solution-visual-header { background: var(--navy); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.solution-visual-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); background: rgba(232,137,42,0.15); border: 1px solid rgba(232,137,42,0.25); padding: 0.2rem 0.5rem; border-radius: 4px; }
.solution-visual-body { padding: 1.25rem; }
.solution-visual-inner { }
.solution-visual-timer { font-size: 0.75rem; color: var(--ink-faint); }
.solution-tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.solution-tool { font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); background: var(--bg-mid); border: 1px solid var(--border); padding: 0.25rem 0.6rem; border-radius: 4px; }
.solution-agent-panel, .solution-customer-panel { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; margin-bottom: 0.75rem; }
.solution-panel-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.solution-panel-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #fff; font-weight: 600; }
.solution-panel-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.solution-panel-sub { font-size: 0.72rem; color: var(--ink-faint); }
.solution-panel-content { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; }
.solution-chat-bubble { background: var(--bg-soft); border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 0.82rem; color: var(--ink-mid); margin-bottom: 0.5rem; display: inline-block; max-width: 85%; }

/* ── ADVANCED FEATURES ── */
.advanced-section { background: var(--bg-soft); }
.advanced-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.advanced-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: border-color var(--ease), transform var(--ease); }
.advanced-card:hover { border-color: var(--orange-border); transform: translateY(-3px); }
.advanced-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.advanced-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.advanced-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ── DEMO PAGE ── */
.demo-hero { background: var(--navy); padding: 4rem 6%; }
.demo-hero-inner { display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: center; }
.demo-hero-left h1 { color: #fff; margin-bottom: 1rem; }
.demo-hero-desc { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75; }
.demo-left { }
.demo-body { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; padding: 4rem 6%; }
.demo-form-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.demo-promises { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.demo-promise { display: flex; gap: 0.75rem; align-items: flex-start; }
.demo-promise-icon { font-size: 1.2rem; flex-shrink: 0; }
.demo-proof { margin-top: 2.5rem; }
.demo-proof-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.dp-stat { }
.dp-stat-val { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.dp-stat-lbl { font-size: 0.72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.demo-proof-divider { width: 1px; background: var(--border); }
.demo-quotes, .demo-proof-quotes { }
.demo-quote { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.demo-who { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.expect-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.expect-step { display: flex; gap: 1rem; align-items: flex-start; }
.demo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── COMPLIANCE / TAGS ── */
.compliance { }
.comp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1rem; }
.comp-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.comp-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.comp-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.comp-desc { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.6; }
.tag-green { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.tag-blue { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
.tag-orange { background: var(--orange-light); color: var(--orange-dark); border: 1px solid var(--orange-border); }
.tag-custom, .tag-native { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.15rem 0.5rem; border-radius: 4px; }
.tag-upcoming { background: #fce4ec; color: #c62828; border: 1px solid #f48fb1; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 4px; }

/* ── MOCK UIs (visual demo elements) ── */
.chat-window { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; max-width: 380px; }
.chat-header { background: var(--navy); padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #fff; }
.chat-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.chat-status { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.chat-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.msg { font-size: 0.82rem; line-height: 1.5; padding: 0.6rem 0.9rem; border-radius: 8px; max-width: 80%; }
.msg.bot, .msg.agent { background: var(--bg-soft); border: 1px solid var(--border); color: var(--ink-mid); align-self: flex-start; }
.msg.user { background: var(--navy); color: rgba(255,255,255,0.85); align-self: flex-end; }
.typing { display: flex; gap: 4px; padding: 0.6rem 0.9rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; align-self: flex-start; }
.typing-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); display: inline-block; animation: blink 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,80%,100%{opacity:.2} 40%{opacity:1} }

/* ── IVR FLOW ── */
.ivr-flow { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }
.ivr-node { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1.25rem; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.ivr-arrow { color: var(--orange); font-size: 1rem; padding-left: 0.75rem; margin-bottom: 0.25rem; }

/* ── SCORE CARD (QM mockup) ── */
.score-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.score-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.score-agent { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.score-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--orange-dark); background: var(--orange-light); border: 1px solid var(--orange-border); padding: 0.2rem 0.6rem; border-radius: 4px; }
.score-rows, .score-bars { display: flex; flex-direction: column; gap: 0.75rem; }
.score-row { }
.score-label { font-size: 0.75rem; color: var(--ink-soft); margin-bottom: 0.3rem; display: flex; justify-content: space-between; }
.score-val { font-weight: 600; color: var(--navy); }
.score-track { height: 6px; background: var(--bg-mid); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); border-radius: 3px; }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: var(--orange-light); border: 1px solid var(--orange-border); border-radius: var(--radius); padding: 1.5rem 2rem; margin: 1.5rem 0; }
.highlight-box p { color: var(--ink-mid); font-size: 0.9rem; line-height: 1.75; }

/* ── INFO BLOCKS ── */
.info-block, .info-block-alt { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.info-block-alt { background: var(--navy); }
.info-block-alt h3 { color: #fff; }
.info-block-alt p { color: rgba(255,255,255,0.6); }
.info-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

/* ── POLICY ── */
.policy-section { max-width: 800px; margin: 0 auto; }
.policy-meta { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 2rem; }
.policy-section h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.policy-section p, .policy-section li { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }

/* ── CONTENT GRID ── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.content-text h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.content-text p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }

/* ── HOW IT WORKS SPLIT ── */
.how-section { }
.how-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.how-split-left { }
.how-grid { display: flex; flex-direction: column; gap: 1rem; }
.how-step { display: flex; gap: 1rem; align-items: flex-start; }
.how-steps { display: flex; flex-direction: column; gap: 1rem; }
.how-right { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.how-right-inner { }
.how-right-cta { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.how-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.how-check { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; color: var(--ink-mid); }
.how-check-icon { color: var(--orange); flex-shrink: 0; }
.how-demo-btn { margin-top: 1.5rem; }

/* ── STATUS INDICATORS ── */
.status-pip { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.status-live .status-pip, .badge-live { background: #4caf50; }
.status-hold .status-pip { background: var(--orange); }
.badge-high { background: #f44336; color: #fff; }
.badge-mid { background: var(--orange); color: #fff; }
.badge-done { background: #4caf50; color: #fff; }
.badge-queue { background: var(--ink-soft); color: #fff; }
.badge-high, .badge-mid, .badge-done, .badge-queue, .badge-live {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem; border-radius: 4px; display: inline-block;
}

/* ── QUEUE / CALL ROWS ── */
.queue-row, .call-row, .interaction-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem;
}
.queue-name, .call-name { font-weight: 600; color: var(--navy); }
.queue-count, .call-detail { color: var(--ink-soft); }
.queue-bar-wrap { height: 6px; background: var(--bg-mid); border-radius: 3px; width: 80px; overflow: hidden; }
.queue-bar-fill { height: 100%; background: var(--orange); border-radius: 3px; }
.call-status { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; }

/* ── DASHBOARD MOCK ── */
.dash-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 0.75rem; }
.dash-metrics { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.dash-metric { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem; flex: 1; min-width: 80px; }
.dash-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.dash-lbl { font-size: 0.65rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dash-dot.green { background: #4caf50; }
.dash-dot.orange { background: var(--orange); }
.dash-dot.red { background: #f44336; }
.dash-queue { }
.dash-queue-title { font-size: 0.75rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.dash-agents { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.dash-agent { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.agent-av { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; color: #fff; }
.agent-name { font-size: 0.65rem; color: var(--ink-faint); }
.agent-st { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; }
.agent-st.green { color: #4caf50; }
.agent-st.orange { color: var(--orange); }

/* ── MANAGE INTRO / PILLS ── */
.manage-intro { max-width: 680px; }
.manage-pill { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); background: var(--bg-mid); border: 1px solid var(--border); padding: 0.4rem 0.85rem; border-radius: 20px; margin: 0.25rem; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ── PROBLEM / SOLUTION ── */
.problem-section { background: var(--bg-soft); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.problem-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.problem-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 0.5rem; display: block; }
.problem-stat { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.problem-source { font-size: 0.72rem; color: var(--ink-faint); }

/* ── PARTNER / DEMO FORM MISC ── */
.become-partner { background: var(--bg-soft); }
.demo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.req { color: #e24b4a; }

/* ── SCREEN POP / FLOW CARDS ── */
.screen-pop-mock { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.flow-cards { display: flex; flex-direction: column; gap: 0.5rem; }
.flow-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.flow-card-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange-dark); }
.flow-card-text { font-size: 0.82rem; color: var(--ink-mid); }
.decision { background: var(--orange-light); border-color: var(--orange-border); }

/* ── SCRIPT NODES ── */
.script-nodes { display: flex; flex-direction: column; gap: 0.5rem; }
.script-node { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.82rem; color: var(--ink-mid); }
.script-branch { padding-left: 1.5rem; }
.script-branch-label { font-size: 0.68rem; color: var(--orange); font-weight: 700; text-transform: uppercase; margin-bottom: 0.25rem; display: block; }
.script-branch-item { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; padding: 0.5rem 0.75rem; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0.25rem; }
.script-arrow { color: var(--ink-faint); font-size: 0.9rem; padding: 0.15rem 0; }

/* ── WHO / EXPERT ── */
.who-list { display: flex; flex-direction: column; gap: 0.75rem; }
.who-item { display: flex; gap: 0.75rem; align-items: center; font-size: 0.875rem; color: var(--ink-mid); }
.who-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.expert-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.expert-label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.expert-chip { font-size: 0.68rem; background: var(--orange-light); color: var(--orange-dark); border: 1px solid var(--orange-border); padding: 0.15rem 0.5rem; border-radius: 4px; }

/* ── TEAMS MOCK ── */
.teams-mock { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.teams-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.teams-logo { width: 28px; height: 28px; }
.teams-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ── COLOURTAGS ── */
.green { color: #4caf50; }
.red { color: #f44336; }
.orange { color: var(--orange); }
.yellow { color: #f9a825; }
.accent { color: var(--orange-dark); }

/* ── COBROWSE MOCK ── */
.cobrowse-mockup { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cobrowse-mockup-header { background: var(--navy); padding: 0.6rem 1rem; display: flex; gap: 0.4rem; align-items: center; }
.cobrowse-dot { width: 10px; height: 10px; border-radius: 50%; }
.cobrowse-mockup-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; }
.cobrowse-screen { background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.07); padding: 1rem; min-height: 140px; position: relative; }
.cobrowse-screen-content { }
.cobrowse-screen-label { font-size: 0.62rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 4px; }
.cobrowse-cursor { width: 16px; height: 16px; position: absolute; pointer-events: none; }
.cobrowse-annotation { border: 2px solid var(--orange); border-radius: 4px; position: absolute; pointer-events: none; }
.cobrowse-line { height: 5px; background: rgba(255,255,255,0.12); border-radius: 3px; margin: 0; }

/* ── MOCK BARS ── */
.mock-bar { height: 8px; background: var(--bg-mid); border-radius: 4px; margin: 0.4rem 0; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.mock-title-label { font-size: 0.72rem; font-weight: 700; color: var(--navy); }

/* ── VISUAL UI ── */
.visual-ui { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.visual-topbar { background: var(--navy); padding: 0.6rem 1rem; }
.visual-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ── BOT FLOW ── */
.bot-flow { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem; background: var(--bg-soft); border-radius: var(--radius); }
.bot-msg { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 0.82rem; color: var(--ink-mid); }
.handoff { background: var(--navy); color: rgba(255,255,255,0.8); font-size: 0.78rem; padding: 0.5rem 0.9rem; border-radius: 6px; text-align: center; }

/* ── ACCENT / MISC ── */
.vdot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin: 0 4px; vertical-align: middle; }
.highlight { background: var(--orange-light); }
.start { background: #e8f5e9; border-color: #a5d6a7; }
.short { max-width: 360px; }
.medium { max-width: 560px; }
.long { max-width: 800px; }
.reverse { }
.full { width: 100%; }
.centered { text-align: center; }
.section-header.reverse { direction: rtl; }
.section-header.reverse > * { direction: ltr; }
.active { font-weight: 600; color: var(--navy) !important; }
.label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); }
.option { display: flex; align-items: center; gap: 0.5rem; }
.action { cursor: pointer; }
.badge-live { color: #fff; }
.user { }

/* ── RESPONSIVE: Inner pages ── */
@media (max-width: 960px) {
  section { padding: 3.5rem 5%; }
  .split, .solution-grid, .content-grid, .how-split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse { direction: ltr; }
  .contact-main, .cv-inner, .demo-body, .demo-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid, .cv-form-grid, .demo-form-grid { grid-template-columns: 1fr; }
  .page-hero.has-hero-img .hero-inner { max-width: 100%; }
  .hero-right { display: none; }
  .stats-band { grid-template-columns: repeat(2,1fr); padding: 3rem 5%; }
  .tech-partner-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .page-hero { padding: 3.5rem 5% 3rem; }
  .logo-grid, .benefits-grid, .feature-grid, .features-grid { grid-template-columns: 1fr; }
  .tech-partner-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .channel-tabs { gap: 0.35rem; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════════════════
   COMPREHENSIVE LAYOUT FIX — v9
   Fixes: max-width containers, edge-to-edge layouts,
   stats stacking, contact layout, all grid sections
══════════════════════════════════════════════════════ */

/* ── Global max-width container ── */
.split,
.feature-grid,
.features-grid,
.contact-main,
.stats-grid,
.use-grid,
.steps-grid,
.section-header,
.cta-band .cta-inner,
.tech-grid,
.tech-partner-grid,
.logo-grid,
.how-split,
.solution-grid,
.content-grid,
.integrations-row,
.flow-cards,
.partner-cols,
.value-grid,
.benefits-grid,
.process-grid,
.certifications-grid,
.team-grid,
.channel-cards,
.role-tabs,
.role-panels {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Section inner wrapper — prevents edge bleed ── */
section > .split,
section > .feature-grid,
section > .features-grid,
section > .section-header,
section > .use-grid,
section > .steps-grid,
section > .how-split,
section > .content-grid,
section > .logo-grid,
section > .value-grid,
section > .benefits-grid,
section > .flow-cards,
section > .channel-cards {
  padding-left: 0;
  padding-right: 0;
}

/* ── Stats band: force 4-column horizontal ── */
.stats-band {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  padding: 3.5rem 6% !important;
}
.stats-band .stats-grid {
  display: contents !important; /* flatten nested grid */
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num .accent { color: var(--orange); }
.stat-desc, .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* ── contact-main: proper 2-col with padding ── */
.contact-main {
  display: grid !important;
  grid-template-columns: 1fr 420px !important;
  gap: 4rem;
  align-items: start;
  padding: 5rem 6%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── feature-grid: consistent 3-col ── */
.feature-grid,
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Split layout: constrain width ── */
.split {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem;
  align-items: center;
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Integration / logo grid ── */
.integrations-grid,
.logo-grid,
.tech-partner-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
  gap: 1.25rem;
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Use cases / channel cards ── */
.use-grid,
.channel-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 1.25rem;
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Steps grid ── */
.steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem;
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Value/benefits grid ── */
.value-grid,
.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 1.5rem;
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Industries / products grid ── */
.industries-grid,
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}

/* ── Section header max-width ── */
.section-header {
  padding: 0 6%;
  box-sizing: border-box;
}

/* ── Form grids: 2-col ── */
.form-grid,
.cv-form-grid,
.demo-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem;
}
.form-group.full,
.form-group[style*="grid-column"] {
  grid-column: 1 / -1;
}

/* ══ RESPONSIVE OVERRIDES ══ */

@media (max-width: 1024px) {
  .stats-band {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .feature-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .contact-main {
    grid-template-columns: 1fr 380px !important;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .split,
  .contact-main,
  .how-split,
  .solution-grid,
  .content-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0 5%;
  }
  .split.reverse { direction: ltr !important; }
  .feature-grid,
  .features-grid,
  .use-grid,
  .steps-grid,
  .value-grid,
  .benefits-grid,
  .channel-cards,
  .industries-grid,
  .products-grid {
    grid-template-columns: 1fr 1fr !important;
    padding: 0 5%;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    padding: 2.5rem 5% !important;
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .form-grid,
  .cv-form-grid,
  .demo-form-grid {
    grid-template-columns: 1fr !important;
  }
  .logo-grid,
  .tech-partner-grid,
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 0 5%;
  }
}

@media (max-width: 480px) {
  .feature-grid,
  .features-grid,
  .use-grid,
  .value-grid,
  .benefits-grid,
  .channel-cards,
  .industries-grid,
  .products-grid,
  .steps-grid {
    grid-template-columns: 1fr !important;
    padding: 0 5%;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .contact-main {
    padding: 3rem 5%;
  }
  .logo-grid,
  .tech-partner-grid,
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 5%;
  }
  .split {
    padding: 0 5%;
  }
  .section-header {
    padding: 0 5%;
  }
}


/* ══════════════════════════════════════════════════════
   FOOTER — FINAL CLEAN v12
   4 columns: brand | products | platform+industries | services+company
══════════════════════════════════════════════════════ */

footer {
  background: #07111f !important;
  padding: 4.5rem 0 0 !important;
}

.footer-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 6% 2.5rem !important;
  box-sizing: border-box !important;
}

/* 4-col grid */
.footer-grid {
  display: grid !important;
  grid-template-columns: 200px 170px 1fr 180px !important;
  gap: 3rem !important;
  align-items: start !important;
  margin-bottom: 3rem !important;
  padding-bottom: 2.5rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* Brand column */
.footer-brand {
  display: block !important;
}
.footer-brand .footer-desc {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.35) !important;
  line-height: 1.85 !important;
  margin-bottom: 1.25rem !important;
  max-width: 190px !important;
}
.footer-brand .footer-addr {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.2) !important;
  line-height: 1.9 !important;
}

/* Services + Company stacked in last col */
.footer-col-stack {
  display: block !important;
  width: 100% !important;
}
.footer-col-stack > .footer-col {
  display: block !important;
  width: 100% !important;
}
.footer-col-stack > .footer-col + .footer-col {
  margin-top: 2.5rem !important;
}

/* Every footer column */
.footer-col {
  display: block !important;
  min-width: 0 !important;
}
.footer-col h4 {
  display: block !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: rgba(255,255,255,0.28) !important;
  margin: 0 0 0.85rem 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  width: 100% !important;
}
.footer-col ul {
  display: block !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  width: 100% !important;
}
.footer-col ul li {
  display: block !important;
  margin-bottom: 0.5rem !important;
}
.footer-col ul li a {
  display: block !important;
  font-size: 0.83rem !important;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  transition: color 0.2s ease !important;
}
.footer-col ul li a:hover {
  color: var(--orange) !important;
}

/* Bottom bar */
.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.2) !important;
}
.footer-social {
  display: flex !important;
  gap: 1.25rem !important;
}
.footer-social a {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.3) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.footer-social a:hover { color: var(--orange) !important; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 2.5rem !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
  }
  .footer-brand .footer-desc { max-width: 100% !important; }
  .footer-col ul li a { white-space: normal !important; }
}
@media (max-width: 480px) {
  .footer-inner { padding: 0 5% 2rem !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.75rem 1.5rem !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
  .footer-social { flex-wrap: wrap !important; }
}





/* ── Careers responsive ── */
@media (max-width: 960px) {
  .cv-inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .cv-form-wrap { position: static !important; }
}
@media (max-width: 600px) {
  .cv-section { padding: 3.5rem 5% !important; }
  .cv-form-grid { grid-template-columns: 1fr !important; }
}

/* ══ NAV OVERFLOW FIX ══ */

/* Tighten nav on mid-size screens before hamburger kicks in */
@media (max-width: 1200px) {
  nav { padding: 0 4% !important; }
  .nav-links { gap: 1.25rem !important; }
  .nav-links > li > a { font-size: 0.82rem !important; }
  .nav-cta { padding: 0.5rem 1.1rem !important; font-size: 0.82rem !important; }
}

@media (max-width: 1024px) {
  nav { padding: 0 3% !important; }
  .nav-links { gap: 0.9rem !important; }
  .nav-links > li > a { font-size: 0.78rem !important; }
  .nav-cta { padding: 0.45rem 0.9rem !important; font-size: 0.78rem !important; }
}

/* Switch to hamburger earlier — at 1024px instead of 960px */
@media (max-width: 1024px) {
  .nav-hamburger { display: block !important; }
  .nav-links { display: none !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 70px !important; left: 0 !important; right: 0 !important;
    background: var(--navy-mid) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 1.5rem 6% !important;
    gap: 0.5rem !important;
    z-index: 300 !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3) !important;
  }
}


/* ══════════════════════════════════════════════════════
   COBROWSE PAGE — COMPLETE LAYOUT FIX
══════════════════════════════════════════════════════ */

/* Hero — 2-col layout */
.hero-content {
  max-width: 560px;
  z-index: 1;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-visual-card {
  width: 100%;
  max-width: 440px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

/* Cobrowse mockup */
.cobrowse-mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cobrowse-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.cobrowse-dot.red { background: #ff5f57; }
.cobrowse-dot.yellow { background: #febc2e; }
.cobrowse-dot.green { background: #28c840; }

.cobrowse-mockup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.cobrowse-screen {
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  min-height: 160px;
}
.cobrowse-screen:last-child { border-right: none; }
.cobrowse-screen-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.cobrowse-screen-label svg { width: 12px; height: 12px; }
.cobrowse-screen-content { display: flex; flex-direction: column; gap: 6px; }
.cobrowse-line {
  height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1);
}
.cobrowse-line.long { width: 85%; }
.cobrowse-line.medium { width: 65%; }
.cobrowse-line.short { width: 40%; }
.cobrowse-cursor {
  position: absolute; bottom: 1rem; right: 1.5rem;
  width: 12px; height: 12px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: rgba(232,137,42,0.2);
}
.cobrowse-annotation {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Problem section */
.problem-section {
  background: var(--bg-soft);
  padding: 5rem 6%;
}
.problem-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1200px !important;
  margin: 2.5rem auto 0 !important;
  padding: 0 !important;
}
.problem-card {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 2rem 1.5rem !important;
}
.problem-stat {
  font-family: var(--font-head) !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--orange) !important;
  line-height: 1 !important;
  margin-bottom: 0.75rem !important;
}
.problem-label {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink-soft) !important;
  line-height: 1.6 !important;
  margin-bottom: 0.75rem !important;
}
.problem-source {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--ink-faint) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

/* Solution section */
.solution-section {
  background: var(--bg);
  padding: 5rem 6%;
}
.solution-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}
.solution-visual-inner {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,32,68,0.15);
}
.solution-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.solution-visual-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--orange);
  background: rgba(232,137,42,0.12);
  border: 1px solid var(--orange-border);
  padding: 0.2rem 0.5rem; border-radius: 4px;
}
.solution-visual-timer {
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.solution-visual-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.solution-agent-panel,
.solution-customer-panel {
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.solution-customer-panel { border-right: none; }
.solution-panel-header {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.solution-panel-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.solution-panel-title {
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7);
}
.solution-panel-sub {
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
}
.solution-panel-content {
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem;
}
.solution-chat-bubble {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border-radius: 6px; padding: 0.5rem 0.65rem; line-height: 1.5;
}
.solution-chat-bubble.agent {
  background: rgba(232,137,42,0.1);
  color: rgba(255,255,255,0.75);
}
.solution-tools {
  display: flex; gap: 0.35rem;
}
.solution-tool {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; cursor: pointer;
  color: rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.solution-tool.active {
  background: var(--orange); color: #fff;
}

/* Advanced section */
.advanced-section {
  background: var(--bg-soft);
  padding: 5rem 6%;
}
.advanced-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1200px !important;
  margin: 2.5rem auto 0 !important;
  padding: 0 !important;
}

/* Benefits section */
.benefits-section {
  background: var(--bg);
  padding: 5rem 6%;
}
.benefits-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
  max-width: 1200px !important;
  margin: 2.5rem auto 0 !important;
  padding: 0 !important;
}
.benefit-card {
  background: var(--bg-soft) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 2rem !important;
}
.benefit-card-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.benefit-icon { font-size: 1.75rem; flex-shrink: 0; }
.benefit-card-header h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
}
.benefit-stats {
  display: flex; gap: 2rem; margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.benefit-stat-value {
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 700; color: var(--orange); line-height: 1;
}
.benefit-stat-label {
  font-size: 0.75rem; color: var(--ink-soft); margin-top: 0.25rem;
}

/* Features section */
.features-section {
  background: var(--bg-soft);
  padding: 5rem 6%;
}

/* Cobrowse responsive */
@media (max-width: 960px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .solution-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .advanced-grid { grid-template-columns: 1fr 1fr !important; }
  .benefits-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr 1fr !important; }
  .advanced-grid { grid-template-columns: 1fr !important; }
  .cobrowse-mockup-body { grid-template-columns: 1fr !important; }
  .solution-visual-body { grid-template-columns: 1fr !important; }
}


/* ── Cobrowse SVG icon fix ── */
.cobrowse-screen-label svg {
  width: 11px !important;
  height: 11px !important;
  flex-shrink: 0 !important;
  stroke: rgba(255,255,255,0.35) !important;
}
.cobrowse-mockup {
  background: var(--navy-mid) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.cobrowse-line {
  height: 5px !important;
  background: rgba(255,255,255,0.12) !important;
  border-radius: 3px !important;
  margin: 0 !important;
}
.cobrowse-line.long { width: 85% !important; }
.cobrowse-line.medium { width: 60% !important; }
.cobrowse-line.short { width: 35% !important; }
.cobrowse-screen-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}

/* ══ BLOG / INSIGHTS STYLES ══ */

/* Post body typography */
.post-body { font-size: 1rem; color: var(--ink); line-height: 1.85; }
.post-body h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.25; }
.post-body h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 2rem 0 0.75rem; }
.post-body h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body a { color: var(--orange); text-decoration: underline; }
.post-body a:hover { color: var(--orange-dark); }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: 0.4rem; line-height: 1.75; }
.post-body blockquote { border-left: 3px solid var(--orange); padding: 1rem 1.5rem; background: var(--orange-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 2rem 0; font-style: italic; color: var(--ink-soft); }
.post-body img { width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; display: block; }
.post-body code { background: var(--bg-mid); padding: 0.15em 0.4em; border-radius: 4px; font-size: 0.88em; color: var(--navy); }
.post-body pre { background: var(--navy); color: rgba(255,255,255,0.85); padding: 1.5rem; border-radius: var(--radius); overflow-x: auto; margin: 1.5rem 0; font-size: 0.88rem; line-height: 1.7; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.post-body th { background: var(--navy); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.post-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.post-body tr:hover td { background: var(--bg-soft); }

/* Blog listing responsive */
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}


/* ── Footer column spacing normalisation ── */
footer .footer-col h4 {
  margin-bottom: 0.85rem !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}
footer .footer-col ul,
footer .footer-col-stack .footer-col ul {
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
footer .footer-col ul li:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Hero visual — image column */
.hero > .hero-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 1 !important;
}
.hero > .hero-visual img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: 580px !important;
  border-radius: 8px !important;
}

/* ── Homepage hero image — transparent background ── */
.hero > .hero-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1 !important;
}
.hero > .hero-visual img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  mix-blend-mode: normal !important;
  border-radius: 0 !important;
}

/* ── Hero visual image on light bg ── */
.hero > .hero-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1 !important;
}
.hero > .hero-visual img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  mix-blend-mode: multiply !important;
}

/* ══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIX
   Breakpoints: 768px (tablet), 480px (phone)
══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── General ── */
  body { overflow-x: hidden; }
  section { padding: 3.5rem 5% !important; box-sizing: border-box !important; }
  h1 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem) !important; }

  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 4rem 5% 3rem !important;
    min-height: auto !important;
    text-align: center !important;
  }
  .hero-content { text-align: center !important; }
  .hero-actions {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }
  .hero > .hero-visual {
    margin-top: 2rem !important;
    max-height: 300px !important;
    overflow: hidden !important;
  }
  .hero > .hero-visual img {
    max-height: 300px !important;
    object-fit: contain !important;
  }

  /* ── Page hero ── */
  .page-hero { padding: 3.5rem 5% 2.5rem !important; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }

  /* ── Split layouts → single col ── */
  .split,
  .how-split,
  .solution-grid,
  .content-grid,
  .cv-inner,
  .contact-main,
  .demo-body {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ── Feature/card grids → 1 col ── */
  .feature-grid,
  .features-grid,
  .use-grid,
  .steps-grid,
  .value-grid,
  .benefits-grid,
  .channel-cards,
  .industries-grid,
  .products-grid,
  .advanced-grid,
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* ── Stats band → 2 col ── */
  .stats-band {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 2.5rem 5% !important;
  }

  /* ── Forms → single col ── */
  .cv-form-grid,
  .form-grid,
  .contact-form-grid {
    grid-template-columns: 1fr !important;
  }
  .cv-form-wrap,
  .contact-form-wrap { padding: 1.5rem !important; }

  /* ── Footer table → stack vertically ── */
  .footer-table,
  .footer-table tbody,
  .footer-table tr {
    display: block !important;
    width: 100% !important;
  }
  .footer-table td {
    display: block !important;
    width: 100% !important;
    padding-right: 0 !important;
    padding-bottom: 2rem !important;
    box-sizing: border-box !important;
  }
  .footer-inner { padding: 3rem 5% 1.5rem !important; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem !important;
    font-size: 0.75rem !important;
  }
  .footer-social { flex-wrap: wrap !important; gap: 1rem !important; }

  /* ── CTA band ── */
  .cta-banner, .cta-band {
    padding: 3rem 5% !important;
    text-align: center !important;
  }
  .cta-actions {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
  }

  /* ── Buttons full width on mobile ── */
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-outline-white {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* ── Tables ── */
  .post-body table { font-size: 0.8rem !important; }
  .post-body th, .post-body td { padding: 0.5rem 0.6rem !important; }

  /* ── Logo grid ── */
  .integrations-grid,
  .logo-grid,
  .tech-partner-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Section headers ── */
  .section-header, .section-title { text-align: center !important; }
}

@media (max-width: 480px) {

  section { padding: 3rem 4% !important; }

  /* ── Stats band → 2 col ── */
  .stats-band { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-num { font-size: 2rem !important; }

  /* ── Nav ── */
  nav { padding: 0 4% !important; }
  .nav-logo svg { width: 90px !important; }

  /* ── Hero ── */
  .hero { padding: 3rem 4% 2.5rem !important; }
  .hero > .hero-visual { max-height: 220px !important; }

  /* ── Buttons ── */
  .btn-primary, .btn-outline, .btn-outline-white, .btn-white {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.85rem !important;
  }

  /* ── Cards ── */
  .feature-card, .value-card, .use-card, .benefit-card {
    padding: 1.25rem !important;
  }

  /* ── Footer ── */
  .footer-table td { padding-bottom: 1.5rem !important; }
}


/* ── Partners: Why+Join 2-col → stack on mobile ── */
@media (max-width: 768px) {
  .partners-why-join-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

/* ── RESOURCES PAGE ── */
@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .resources-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── HOMEPAGE PLATFORM GRID ── */
@media (max-width: 900px) {
  .platform-home-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 520px) {
  .platform-home-grid { grid-template-columns: 1fr !important; }
}

/* ── PRODUCT HERO TWO-COLUMN ── */
.product-hero {
  background: var(--navy);
  padding: 5rem 6% 4rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.product-hero::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.product-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.025;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.product-hero-grid {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-hero-text { }
.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-mockup-bar span {
  font-size: 0.65rem; color: rgba(255,255,255,0.35);
  margin-left: 0.5rem; font-family: var(--font-body);
}
.hero-mockup-dot { width:10px; height:10px; border-radius:50%; }
.hero-mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.hero-mockup-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.05); border-radius: 7px;
  padding: 0.6rem 0.85rem; gap: 0.75rem;
}
.hero-mockup-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.hero-mockup-badge {
  font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.55rem;
  border-radius: 20px; white-space: nowrap;
}
.badge-green  { background: rgba(74,222,128,0.15); color: #4ade80; }
.badge-orange { background: rgba(232,137,42,0.2);  color: var(--orange); }
.badge-blue   { background: rgba(96,165,250,0.15); color: #60a5fa; }
.badge-red    { background: rgba(248,113,113,0.15); color: #f87171; }

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .product-hero { padding: 3.5rem 5% 3rem; }
}

/* ── PRODUCT HERO TWO-COLUMN ── */
.product-hero {
  background: var(--navy);
  padding: 5rem 6% 4rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.product-hero::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.product-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.025;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.product-hero-grid {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-hero-text { }
.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-mockup-bar span {
  font-size: 0.65rem; color: rgba(255,255,255,0.35);
  margin-left: 0.5rem; font-family: var(--font-body);
}
.hero-mockup-dot { width:10px; height:10px; border-radius:50%; }
.hero-mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.hero-mockup-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.05); border-radius: 7px;
  padding: 0.6rem 0.85rem; gap: 0.75rem;
}
.hero-mockup-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.hero-mockup-badge {
  font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.55rem;
  border-radius: 20px; white-space: nowrap;
}
.badge-green  { background: rgba(74,222,128,0.15); color: #4ade80; }
.badge-orange { background: rgba(232,137,42,0.2);  color: var(--orange); }
.badge-blue   { background: rgba(96,165,250,0.15); color: #60a5fa; }
.badge-red    { background: rgba(248,113,113,0.15); color: #f87171; }

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .product-hero { padding: 3.5rem 5% 3rem; }
}

/* ── PAGE HERO LIGHT VARIANT (used on pages followed by stats-band) ── */
.page-hero.page-hero-light {
  background: #f4f6f9;
  border-bottom: 1px solid #e2e8f0;
}
.page-hero.page-hero-light::before,
.page-hero.page-hero-light::after {
  display: none;
}
.page-hero.page-hero-light .breadcrumb {
  color: var(--ink-faint);
}
.page-hero.page-hero-light .breadcrumb a {
  color: var(--ink-soft);
}
.page-hero.page-hero-light .page-tag {
  color: var(--orange-dark);
  background: rgba(232,137,42,0.1);
  border-color: rgba(232,137,42,0.25);
}
.page-hero.page-hero-light h1 {
  color: var(--navy);
}
.page-hero.page-hero-light p {
  color: var(--ink-soft);
}
.page-hero.page-hero-light .btn-outline-white {
  border-color: var(--navy);
  color: var(--navy);
}
.page-hero.page-hero-light .btn-outline-white:hover {
  background: var(--navy);
  color: #fff;
}
