/* =============================================
   SEAMLESS AUTOMATION — MAIN STYLESHEET
   ============================================= */

/* --- FONTS — Geist (Vercel) for premium 2026 SaaS feel --- */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&display=swap');

/* --- VARIABLES --- */
:root {
  --blue:       #1498D5;
  --blue-light: #1AADE8;
  --blue-dark:  #0F83BA;
  --navy:       #0F1E2D;
  --navy-mid:   #1A2E42;
  --off-white:  #F7F9FC;
  --bg-tint:    #EAF5FC;
  --text-dark:  #1A2733;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --white:      #FFFFFF;
  --border:     #E2EBF0;

  --font:       'Geist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(15,30,45,0.10);
  --shadow-lg:  0 12px 48px rgba(15,30,45,0.16);

  --max-w:      1200px;
  --section-py: 100px;
}

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

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section--tint { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--blue-tint { background: var(--bg-tint); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section--navy .section-title { color: var(--white); }
.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.6;
}
.section--navy .section-sub { color: rgba(255,255,255,0.70); }
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,152,213,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--ghost {
  background: transparent;
  color: var(--blue);
  padding: 12px 0;
}
.btn--ghost:hover { opacity: 0.8; }
.btn--ghost svg { transition: transform 0.2s; }
.btn--ghost:hover svg { transform: translateX(4px); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-top: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
/* Default (scrolled state OR any inner page): white bg, dark text */
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding-top: 8px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--bg-tint);
}

/* Homepage over dark hero (not yet scrolled) — light text, transparent bg */
body.home .site-header:not(.scrolled) .nav-links a,
body.has-dark-hero .site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
body.home .site-header:not(.scrolled) .nav-links a:hover,
body.home .site-header:not(.scrolled) .nav-links a.active,
body.has-dark-hero .site-header:not(.scrolled) .nav-links a:hover,
body.has-dark-hero .site-header:not(.scrolled) .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.10); }
body.home .site-header:not(.scrolled) .nav-hamburger span,
body.has-dark-hero .site-header:not(.scrolled) .nav-hamburger span { background: var(--white); }
/* Logo swap on homepage hero (overrides default dark-text logo) */
body.home .site-header:not(.scrolled) .nav-logo .site-logo--for-light,
body.has-dark-hero .site-header:not(.scrolled) .nav-logo .site-logo--for-light { display: none; }
body.home .site-header:not(.scrolled) .nav-logo .site-logo--for-dark,
body.has-dark-hero .site-header:not(.scrolled) .nav-logo .site-logo--for-dark  { display: block; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.site-header.is-menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Logo swap based on header context:
   - Default (over dark hero): show site-logo--for-dark (white logo)
   - When scrolled (light bg): show site-logo--for-light (dark logo) */
.nav-logo .site-logo--for-light { display: none; }
.nav-logo .site-logo--for-dark  { display: block; }
.site-header.scrolled .nav-logo .site-logo--for-dark  { display: none; }
.site-header.scrolled .nav-logo .site-logo--for-light { display: block; }
/* Light-header pages (no dark hero: thank-you + legal/policy pages) — dark-text logo at the top */
body.has-light-header .site-header:not(.scrolled) .nav-logo .site-logo--for-light { display: block; }
body.has-light-header .site-header:not(.scrolled) .nav-logo .site-logo--for-dark  { display: none; }

/* Platform cards on service overview pages */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20,152,213,0.25);
}
.platform-card:hover::before { transform: scaleX(1); }
.platform-logo {
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.platform-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.platform-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.platform-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.platform-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.platform-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.platform-feature-dot {
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1E30 55%, #112840 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Particle canvas — sits behind all content */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(20,152,213,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,152,213,0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* ---- Hero centered layout ---- */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-head {
  max-width: 860px;
  margin-bottom: 0;
}

/* ---- Animated beam connector ---- */
.hero-connector {
  width: 2px;
  height: 64px;
  position: relative;
  margin: 2px auto;
  flex-shrink: 0;
}
.hero-connector::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom,
    rgba(20,152,213,0),
    rgba(20,152,213,0.55) 45%,
    rgba(20,152,213,0.55) 55%,
    rgba(20,152,213,0)
  );
}
.hero-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 18px;
  background: linear-gradient(to bottom,
    rgba(20,152,213,0),
    rgba(109,212,245,1),
    rgba(20,152,213,0)
  );
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(20,152,213,0.9);
  animation: beamPulse 2.2s ease-in-out infinite;
}
@keyframes beamPulse {
  0%   { top: -18px; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,152,213,0.15);
  border: 1px solid rgba(20,152,213,0.30);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6DD4F5;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}
.hero-title {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--blue); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats / proof-points row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  max-width: 600px;
}
.hero-stats--proof { max-width: 820px; }
.hero-stat {
  padding: 0 28px;
  text-align: center;
  flex: 1;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num--text {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.01em;
}
.hero-stat-num-sm {
  font-size: 0.5em;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-left: 2px;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ============================================================
   WORKFLOW PANEL — open / frameless
   ============================================================ */
.workflow-panel {
  width: 100%;
  max-width: 980px;
  padding: 8px 0 0;
  position: relative;
}

/* Graph container */
.wf-graph {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.wf-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.wf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Individual workflow nodes */
.wf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 130px;
  cursor: default;
  transition: transform 0.3s ease;
}
.wf-node:hover { transform: translateY(-3px); }
.wf-node-circle {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(10,20,40,0.70);
  border: 1px solid rgba(20,152,213,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(20,152,213,0.85);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}
.wf-node:hover .wf-node-circle {
  background: rgba(20,152,213,0.16);
  border-color: rgba(20,152,213,0.45);
  box-shadow: 0 0 24px rgba(20,152,213,0.20);
  color: #1498D5;
}
/* Active node (AI Call) */
.wf-node--active .wf-node-circle {
  background: rgba(20,152,213,0.16);
  border-color: rgba(20,152,213,0.50);
  color: #1498D5;
  box-shadow: 0 0 28px rgba(20,152,213,0.22), 0 0 0 4px rgba(20,152,213,0.06);
}
/* Deal Won node */
.wf-node--won .wf-node-circle {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.40);
  color: #34D399;
  box-shadow: 0 0 24px rgba(16,185,129,0.15);
}
/* Glow burst when pulse arrives */
.wf-node.wf-pulsing .wf-node-circle {
  box-shadow: 0 0 40px rgba(20,152,213,0.40), 0 0 0 6px rgba(20,152,213,0.08);
  border-color: rgba(20,152,213,0.70);
}
.wf-node--won.wf-pulsing .wf-node-circle {
  box-shadow: 0 0 40px rgba(16,185,129,0.40), 0 0 0 6px rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.80);
}
.wf-node-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-align: center;
  line-height: 1.2;
}
.wf-node-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Typing indicator on AI Call */
.wf-typing {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}
.wf-typing span {
  width: 3px; height: 3px;
  background: rgba(20,152,213,0.6);
  border-radius: 50%;
  animation: typingBounce 1.2s ease infinite;
}
.wf-typing span:nth-child(2) { animation-delay: 0.2s; }
.wf-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1; }
}
.agent-action {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}
.agent-action:last-child { border-bottom: none; }
.agent-action-icon { color: var(--blue); font-size: 10px; }

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-strip {
  padding: 80px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20,152,213,0.25);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--bg-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* =============================================
   ANTI-AGENCY DIFFERENCE SECTION
   ============================================= */
.diff-section {
  background: linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 100%);
}
.diff-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.diff-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.diff-col--them {
  background: #FAFBFC;
  border-color: #E8EBF0;
}
.diff-col--us {
  background: linear-gradient(180deg, #FFFFFF 0%, #EAF5FC 100%);
  border-color: rgba(20,152,213,0.30);
  box-shadow: 0 8px 32px rgba(20,152,213,0.10);
}
.diff-col-header {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.diff-col--us .diff-col-header {
  color: var(--blue);
  border-bottom-color: rgba(20,152,213,0.25);
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-mid);
}
.diff-col--them .diff-list li {
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.20);
}
.diff-col--us .diff-list li { color: var(--text-dark); }
.diff-x {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.06);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.diff-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  margin-top: 2px;
}
.diff-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.btn--ghost {
  background: var(--bg-tint);
  color: var(--blue);
  border: 1.5px solid transparent;
  padding: 14px 28px;
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(20,152,213,0.18);
}

/* =============================================
   AI CAPABILITIES SECTION
   ============================================= */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(20,152,213,0.10) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(20,152,213,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.ai-section .container { position: relative; z-index: 1; }
.ai-section .section-title { color: var(--white); }
.ai-section .section-sub { color: rgba(255,255,255,0.65); }
.ai-section .eyebrow { color: #6DD4F5; }
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ai-grid { grid-template-columns: 1fr; }
}
.ai-section .ai-cap-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.ai-section .ai-cap-card:hover {
  background: rgba(20,152,213,0.10);
  border-color: rgba(20,152,213,0.50);
  transform: translateY(-3px);
}
.ai-section .ai-cap-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(20,152,213,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6DD4F5;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.ai-section .ai-cap-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}
.ai-section .ai-cap-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}
.ai-section-note {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}
.ai-section-note a {
  color: #6DD4F5;
  font-weight: 600;
  border-bottom: 1px solid rgba(109,212,245,0.4);
}
.ai-section-note a:hover { color: var(--white); }

/* =============================================
   CRM / WORKFLOW PLATFORM CARDS (one-pagers)
   ============================================= */
.crm-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.crm-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.25s;
}
.crm-pillar:hover { border-color: rgba(20,152,213,0.30); box-shadow: var(--shadow); transform: translateY(-2px); }
.crm-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.crm-pillar h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.crm-pillar p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0; }

.crm-platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.crm-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: center;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.crm-platform-card:hover {
  border-color: rgba(20,152,213,0.45);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.crm-platform-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.crm-platform-logo { max-height: 34px; max-width: 100%; width: auto; object-fit: contain; }
.crm-platform-name { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.crm-platform-tag {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-mid);
}

@media (max-width: 980px) {
  .crm-platforms { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .crm-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .crm-platforms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .crm-pillars { grid-template-columns: 1fr; }
}

/* =============================================
   WORKFLOW AUTOMATION — tools, proof bar + engagement tiers
   ============================================= */

/* Tools We Build With — Make / Zapier / n8n (dedicated, decoupled from .crm-platform*) */
.wf-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}
.wf-tool-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.wf-tool-card:hover {
  border-color: rgba(20,152,213,0.45);
  box-shadow: 0 18px 40px rgba(15,30,45,0.12);
  transform: translateY(-4px);
}
.wf-tool-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-bottom: 16px;
}
.wf-tool-logo { max-height: 36px; max-width: 170px; width: auto; object-fit: contain; }
.wf-tool-name { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.wf-tool-tag {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--blue);
  margin-bottom: 18px;
}
.wf-tool-desc {
  display: block;
  flex-grow: 1;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.wf-tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.wf-tool-cta svg { transition: transform 0.2s ease; }
.wf-tool-card:hover .wf-tool-cta svg { transform: translateX(4px); }

@media (max-width: 820px) {
  .wf-tools { grid-template-columns: 1fr; max-width: 460px; }
}

.wa-proof-section { padding: 40px 0; background: var(--navy); }
.wa-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.wa-proof-stat { text-align: center; }
.wa-proof-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}
.wa-proof-num-sm { font-size: 19px; font-weight: 700; }
.wa-proof-plus { color: var(--blue-light); }
.wa-proof-label {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.66);
}
.wa-proof-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.wa-proof-badges-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.wa-proof-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: rgba(20,152,213,0.16);
  border: 1px solid rgba(20,152,213,0.32);
  padding: 5px 13px;
  border-radius: 100px;
}

/* Engagement tiers */
.wa-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
}
.wa-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.wa-tier:hover {
  border-color: rgba(20,152,213,0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.wa-tier--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  position: relative;
}
.wa-tier--featured::before {
  content: "Most common";
  position: absolute;
  top: -11px;
  left: 30px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 100px;
}
.wa-tier-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.wa-tier-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15,30,45,0.16);
  line-height: 1;
}
.wa-tier-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--blue);
  background: rgba(20,152,213,0.10);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.wa-tier-title { font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin: 0 0 10px; }
.wa-tier-desc { font-size: 14px; line-height: 1.65; color: var(--text-mid); margin: 0 0 20px; }
.wa-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wa-tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.wa-tier-list svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }
.wa-tier-cta { width: 100%; justify-content: center; margin-top: 22px; }
.wa-tier-list:has(+ .wa-tier-cta) { margin-bottom: 0; }
/* Outline tier buttons sit on white cards, so recolour from the dark-hero default
   (white-on-white = invisible) to a visible blue outline, like the pricing cards. */
.wa-tier-cta.btn--outline { color: var(--blue); border-color: rgba(20,152,213,0.45); }
.wa-tier-cta.btn--outline:hover { color: var(--blue); border-color: var(--blue); background: rgba(20,152,213,0.06); }
.wa-tier-quote {
  margin: 0;
  padding: 16px 18px;
  background: var(--off-white);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
}
.wa-tier-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
  color: #F5A623;
}
.wa-tier-stars svg { fill: currentColor; }
.wa-tier-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
}
.wa-tiers-foot {
  text-align: center;
  margin: 32px auto 0;
  font-size: 15px;
  color: var(--text-mid);
}
.wa-tiers-foot a { color: var(--blue); font-weight: 600; }

/* Hero friction-removal row */
.wf-hero-friction {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
}
.wf-hero-friction li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.wf-hero-friction li svg { width: 14px; height: 14px; color: #6DD4F5; flex-shrink: 0; }

/* Straight-talk pricing band */
.wa-rate {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.wa-rate-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6DD4F5;
  margin-bottom: 10px;
}
.wa-rate-num {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
}
.wa-rate-unit {
  font-size: 0.36em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}
.wa-rate-sub {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
}
.wa-rate-sub strong { color: var(--white); font-weight: 700; }
.wa-rate-pledges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wa-rate-pledges li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wa-rate-ic {
  flex-shrink: 0;
  color: #6DD4F5;
  line-height: 0;
  margin-top: 1px;
}
.wa-rate-ic svg { width: 20px; height: 20px; }
.wa-rate-pledges li div {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}
.wa-rate-pledges li strong { color: var(--white); font-weight: 700; }
.wa-rate-foot { text-align: center; margin: 40px 0 0; }
.wa-rate-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6DD4F5;
  font-weight: 600;
  font-size: 15px;
}
.wa-rate-foot a svg { transition: transform 0.2s ease; }
.wa-rate-foot a:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .wa-proof { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .wa-tiers { grid-template-columns: 1fr; max-width: 480px; }
  .wa-tier--featured::before { left: 50%; transform: translateX(-50%); }
  .wa-rate { grid-template-columns: 1fr; gap: 36px; max-width: 520px; }
  .wa-rate-anchor { text-align: center; }
  .wa-rate-sub { margin-left: auto; margin-right: auto; max-width: 460px; }
}

/* =============================================
   ROI / TIME-SAVED CALCULATOR (workflow page)
   ============================================= */
.wa-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.wa-calc-inputs { padding: 44px; }
.wa-calc-field { margin-bottom: 30px; }
.wa-calc-field:last-of-type { margin-bottom: 0; }
.wa-calc-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.wa-calc-field-head label { font-size: 15px; font-weight: 600; color: var(--navy); }
.wa-calc-val { font-size: 15px; font-weight: 700; color: var(--blue); }
.wa-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) var(--fill, 0%), var(--bg-tint) var(--fill, 0%), var(--bg-tint) 100%);
  outline: none;
  cursor: pointer;
}
.wa-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 6px 16px rgba(20, 152, 213, 0.45);
  cursor: grab;
  transition: transform 0.15s ease;
}
.wa-calc-slider::-webkit-slider-thumb:active { transform: scale(1.18); cursor: grabbing; }
.wa-calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 6px 16px rgba(20, 152, 213, 0.45);
  cursor: grab;
}
.wa-calc-assumption {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 32px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
}
.wa-calc-assumption svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

.wa-calc-results {
  padding: 44px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.wa-calc-result-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.wa-calc-result--hero { margin-bottom: 26px; }
.wa-calc-result-num {
  font-size: clamp(42px, 6vw, 58px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.wa-calc-result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.wa-calc-result-num--sm { font-size: 30px; }
.wa-calc-payback {
  margin: 22px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  min-height: 22px;
}
.wa-calc-payback strong { color: #6DD4F5; font-weight: 700; }
.wa-calc-cta { margin-top: 26px; width: 100%; justify-content: center; }
.wa-calc-foot {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (max-width: 820px) {
  .wa-calc { grid-template-columns: 1fr; max-width: 480px; }
  .wa-calc-inputs, .wa-calc-results { padding: 32px; }
}

/* =============================================
   PRICING + WORK-PROCESS PAGE
   ============================================= */
.wp-steps {
  display: flex;
  flex-direction: column;
  gap: 96px;
  max-width: 1100px;
  margin: 0 auto;
}
.wp-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wp-step--reverse .wp-step-media { order: 2; }
.wp-step--reverse .wp-step-body  { order: 1; }
.wp-step-media {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #EAF5FC 0%, #F7F9FC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-step-media img {
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}
.wp-step-body { padding: 12px 0; }
.wp-step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 12px;
}
.wp-step-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 4px 12px;
  background: rgba(20,152,213,0.08);
  border-radius: 100px;
  margin-bottom: 16px;
}
.wp-step-body h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.wp-step-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .wp-steps { gap: 64px; }
  .wp-step { grid-template-columns: 1fr; gap: 24px; }
  .wp-step--reverse .wp-step-media { order: 0; }
  .wp-step--reverse .wp-step-body  { order: 1; }
  .wp-step-body h3 { font-size: 26px; }
  .wp-step-media img { max-height: 240px; }
}

/* =============================================
   HOW WE PRICE PAGE
   ============================================= */
.pricing-headline {
  text-align: center;
  margin-bottom: 72px;
}
.pricing-rate {
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing-rate span {
  font-size: 0.32em;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 4px;
}
.pricing-rate-sub {
  font-size: 17px;
  color: var(--text-mid);
  margin-top: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.pricing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.pricing-step:hover {
  border-color: rgba(20,152,213,0.30);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pricing-step-num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(20,152,213,0.35);
}
.pricing-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 10px;
}
.pricing-step p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.pricing-truths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pricing-truth {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 28px;
}
.pricing-truth h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pricing-truth p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .pricing-truths { grid-template-columns: 1fr; }
}

/* ---------------------------------------------
   PRICING — productized "from €X" package ladder
--------------------------------------------- */
.pricing-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.pkg-card:hover {
  border-color: rgba(20,152,213,0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.pkg-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  position: relative;
}
.pkg-flag {
  position: absolute;
  top: -11px;
  left: 30px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 100px;
}
.pkg-card-head {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.pkg-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.pkg-scope {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin: 2px 0 0;
}
.pkg-tagline {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  margin: 12px 0 0;
}
.pkg-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0 0 20px;
}
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.pkg-list svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.pkg-cta { width: 100%; justify-content: center; }
/* The pricing cards sit on a light background, but the base .btn--outline is
   built for dark sections (white text + faint white border) — invisible here.
   Restyle the non-featured CTAs as a blue outline so all three buttons show,
   while the featured card keeps its stronger solid-blue .btn--primary. */
.pkg-cta.btn--outline {
  color: var(--blue);
  border-color: rgba(20, 152, 213, 0.45);
}
.pkg-cta.btn--outline:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(20, 152, 213, 0.06);
}
.pkg-foot {
  text-align: center;
  max-width: 640px;
  margin: 30px auto 0;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.pkg-foot a { color: var(--blue); font-weight: 600; white-space: nowrap; }
@media (max-width: 860px) {
  .pricing-packages { grid-template-columns: 1fr; max-width: 460px; }
  .pkg-flag { left: 50%; transform: translateX(-50%); }
}

/* =============================================
   STATS / TRUST BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 56px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* =============================================
   ABOUT / WHO WE ARE
   ============================================= */
.about-section {
  padding: var(--section-py) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-list { margin-top: 0; }
.about-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.about-item:last-child { border-bottom: none; }
.about-item-icon {
  width: 40px; height: 40px;
  background: var(--bg-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-item p { font-size: 14px; color: var(--text-mid); line-height: 1.55; }

/* AI capabilities visual */
.ai-visual {
  position: relative;
}
.ai-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ai-cap-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
.ai-cap-card:hover {
  background: var(--white);
  border-color: rgba(20,152,213,0.3);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}
.ai-cap-icon {
  width: 44px; height: 44px;
  background: var(--bg-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  font-size: 20px;
}
.ai-cap-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ai-cap-card p { font-size: 13px; color: var(--text-mid); }

/* Who We Are — single column (right-side cards removed) */
.about-grid--single {
  grid-template-columns: 1fr;
  max-width: 760px;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section { padding: var(--section-py) 0; background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--blue), var(--border));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-mid);
  margin-bottom: 20px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.process-step.active .process-num,
.process-step:hover .process-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(20,152,213,0.35);
}
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: var(--section-py) 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonials-grid--full {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .testimonials-grid--full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid--full { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(20,152,213,0.20);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 72px;
  font-weight: 800;
  color: var(--bg-tint);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F59E0B;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar--img {
  display: block;
  object-fit: cover;
  background: var(--bg-tint);
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--text-light); }
.trustpilot-wrap {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* =============================================
   PARTNERS LOGO BAR
   ============================================= */
.partners-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 48px;
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
}
.partner-link:hover {
  border-color: rgba(20,152,213,0.30);
  background: var(--bg-tint);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20,152,213,0.10);
}
.partner-logo {
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.partner-link:hover .partner-logo { opacity: 1; }
/* For white-on-transparent logos (PandaDoc, Mailchimp, Outfunnel, Aircall):
   invert them to dark so they're visible on the white card background.
   Keeps section visually consistent — all cards have the same white look. */
.partner-link--invert .partner-logo {
  filter: invert(1) brightness(0.55) contrast(1.1);
  opacity: 0.80;
}
.partner-link--invert:hover .partner-logo {
  filter: invert(1) brightness(0.35) contrast(1.15);
  opacity: 1;
}
.partner-logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #2d2d2d;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.partner-link:hover .partner-logo-text { opacity: 1; }
@media (max-width: 768px) {
  .partners-logos { gap: 16px; }
  .partner-link { height: 64px; padding: 8px 14px; }
  .partner-logo { height: 28px; }
  .partner-logo-text { font-size: 22px; }
}

/* =============================================
   PARTNER MARQUEE — continuous logo river (homepage trust strip)
   Pure CSS: scrolls forever, pauses on hover, hovered logo "shines"
   out of the rest. Each logo is a clickable affiliate /slug link.
   ============================================= */
.sa-marquee-section {
  padding: 44px 0 16px;
  background: var(--white);
}
.sa-marquee-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 30px;
}
.sa-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.sa-marquee-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 64px;
  padding-right: 64px;
  margin: 0;
  list-style: none;
  will-change: transform;
  animation: sa-marquee-scroll 78s linear infinite;
}
/* Hovering anywhere on the strip freezes the whole river */
.sa-marquee:hover .sa-marquee-track,
.sa-marquee:focus-within .sa-marquee-track {
  animation-play-state: paused;
}
.sa-marquee-cell { display: flex; align-items: center; flex: 0 0 auto; }
.sa-marquee-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 6px;
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
/* Soft brand glow that blooms behind the logo you point at */
.sa-marquee-item::before {
  content: "";
  position: absolute;
  inset: -20px -12px;
  border-radius: 20px;
  background: radial-gradient(58% 70% at 50% 50%, rgba(20,152,213,0.20), transparent 72%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.sa-marquee-logo {
  max-height: 30px;
  max-width: 175px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.sa-marquee-logo--text {
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-mid);
  white-space: nowrap;
  filter: none;
  opacity: 0.6;
}
/* While the strip is hovered, dim the field so one logo can shine through */
.sa-marquee:hover .sa-marquee-logo { opacity: 0.26; }
.sa-marquee:hover .sa-marquee-logo--text { opacity: 0.26; color: var(--text-light); }
/* The hovered logo lifts, regains full colour, and glows */
.sa-marquee-item:hover { transform: scale(1.16); z-index: 3; }
.sa-marquee-item:hover::before { opacity: 1; }
.sa-marquee:hover .sa-marquee-item:hover .sa-marquee-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}
.sa-marquee:hover .sa-marquee-item:hover .sa-marquee-logo--text {
  opacity: 1;
  color: var(--blue);
}
.sa-marquee-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
@keyframes sa-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (max-width: 768px) {
  .sa-marquee-track { gap: 44px; padding-right: 44px; animation-duration: 58s; }
  .sa-marquee-logo { max-height: 24px; max-width: 140px; height: auto; }
  .sa-marquee-logo--text { font-size: 19px; height: 24px; }
  .sa-marquee-item { height: 48px; }
}
/* Accessibility: no motion → static, centred, wrapped logo cloud */
@media (prefers-reduced-motion: reduce) {
  .sa-marquee { -webkit-mask-image: none; mask-image: none; }
  .sa-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 32px 44px;
  }
  .sa-marquee-track[aria-hidden="true"] { display: none; }
  .sa-marquee-logo, .sa-marquee-logo--text { opacity: 0.72; }
}

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: var(--section-py) 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: background 0.2s;
  gap: 16px;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { color: var(--blue); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-question.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  background: var(--white);
}
.faq-answer.open { display: block; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1A3D66 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,152,213,0.2) 0%, transparent 70%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.65); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.contact-section { padding: var(--section-py) 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); font-size: 17px; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--bg-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail-val { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrapper iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #163352 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,152,213,0.15) 0%, transparent 70%);
}
.page-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow { color: #6DD4F5; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* =============================================
   SERVICE PAGE — NUMBERED STEPS
   ============================================= */
.steps-section { padding: var(--section-py) 0; }
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 24px;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: rgba(20,152,213,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.step-num-badge {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.step-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* =============================================
   TABS
   ============================================= */
.tabs-section { padding: var(--section-py) 0; background: var(--off-white); }
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(20,152,213,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tab-content-text h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.tab-content-text p { font-size: 16px; color: var(--text-mid); line-height: 1.65; margin-bottom: 24px; }
.tab-feature-list { display: flex; flex-direction: column; gap: 12px; }
.tab-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.tab-feature-check {
  width: 20px; height: 20px;
  background: var(--bg-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  font-size: 11px;
}
.tab-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   DIFFERENTIATORS
   ============================================= */
.diff-section { padding: var(--section-py) 0; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.diff-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.diff-card:hover {
  background: var(--white);
  border-color: rgba(20,152,213,0.25);
  box-shadow: var(--shadow);
}
.diff-icon {
  width: 52px; height: 52px;
  background: var(--bg-tint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.diff-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20,152,213,0.2);
}
.blog-card-thumb {
  height: 200px;
  background: var(--bg-tint);
  overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-link { display: block; color: inherit; }
.blog-card-link:hover .blog-card-title { color: var(--blue); }
.blog-card-thumb-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tint), #DDF2FB);
  color: var(--blue);
  opacity: 0.55;
}
.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card-read-more { gap: 8px; }
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  margin: 0 4px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.blog-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: var(--text-light);
}
.blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-empty p { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 20px; width: auto; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.footer-col a:hover { color: var(--white); }
.footer-contact a {
  gap: 10px;
}
.footer-contact-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(20,152,213,0.12);
  color: #6DD4F5;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.footer-contact a:hover .footer-contact-icon {
  background: var(--blue);
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
}
.footer-partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.footer-partners-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.45;
}
.footer-partners a {
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.footer-partners a:hover { opacity: 1; }
.footer-partners img {
  height: auto;
  max-height: 17px; /* default optical height; overridden per-logo below */
  width: auto;
  max-width: 130px;
  object-fit: contain;
  /* normalise multi-colour brand logos to clean white on the dark footer */
  filter: brightness(0) invert(1);
}
/* Per-logo optical balancing — these wordmarks have very different aspect
   ratios (Pipedrive ~4.4:1, Zapier ~2.1:1, Make ~4.7:1, CloudTalk ~8.5:1) and
   padding, so a single fixed height makes some read large and others tiny.
   Each is tuned individually so the row looks visually even. */
.footer-partners img[alt="Pipedrive"] { max-height: 16px; }
.footer-partners img[alt="Zapier"]    { max-height: 20px; transform: translateY(-2px); } /* compact lockup — bump up; raise so letters (not the floating asterisk) sit on the row centerline */
.footer-partners img[alt="Make"]      { max-height: 17px; transform: translateY(-1px); } /* ascender pushes the wordmark low — nudge up */
.footer-partners img[alt="CloudTalk"] { max-height: 14px; max-width: 120px; } /* very wide wordmark — trim down */

/* =============================================
   WORK PROCESS PAGE
   ============================================= */
.timeline-section { padding: var(--section-py) 0; }
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 35px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(20,152,213,0.1));
}
.timeline-item {
  display: flex;
  gap: 40px;
  padding-bottom: 56px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-num {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(20,152,213,0.35);
  position: relative;
  z-index: 1;
}
.timeline-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  flex: 1;
  transition: all 0.3s;
}
.timeline-body:hover { box-shadow: var(--shadow); border-color: rgba(20,152,213,0.25); }
.timeline-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.timeline-body p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 360px; }
  .dash-card--main { width: 280px; }
  .dash-card--pipeline { width: 240px; }
  .dash-card--agent { width: 200px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .tab-content-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 900px) {
  /* MOBILE NAV — links slide down as drawer when hamburger toggled */
  .nav-hamburger { display: flex; }
  .nav-cta .btn--primary { display: none; } /* hide desktop Contact button; mobile drawer has its own */
  .site-header .nav-links {
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15,30,45,0.10);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 50;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
  .site-header.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header .nav-links a {
    color: var(--text-dark);
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  .site-header .nav-links a:hover,
  .site-header .nav-links a.active { background: var(--bg-tint); }
  /* When menu is open over dark hero, the dropdown still has light bg — links should be dark */
  body.home .site-header:not(.scrolled).is-menu-open .nav-links a { color: var(--text-dark); }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stats--proof .hero-stat-sep { display: none; }
  .hero-stats--proof .hero-stat { flex-basis: 45%; padding: 0; }
  .diff-table { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .hero-visual { display: none; }
  .timeline::before { left: 23px; }
  .timeline-marker { width: 48px; }
  .timeline-num { width: 36px; height: 36px; font-size: 14px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
}

/* =============================================
   CONTACT MODAL (Pipedrive webform + scheduler)
   ============================================= */
.sa-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.sa-modal.is-open { display: flex; }
.sa-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 16, 28, 0.72);
  backdrop-filter: blur(4px);
  animation: saFade 0.18s ease;
}
.sa-modal-window {
  position: relative;
  width: 100%; max-width: 720px;
  max-height: 92vh;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.40);
  animation: saSlide 0.22s ease;
}
@keyframes saFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes saSlide { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.sa-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  font-size: 22px; line-height: 1; color: var(--text-mid);
  cursor: pointer; z-index: 2;
  transition: background 0.15s, color 0.15s;
}
.sa-modal-close:hover { background: rgba(0,0,0,0.12); color: var(--navy); }
.sa-modal-stage {
  display: flex; flex-direction: column;
  flex: 1; min-height: 0;
  padding: 28px 32px 24px;
}
.sa-modal-stage[hidden] { display: none; }
.sa-modal-head { margin-bottom: 14px; padding-right: 40px; }
.sa-modal-head .eyebrow { margin-bottom: 6px; display: block; }
.sa-modal-head h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 0 0 8px; line-height: 1.25; }
.sa-modal-head p { font-size: 14px; color: var(--text-mid); margin: 0; line-height: 1.55; }
.sa-modal-iframe-wrap {
  flex: 1; min-height: 380px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fafbfc;
}
.sa-modal-iframe-wrap--tall { min-height: 540px; }
.sa-modal-iframe-wrap iframe,
.sa-modal-iframe-wrap .calendly-inline-widget {
  width: 100%; height: 100%; min-height: 380px;
  border: 0; display: block;
  background: #fafbfc;
}
.sa-modal-iframe-wrap--tall iframe,
.sa-modal-iframe-wrap--tall .calendly-inline-widget { min-height: 540px; }
.sa-modal-actions {
  margin-top: 16px;
  display: flex; justify-content: center;
}

@media (max-width: 640px) {
  .sa-modal { padding: 0; }
  .sa-modal-window { max-width: 100%; height: 100vh; max-height: 100vh; border-radius: 0; }
  .sa-modal-stage { padding: 24px 20px 20px; }
  .sa-modal-head h3 { font-size: 20px; }
}

/* =============================================
   WHATSAPP NAV BUTTON
   ============================================= */
.nav-whatsapp {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  margin-right: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.40);
  color: var(--white);
}
.site-header.on-dark .nav-whatsapp,
.nav-whatsapp { background: #25D366; }
@media (max-width: 768px) {
  .nav-whatsapp { width: 36px; height: 36px; margin-right: 4px; }
}

/* =============================================
   PLATINUM PARTNERS — premium showcase (v2)
   ============================================= */
.platinum-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.platinum-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at top left,  rgba(20,152,213,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(180,140,60,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0F1E2D 0%, #0A1626 100%);
  pointer-events: none;
}
.platinum-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  background-position: 0 0, 20px 20px;
  opacity: 0.6;
}
.platinum-section .container { position: relative; z-index: 1; }
.platinum-eyebrow {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.platinum-eyebrow .eyebrow { color: #FFD66C; margin-bottom: 16px; display: inline-block; }
.platinum-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.platinum-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  margin: 0;
  line-height: 1.6;
}
.platinum-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}
.platinum-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}
.platinum-badge::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,214,108,0.18), transparent 30%);
  animation: platinumShimmer 6s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.platinum-badge:hover {
  transform: translateY(-6px);
  border-color: rgba(255,214,108,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,214,108,0.20);
  color: var(--white);
}
.platinum-badge:hover::before { opacity: 1; }
@keyframes platinumShimmer { to { transform: rotate(360deg); } }
.platinum-badge img {
  max-width: 220px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  transition: transform 0.35s ease;
}
.platinum-badge:hover img { transform: scale(1.04); }
.platinum-badge-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  width: 100%;
}
.platinum-badge-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.platinum-badge-line {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
/* tablet & small laptop — keep all three badges on one line, just more compact */
@media (max-width: 900px) {
  .platinum-section { padding: 80px 0; }
  .platinum-badges { gap: 18px; max-width: 760px; }
  .platinum-badge { padding: 28px 18px 20px; gap: 14px; }
  .platinum-badge img { max-width: 150px; max-height: 150px; }
  .platinum-badge-name { font-size: 16px; }
  .platinum-badge-line { font-size: 12px; }
}
/* phones — stack into a single centered column with full-size badges */
@media (max-width: 680px) {
  .platinum-section { padding: 64px 0; }
  .platinum-badges { grid-template-columns: 1fr; max-width: 360px; gap: 20px; }
  .platinum-badge { padding: 32px 24px 24px; gap: 18px; }
  .platinum-badge img { max-width: 200px; max-height: 200px; }
  .platinum-badge-name { font-size: 18px; }
  .platinum-badge-line { font-size: 13px; }
}

/* =============================================
   AI AGENTS PAGE — use case cards
   ============================================= */
.ai-uses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ai-use-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s;
}
.ai-use-card:hover {
  border-color: rgba(20,152,213,0.30);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ai-use-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ai-use-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-use-head h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.ai-use-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.ai-use-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.ai-use-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.ai-use-list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blue);
}
@media (max-width: 900px) {
  .ai-uses { grid-template-columns: 1fr; }
}

/* =============================================
   NATIVE CONTACT FORM (inside modal)
   ============================================= */
.sa-form { display: flex; flex-direction: column; gap: 14px; }
/* Modal form: fixed header (.sa-modal-head) + scrolling body + pinned footer,
   so the Submit button is always visible without scrolling. Scoped to the
   modal so the inline contact-page form (.sa-form--inline) is unaffected. */
.sa-modal-stage .sa-form { flex: 1; min-height: 0; gap: 0; }
.sa-form-body {
  flex: 1; min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column; gap: 11px;
  padding-right: 4px;
}
.sa-form-footer {
  flex-shrink: 0;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.sa-form-footer .sa-form-actions { margin-top: 0; }
.sa-form-status:empty { display: none; }
.sa-form-row { display: flex; flex-direction: column; gap: 6px; }
.sa-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.sa-req { color: #E13C3C; font-weight: 700; }
.sa-opt { color: var(--text-light); font-weight: 500; font-size: 12px; }
.sa-form input,
.sa-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sa-form input:focus,
.sa-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20,152,213,0.15);
}
.sa-form textarea { resize: vertical; min-height: 80px; }
.sa-hint { font-size: 12px; color: var(--text-light); line-height: 1.4; }
.sa-form-actions { margin-top: 4px; }
.sa-form-submit {
  width: 100%;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.sa-form-submit.is-loading { color: transparent; pointer-events: none; }
.sa-form-submit .sa-form-spinner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  opacity: 0;
  animation: sa-spin 0.7s linear infinite;
}
.sa-form-submit.is-loading .sa-form-spinner { opacity: 1; }
@keyframes sa-spin { to { transform: rotate(360deg); } }

.sa-form-status {
  font-size: 14px;
  padding: 0;
  min-height: 1.2em;
  border-radius: 8px;
  transition: all 0.2s;
}
.sa-form-status.is-success {
  color: #0F7A3D;
  background: #E6F6EC;
  padding: 10px 14px;
}
.sa-form-status.is-error {
  color: #B5212B;
  background: #FCE9EB;
  padding: 10px 14px;
}
.sa-form-foot {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}
.sa-form-foot small { color: var(--text-light); }


/* =============================================
   PROCESS — Flowing workflow (alive, narrow section)
   Five step nodes connected by a path. A pulse dot travels along the path
   continuously. Each step glows briefly as the dot passes through it.
   ============================================= */
.process-section {
  position: relative;
  padding: var(--section-py) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,152,213,0.06) 0%, transparent 55%),
    var(--white);
  overflow: hidden;
}
.proc-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 16px;
}
.proc-flow-svg {
  position: absolute;
  top: 38px;             /* aligns with the centre of the node rings */
  left: 0; right: 0;
  width: 100%;
  height: 4px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.proc-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.proc-step-node {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15,30,45,0.06);
  transition: all 0.35s ease;
}
.proc-step-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.proc-step-num {
  position: absolute;
  top: -10px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.35s, transform 0.35s;
}
.proc-step-icon {
  color: var(--blue);
  transition: transform 0.35s ease;
}
.proc-step-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.proc-step-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
  max-width: 180px;
}
/* Active state (set by JS as pulse passes through) */
.proc-step.is-active .proc-step-node {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(20,152,213,0.35);
  transform: translateY(-3px);
}
.proc-step.is-active .proc-step-icon { color: var(--white); transform: scale(1.1); }
.proc-step.is-active .proc-step-num {
  background: var(--white);
  color: var(--blue);
  transform: scale(1.08);
}
.proc-step.is-active .proc-step-ring {
  opacity: 1;
  transform: scale(1);
  animation: procRing 1.4s ease-out infinite;
}
@keyframes procRing {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
.process-cta-inline {
  text-align: center;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .proc-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    max-width: 480px;
  }
  .proc-flow-svg { display: none; }
}
@media (max-width: 480px) {
  .proc-flow { grid-template-columns: 1fr; max-width: 280px; }
  .proc-step-body p { max-width: none; }
}

/* =============================================
   SCHEDULER PRE-FILL NOTE (one-click copy fallback)
   ============================================= */
.sa-prefill-note {
  margin: 0 0 14px;
}
.sa-prefill-hint {
  font-size: 12px;
  color: var(--text-light);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.sa-prefill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sa-prefill-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 12px;
  background: var(--bg-tint);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 100px;
  color: var(--text-dark);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.sa-prefill-chip:hover {
  background: #DFF1FB;
  border-color: rgba(20,152,213,0.45);
}
.sa-prefill-label {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.sa-prefill-value {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sa-prefill-copy {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
  transition: all 0.2s;
}
.sa-prefill-chip.is-copied {
  background: #DFF6E4;
  border-color: rgba(34,150,68,0.40);
}
.sa-prefill-chip.is-copied .sa-prefill-copy {
  background: #2C9F4A;
  color: var(--white);
}
.sa-prefill-chip.is-copied .sa-prefill-copy::before { content: '✓ '; }

/* =============================================
   TESTIMONIALS CAROUSEL
   ============================================= */
.testimonials-carousel {
  position: relative;
  margin-top: 8px;
  padding: 0 56px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testimonials-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  padding: 0 4px;
  box-sizing: border-box;
}
.testimonials-carousel .testimonial-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials-nav {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(15,30,45,0.08);
  transition: all 0.2s;
}
.testimonials-nav:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.testimonials-nav:disabled { opacity: 0.4; cursor: default; }
.testimonials-nav:disabled:hover { background: var(--white); color: var(--navy); border-color: var(--border); }
.testimonials-nav--prev { left: 0; }
.testimonials-nav--prev svg { transform: rotate(180deg); }
.testimonials-nav--next { right: 0; }
.testimonials-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(20,152,213,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.testimonials-dot.is-active {
  width: 24px;
  border-radius: 100px;
  background: var(--blue);
}
@media (max-width: 900px) {
  .testimonials-carousel { padding: 0 40px; }
  .testimonials-page { grid-template-columns: repeat(2, 1fr); }
  .testimonials-nav { width: 36px; height: 36px; }
}
@media (max-width: 600px) {
  .testimonials-carousel { padding: 0 32px; }
  .testimonials-page { grid-template-columns: 1fr; }
  .testimonials-carousel .testimonial-card { min-height: 200px; }
}

/* =============================================
   CONTACT CTA (template-part used across pages)
   ============================================= */
.contact-section .contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-section .contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-dark);
  transition: all 0.2s;
}
.contact-section .contact-detail:hover {
  border-color: rgba(20,152,213,0.40);
  background: var(--bg-tint);
  transform: translateY(-2px);
  color: var(--text-dark);
}
.contact-section .contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail--whatsapp .contact-detail-icon { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-section .contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-section .contact-detail-val { font-size: 15px; font-weight: 600; color: var(--navy); }

.sa-form--inline {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(15,30,45,0.06);
}
.sa-form--inline .sa-form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex-direction: row;
}
.sa-form--inline .sa-form-row--split > div { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 640px) {
  .sa-form--inline { padding: 24px; }
  .sa-form--inline .sa-form-row--split { grid-template-columns: 1fr; }
}

/* =============================================
   SCROLL REVEAL (CSS-only via IntersectionObserver)
   ============================================= */
.sa-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.sa-reveal--in {
  opacity: 1;
  transform: none;
}
/* Belt-and-braces: if JS never runs, never hide elements */
.no-js .sa-reveal,
html.no-js .sa-reveal { opacity: 1; transform: none; }

/* =============================================
   PHONE INPUT (intl-tel-input override to match our look)
   ============================================= */
.iti { width: 100%; display: block; }
.iti__country-list { font-family: var(--font); font-size: 14px; }
.iti__selected-flag { padding: 0 12px 0 12px; }
.iti--separate-dial-code .iti__selected-flag { background-color: var(--bg-tint); border-radius: 10px 0 0 10px; }
.sa-form input[type="tel"] { padding-left: 96px !important; }
.iti--allow-dropdown input[type="tel"] { padding-left: 96px !important; }

/* =============================================
   ANIMATED PAGE HEROES (CRM / Workflow / AI)
   Two-column hero with text on left, animated visual on right.
   ============================================= */
.page-hero--animated {
  position: relative;
  background: linear-gradient(180deg, #0F1E2D 0%, #0A1626 100%);
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}
.page-hero--animated .container { position: relative; z-index: 2; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.page-hero-text .eyebrow { color: #6DD4F5; margin-bottom: 16px; display: inline-block; }
.page-hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 20px;
}
.page-hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 560px;
}
.page-hero-visual {
  position: relative;
  min-height: 460px;
}

@media (max-width: 980px) {
  .page-hero--animated { padding: 120px 0 64px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-visual { min-height: 380px; }
}

/* =============================================
   CRM HUB visual
   ============================================= */
#crm-hub { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: stretch; }
.crm-inputs {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.crm-node {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.crm-input { padding: 6px 10px; font-size: 11px; }
.crm-node-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(20,152,213,0.18);
  color: #6DD4F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.crm-node.is-active {
  background: rgba(20,152,213,0.22);
  border-color: rgba(20,152,213,0.65);
  box-shadow: 0 0 24px rgba(20,152,213,0.40);
  transform: scale(1.04);
}
.crm-box {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1.5px solid rgba(20,152,213,0.30);
  border-radius: 18px;
  padding: 16px 18px 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  transition: box-shadow 0.4s, border-color 0.4s;
}
.crm-box.is-active {
  border-color: rgba(20,152,213,0.65);
  box-shadow: 0 0 32px rgba(20,152,213,0.30);
}
.crm-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.crm-box-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6DD4F5;
}
.crm-box-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 12px rgba(52,211,153,0.7);
  animation: crmHeartbeat 1.6s ease-in-out infinite;
}
@keyframes crmHeartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.6); opacity: 0.5; }
}
.crm-internals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.crm-internal {
  padding: 10px 12px;
  font-size: 12px;
}
.crm-automation {
  position: absolute;
  bottom: 14px; left: 18px; right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(255,214,108,0.18), rgba(255,214,108,0.08));
  border: 1px solid rgba(255,214,108,0.30);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFD66C;
}
.crm-automation-icon {
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFD66C;
}
.crm-automation.is-firing {
  background: linear-gradient(135deg, rgba(255,214,108,0.45), rgba(255,214,108,0.18));
  border-color: rgba(255,214,108,0.65);
  box-shadow: 0 0 24px rgba(255,214,108,0.45);
}
.crm-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}
@media (max-width: 980px) {
  #crm-hub { grid-template-columns: 90px 1fr; }
  .crm-input { font-size: 10px; }
  .crm-internal { font-size: 11px; }
}

/* =============================================
   WORKFLOW PIPELINE visual
   ============================================= */
#wf-pipeline {
  display: grid;
  grid-template-columns: 110px auto 130px;
  align-items: center;
  gap: 24px;
  padding: 0 8px;
}
.wfp-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}
.wfp-node.is-active {
  background: rgba(20,152,213,0.20);
  border-color: rgba(20,152,213,0.65);
  box-shadow: 0 0 24px rgba(20,152,213,0.45);
  transform: scale(1.06);
}
.wfp-node-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(20,152,213,0.20);
  color: #6DD4F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wfp-trigger {
  background: linear-gradient(135deg, rgba(255,214,108,0.18), rgba(255,214,108,0.08));
  border-color: rgba(255,214,108,0.35);
}
.wfp-trigger .wfp-node-icon { background: rgba(255,214,108,0.20); color: #FFD66C; }
.wfp-condition {
  width: 110px; height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  transform: rotate(45deg);
  border-radius: 14px;
  position: relative;
}
.wfp-condition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,152,213,0.10);
  border: 1.5px solid rgba(20,152,213,0.35);
  border-radius: 14px;
  transition: all 0.35s;
}
.wfp-condition.is-active::before {
  background: rgba(20,152,213,0.22);
  border-color: rgba(20,152,213,0.7);
  box-shadow: 0 0 28px rgba(20,152,213,0.45);
}
.wfp-condition-inner {
  transform: rotate(-45deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6DD4F5;
  position: relative;
  z-index: 1;
}
.wfp-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.wfp-action { font-size: 11px; padding: 8px 12px; }
.wfp-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}
@media (max-width: 980px) {
  #wf-pipeline { grid-template-columns: 90px 90px 110px; gap: 14px; padding: 0; }
  .wfp-condition { width: 90px; height: 90px; }
  .wfp-condition-inner { font-size: 10px; }
}

/* =============================================
   AI BRAIN visual
   ============================================= */
#ai-brain {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-orb {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.ai-orb-core {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(109,212,245,0.85) 0%, rgba(20,152,213,0.85) 45%, rgba(20,80,140,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(20,152,213,0.55), inset 0 0 30px rgba(255,255,255,0.20);
  animation: aiBreathe 3.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.ai-orb-glyph { color: var(--white); position: relative; z-index: 3; }
@keyframes aiBreathe {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 50px rgba(20,152,213,0.55), inset 0 0 30px rgba(255,255,255,0.20); }
  50%      { transform: scale(1.05); box-shadow: 0 0 70px rgba(20,152,213,0.75), inset 0 0 40px rgba(255,255,255,0.30); }
}
.ai-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(20,152,213,0.45);
  pointer-events: none;
  animation: aiSonar 3s ease-out infinite;
}
.ai-orb-ring--2 { animation-delay: 1s; }
.ai-orb-ring--3 { animation-delay: 2s; }
@keyframes aiSonar {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(2.3); opacity: 0; }
}
.ai-orb.is-thinking .ai-orb-core { animation-duration: 0.9s; }
.ai-orb.is-received .ai-orb-core { box-shadow: 0 0 80px rgba(109,212,245,0.95), inset 0 0 50px rgba(255,255,255,0.40); }
.ai-task {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  /* Position around the orb using the --angle variable from inline style */
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(170px) rotate(calc(-1 * var(--angle)));
  z-index: 2;
  transition: all 0.35s;
}
.ai-task.is-active {
  background: rgba(20,152,213,0.20);
  border-color: rgba(20,152,213,0.65);
  box-shadow: 0 0 24px rgba(20,152,213,0.45);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(170px) rotate(calc(-1 * var(--angle))) scale(1.06);
}
.ai-task-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(20,152,213,0.20);
  color: #6DD4F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ai-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}
@media (max-width: 980px) {
  #ai-brain { height: 380px; }
  .ai-orb { width: 110px; height: 110px; }
  .ai-orb-core { width: 92px; height: 92px; }
  .ai-task { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle))); font-size: 10px; padding: 6px 10px; }
  .ai-task.is-active { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle))) scale(1.06); }
}

/* =============================================
   FLOW LINE — DIV-based animated connector
   Used by CRM Hub, Workflow Pipeline, AI Brain.
   ============================================= */
.sa-flow-line {
  position: absolute;
  height: 3px;
  transform-origin: 0 50%;
  border-radius: 100px;
  pointer-events: none;
  z-index: 1;
  /* The "fluid" — animated linear gradient that visually flows along the line */
  background: linear-gradient(90deg,
    rgba(20,152,213,0) 0%,
    rgba(20,152,213,0.45) 20%,
    rgba(109,212,245,0.85) 50%,
    rgba(20,152,213,0.45) 80%,
    rgba(20,152,213,0) 100%);
  background-size: 50% 100%;
  background-repeat: repeat;
  animation: sa-line-flow var(--flow-speed, 1.4s) linear infinite;
  animation-delay: var(--flow-delay, 0s);
  /* Subtle base glow under the fluid */
  box-shadow: 0 0 8px rgba(20,152,213,0.35);
}
.sa-flow-line::before {
  /* A faint underline so the path is always visible even between dot passes */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(20,152,213,0.15);
  z-index: -1;
}
.sa-flow-line::after {
  /* The glowing pulse dot travelling along the line */
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6DD4F5;
  box-shadow:
    0 0 12px rgba(109,212,245,0.95),
    0 0 24px rgba(20,152,213,0.65);
  transform: translate(-50%, -50%);
  animation: sa-dot-travel var(--dot-speed, 1.6s) linear infinite;
  animation-delay: var(--flow-delay, 0s);
}
@keyframes sa-line-flow {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}
@keyframes sa-dot-travel {
  0%   { left: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Variant: automation lines (gold) */
.sa-flow-line--automation {
  background: linear-gradient(90deg,
    rgba(255,214,108,0) 0%,
    rgba(255,214,108,0.55) 30%,
    rgba(255,224,148,0.95) 50%,
    rgba(255,214,108,0.55) 70%,
    rgba(255,214,108,0) 100%);
  background-size: 50% 100%;
  background-repeat: repeat;
  box-shadow: 0 0 8px rgba(255,214,108,0.40);
  opacity: 0.4;
  transition: opacity 0.4s;
}
.sa-flow-line--automation::after {
  background: #FFD66C;
  box-shadow:
    0 0 14px rgba(255,214,108,0.95),
    0 0 28px rgba(255,180,40,0.65);
  width: 10px; height: 10px;
}
.sa-flow-line--automation::before { background: rgba(255,214,108,0.10); }
.crm-automation-active .sa-flow-line--automation { opacity: 1; }

/* Variant: internal CRM circulation (thinner, subtler) */
.sa-flow-line--internal { height: 2px; opacity: 0.85; }
.sa-flow-line--internal::after { width: 9px; height: 9px; }

/* Variant: trunk vs branch styling (workflow pipeline) */
.sa-flow-line--trunk { height: 4px; }
.sa-flow-line--trunk::after { width: 14px; height: 14px; }
.sa-flow-line--branch { height: 2.5px; }

/* Variant: AI tendril */
.sa-flow-line--tendril { height: 2.5px; opacity: 0.9; }
.sa-flow-line--tendril::after { width: 11px; height: 11px; }

@media (prefers-reduced-motion: reduce) {
  .sa-flow-line,
  .sa-flow-line::after { animation: none; }
}

/* =============================================
   FLOW GRAPH — page hero animations
   Same circular-node language as homepage workflow.
   ============================================= */
.flow-graph {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 460px;
  padding: 16px 0;
}
.flow-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.flow-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.flow-col--left, .flow-col--right { padding: 8px 0; }
.flow-col--center {
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 160px;
}

/* Hub-style large node (centre) */
.wf-node--hub .wf-node-circle {
  background: linear-gradient(135deg, rgba(20,152,213,0.18) 0%, rgba(20,152,213,0.08) 100%);
  border: 1.5px solid rgba(20,152,213,0.55);
  box-shadow: 0 0 32px rgba(20,152,213,0.30), inset 0 0 20px rgba(20,152,213,0.10);
}
.wf-node-circle--xl {
  width: 92px !important; height: 92px !important;
  border-radius: 26px !important;
}
.wf-node--hub .wf-node-label { font-size: 14px; font-weight: 800; letter-spacing: 0.02em; }
.wf-node--hub .wf-node-sub  { font-size: 11px; color: rgba(255,255,255,0.55); }

/* Gold variant (for trigger / automation accent) */
.wf-node-circle--gold {
  background: linear-gradient(135deg, rgba(255,214,108,0.18) 0%, rgba(255,214,108,0.06) 100%) !important;
  border-color: rgba(255,214,108,0.55) !important;
  color: #FFD66C !important;
}
/* Green won variant */
.wf-node-circle--won {
  background: linear-gradient(135deg, rgba(52,211,153,0.18) 0%, rgba(52,211,153,0.06) 100%) !important;
  border-color: rgba(52,211,153,0.55) !important;
  color: #34D399 !important;
}

/* Automation pill below the CRM hub */
.wf-automation-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(255,214,108,0.18), rgba(255,214,108,0.08));
  border: 1px solid rgba(255,214,108,0.30);
  border-radius: 100px;
  color: #FFD66C;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* AI orb circle variant */
.wf-node-circle--orb {
  background:
    radial-gradient(circle at 30% 30%, rgba(109,212,245,0.92) 0%, rgba(20,152,213,0.85) 45%, rgba(20,80,140,0.85) 100%) !important;
  border: 1.5px solid rgba(109,212,245,0.55) !important;
  box-shadow: 0 0 40px rgba(20,152,213,0.55), inset 0 0 28px rgba(255,255,255,0.20) !important;
  color: var(--white) !important;
  animation: orbBreathe 3.5s ease-in-out infinite;
}
@keyframes orbBreathe {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 40px rgba(20,152,213,0.55), inset 0 0 28px rgba(255,255,255,0.20); }
  50%      { transform: scale(1.06); box-shadow: 0 0 60px rgba(20,152,213,0.75), inset 0 0 40px rgba(255,255,255,0.30); }
}
.wf-node--orb .wf-node-label { color: #6DD4F5; }

/* Make the wf-node icon colour adapt to whether the circle has a gradient */
.flow-graph .wf-node-circle { color: #6DD4F5; }
.flow-graph .wf-node-circle--xl,
.flow-graph .wf-node-circle--gold,
.flow-graph .wf-node-circle--won { /* keep own colours via specific rules above */ }

/* Layout adjustments per page */
.flow-graph--workflow .flow-col--left,
.flow-graph--workflow .flow-col--center { align-items: center; justify-content: center; }
.flow-graph--ai .flow-col--center .wf-node--hub .wf-node-circle--xl { width: 110px !important; height: 110px !important; }

/* Make sure label text is visible on dark hero */
.flow-graph .wf-node-label { color: rgba(255,255,255,0.92); }
.flow-graph .wf-node-sub   { color: rgba(255,255,255,0.55); }

/* Mobile: stack columns vertically, shorter graph */
@media (max-width: 980px) {
  .flow-graph {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 'left center right';
    min-height: 360px;
    gap: 8px;
  }
  .flow-col { gap: 10px; }
  .wf-node-circle--xl { width: 76px !important; height: 76px !important; border-radius: 22px !important; }
}
@media (max-width: 640px) {
  .flow-graph {
    grid-template-columns: 1fr;
    grid-template-areas: 'left' 'center' 'right';
    min-height: 0;
  }
  .flow-col--left, .flow-col--right { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .flow-col--center { padding: 20px 0; }
}

/* =============================================
   APP NODES — Make.com style nodes with real partner logos
   ============================================= */
.wf-app-node { position: relative; }

/* Circle uses a white-ish background so logos read clearly */
.wf-app-circle {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(20,152,213,0.12) inset !important;
  padding: 14px !important;
  overflow: hidden;
}
.wf-app-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Dark variant — for partner logos that are designed for dark backgrounds (white logos) */
.wf-app-circle--dark {
  background: #0F1E2D !important;
  border-color: rgba(20,152,213,0.35) !important;
}

/* Hub-sized app node (Make in the centre) */
.wf-node--hub .wf-app-circle {
  padding: 18px !important;
  box-shadow: 0 12px 36px rgba(20,152,213,0.30), 0 0 0 1.5px rgba(20,152,213,0.45) inset !important;
}

/* Step number badge — Make.com-style */
.wf-step-badge {
  position: absolute;
  top: -4px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 100px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(20,152,213,0.45);
}
.wf-step-badge--center {
  background: linear-gradient(135deg, #1498D5 0%, #6DD4F5 100%);
  top: -6px;
  right: 24px;
}

/* Pulsing ring on the wf-pulsing state (already exists but make sure it's visible on app circles) */
.wf-app-node.wf-pulsing .wf-app-circle {
  border-color: rgba(20,152,213,0.85) !important;
  box-shadow:
    0 8px 24px rgba(20,152,213,0.50),
    0 0 0 1px rgba(20,152,213,0.45) inset,
    0 0 24px rgba(20,152,213,0.55) !important;
  transition: box-shadow 0.3s, border-color 0.3s;
}

/* Slight responsive tweaks */
@media (max-width: 980px) {
  .wf-step-badge { min-width: 18px; height: 18px; font-size: 10px; right: 12px; }
  .wf-app-circle { padding: 10px !important; }
  .wf-node--hub .wf-app-circle { padding: 14px !important; }
}

/* =============================================
   PHASE 1 — Typography polish, magnetic CTAs, premium micro-interactions
   ============================================= */

/* Geist Mono for tabular figures / stats / code feel */
.hero-stat-num,
.stat-num,
.pricing-rate,
.proc-step-num,
.wf-step-badge,
.testimonials-dot {
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' 1, 'cv11' 1;
  letter-spacing: -0.02em;
}

/* Tighter heading rhythm */
.hero-title,
.section-title,
.platinum-headline,
.page-hero-text h1 {
  font-feature-settings: 'ss01' 1, 'cv11' 1;
  letter-spacing: -0.03em;
}

/* Magnetic primary button — micro hover lift + shine sweep */
.btn--primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.30) 50%,
    transparent 60%,
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20,152,213,0.40);
}
.btn--primary:hover::after { transform: translateX(100%); }
.btn--primary:active { transform: translateY(0); }

/* Magnetic data-attribute hook (JS sets --mx and --my) */
.btn--magnetic {
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Subtle text gradient for hero accent words (used inline) */
.text-grad-blue {
  background: linear-gradient(135deg, #1498D5 0%, #6DD4F5 70%, #C9EEFB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Stronger scroll-reveal — wider distance, slightly longer duration */
.sa-reveal { transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.sa-reveal--in { opacity: 1; transform: none; }

/* Eyebrow rendering with Geist's smaller caps feel */
.eyebrow {
  font-feature-settings: 'ss01' 1;
  font-weight: 600;
}

/* =============================================
   PHASE 2 — BENTO GRID Services Section
   Asymmetric premium grid with mini live previews per cell.
   ============================================= */
.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    'crm    workflow ai'
    'crm    tagline  ai';
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.bento-cell {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFE 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
  display: block;
  isolation: isolate;
}
.bento-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(800px circle at var(--mx,50%) var(--my,50%), rgba(20,152,213,0.10), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.bento-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(20,152,213,0.35);
  box-shadow: 0 18px 50px rgba(15,30,45,0.08);
}
.bento-cell:hover::before { opacity: 1; }
.bento-cell-inner {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.bento-cell--xl     { grid-area: crm; }
.bento-cell--workflow { grid-area: workflow; }
.bento-cell--ai     { grid-area: ai; }
.bento-cell--tagline {
  grid-area: tagline;
  background: linear-gradient(180deg, var(--navy) 0%, #0A1626 100%);
  border-color: rgba(20,152,213,0.30);
  color: var(--white);
}
.bento-cell--tagline .bento-cell-inner { justify-content: center; }
.bento-tagline {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.bento-tagline strong { color: #6DD4F5; font-weight: 700; }
.bento-sub {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

.bento-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(20,152,213,0.08);
  padding: 5px 10px;
  border-radius: 100px;
  align-self: flex-start;
  font-family: var(--font-mono);
}
.bento-cell h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
  letter-spacing: -0.02em;
}
.bento-cell p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.bento-cell-body { flex: 1; display: flex; flex-direction: column; }
.bento-link {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.bento-cell:hover .bento-link { gap: 10px; }

/* CRM mini preview (fake pipeline rows) */
.bento-mini-crm {
  background: #F7FAFC;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.bento-mini-crm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 8px;
  color: var(--text-mid);
}
.bento-mini-crm-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.dot--blue  { background: #1498D5; box-shadow: 0 0 8px rgba(20,152,213,0.6); }
.dot--gold  { background: #F59E0B; box-shadow: 0 0 8px rgba(245,158,11,0.6); }
.dot--red   { background: #EF4444; box-shadow: 0 0 8px rgba(239,68,68,0.6); animation: pulseRed 1.2s ease-in-out infinite; }
@keyframes pulseRed {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.bento-mini-crm-row--active {
  background: linear-gradient(135deg, #EAF5FC 0%, #DFF0FB 100%);
  border: 1px solid rgba(20,152,213,0.25);
  color: var(--navy);
  font-weight: 600;
}
.bento-mini-crm-row span:nth-child(2) {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bento-mini-tag {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Workflow mini preview (3 step pills) */
.bento-mini-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F7FAFC;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  justify-content: space-between;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.flow-step--blue  { background: var(--blue); border-color: var(--blue); color: var(--white); }
.flow-step--green { background: #22C55E; border-color: #22C55E; color: var(--white); }
.flow-arrow {
  flex: 1;
  height: 2px;
  background:
    linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
  background-size: 30px 100%;
  background-repeat: repeat;
  animation: flowDash 1.2s linear infinite;
}
@keyframes flowDash {
  to { background-position: 60px 0; }
}

/* AI mini preview (chat bubble + LIVE indicator) */
.bento-mini-ai {
  background: linear-gradient(135deg, #0F1E2D 0%, #142D44 100%);
  border: 1px solid rgba(20,152,213,0.30);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-mini-ai-bubble {
  background: rgba(20,152,213,0.18);
  border: 1px solid rgba(20,152,213,0.35);
  color: rgba(255,255,255,0.92);
  padding: 10px 12px;
  border-radius: 12px 12px 12px 4px;
  font-size: 12.5px;
  line-height: 1.4;
}
.bento-mini-ai-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.bento-mini-mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* Mouse-position tracking for the radial highlight (set by JS) */
.bento-cell { --mx: 50%; --my: 50%; }

/* Responsive bento */
@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'crm crm'
      'workflow ai'
      'tagline tagline';
  }
}
@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'crm'
      'workflow'
      'ai'
      'tagline';
  }
}

/* =============================================
   PHASE 3 — CASE STUDIES SECTION
   ============================================= */
.case-studies { padding: var(--section-py) 0; }
.cs-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20,152,213,0.35);
  box-shadow: 0 18px 50px rgba(15,30,45,0.08);
}
.cs-card--featured {
  grid-row: span 2;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%);
  border-color: rgba(20,152,213,0.22);
}
.cs-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(20,152,213,0.10);
  padding: 4px 8px;
  border-radius: 6px;
}
.cs-industry {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.cs-card-title {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.cs-card--featured .cs-card-title { font-size: clamp(24px, 2vw, 32px); }
.cs-card-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Metrics row */
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF6FB 100%);
  border-radius: 14px;
  border: 1px solid rgba(20,152,213,0.10);
}
.cs-metrics--compact { grid-template-columns: 1fr 1fr; }
.cs-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.cs-metric-num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cs-metric--highlight .cs-metric-num { color: var(--blue); }
.cs-metric-label {
  font-size: 11.5px;
  color: var(--text-mid);
  line-height: 1.35;
}
.cs-metric-label small {
  display: block;
  color: var(--text-light);
  font-size: 10px;
  margin-top: 2px;
  font-family: var(--font-mono);
}

/* Stack pills */
.cs-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.cs-stack-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-right: 4px;
}
.cs-stack-item {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-tint);
  border: 1px solid rgba(20,152,213,0.18);
  padding: 4px 9px;
  border-radius: 100px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

/* Quote */
.cs-quote {
  font-style: italic;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  border-left: 3px solid var(--blue);
  padding: 6px 0 6px 16px;
  margin: 4px 0 0;
}

/* Link CTA */
.cs-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.cs-link:hover { gap: 10px; color: var(--blue-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-card--featured { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 700px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card--featured { grid-column: auto; }
  .cs-metrics { grid-template-columns: 1fr 1fr 1fr; padding: 14px 10px; }
}

/* =============================================
   PHASE 4 — AI LIVE CHAT DEMO (page-ai-agents)
   ============================================= */
.ai-live-demo { background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%); }
.ai-chat {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15,30,45,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(180deg, #0F1E2D 0%, #142D44 100%);
  border-bottom: 1px solid rgba(20,152,213,0.20);
  color: var(--white);
}
.ai-chat-meta { display: flex; align-items: center; gap: 12px; }
.ai-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #6DD4F5 0%, #1498D5 70%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  box-shadow: 0 0 16px rgba(20,152,213,0.50);
}
.ai-chat-name { font-size: 14px; font-weight: 700; }
.ai-chat-status {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.ai-chat-meta-mono { font-family: var(--font-mono); }
.ai-chat-reset {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.ai-chat-reset:hover { background: rgba(255,255,255,0.15); }

.ai-chat-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background: #FAFCFE;
  min-height: 280px;
  max-height: 480px;
}
.ai-chat-msg { display: flex; }
.ai-chat-msg--user { justify-content: flex-end; }
.ai-chat-msg--bot  { justify-content: flex-start; }
.ai-chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ai-chat-msg--user .ai-chat-bubble {
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.ai-chat-msg--bot .ai-chat-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}
.ai-chat-bubble--typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.2em;
  color: var(--text-light);
  animation: typingDots 1.2s steps(3) infinite;
}
@keyframes typingDots {
  0%   { content: '.'; }
  33%  { content: '..'; }
  66%  { content: '...'; }
}

.ai-chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.ai-chat-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ai-chat-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20,152,213,0.15);
}
.ai-chat-send { padding: 12px 22px; position: relative; }
.ai-chat-send.is-loading .ai-chat-send-text { opacity: 0; }
.ai-chat-send-spin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.ai-chat-send-spin::before {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.ai-chat-send.is-loading .ai-chat-send-spin { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.ai-chat-foot {
  font-size: 11.5px;
  color: var(--text-light);
  text-align: center;
  margin: 12px 0 0;
  padding: 0 16px;
}

/* =============================================
   PHASE 5 — COST CALCULATOR on /pricing/
   ============================================= */
.cost-calc {
  max-width: 760px;
  margin: 56px auto 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%);
  border: 1px solid rgba(20,152,213,0.22);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(15,30,45,0.06);
}
.cost-calc-header { text-align: center; margin-bottom: 24px; }
.cost-calc-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 4px;
  letter-spacing: -0.02em;
}
.cost-calc-amount {
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.cost-calc-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
}
.cost-calc-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.cost-calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) var(--fill, 50%), var(--bg-tint) var(--fill, 50%), var(--bg-tint) 100%);
  border-radius: 100px;
  outline: none;
}
.cost-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 6px 16px rgba(20,152,213,0.45);
  cursor: grab;
  transition: transform 0.15s ease;
}
.cost-calc-slider::-webkit-slider-thumb:active { transform: scale(1.18); cursor: grabbing; }
.cost-calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 6px 16px rgba(20,152,213,0.45);
  cursor: grab;
}
.cost-calc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--font-mono);
}
.cost-calc-hours, .cost-calc-rate {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.cost-calc-hours #cc-hours { font-size: 22px; }
.cost-calc-hours small,
.cost-calc-rate  small { font-weight: 500; color: var(--text-light); font-size: 11px; }
.cost-calc-sep { width: 1px; height: 18px; background: var(--border); }

.cost-calc-outputs { transition: opacity 0.25s; }
.cc-band {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.cc-band-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(20,152,213,0.10);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.cc-band-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-band-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.5;
}
.cc-band-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
.cc-band-hint {
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.cc-band-hint strong { color: var(--navy); font-family: var(--font-mono); }
.cc-band-hint em { font-style: normal; color: var(--blue); font-weight: 600; }

@media (max-width: 640px) {
  .cost-calc { padding: 24px 18px; }
  .cost-calc-controls { flex-direction: column; gap: 16px; align-items: stretch; }
  .cost-calc-meta { justify-content: center; }
}

/* =============================================
   Multilingual flags stat — pro presentation
   ============================================= */
.hero-stat-num--lang {
  display: inline-flex !important;
  gap: 6px;
  font-family: inherit;
  font-size: 28px;
  line-height: 1;
}
.lang-flag {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  transition: transform 0.25s ease;
}
.hero-stat:hover .lang-flag { transform: translateY(-2px); }

/* =============================================
   SERVICES — 3 equal cards (replaces bento)
   ============================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,152,213,0.35);
  box-shadow: 0 24px 60px rgba(15,30,45,0.08);
}

/* Top preview area — fixed height so all 3 cards align */
.svc-preview {
  height: 160px;
  padding: 22px;
  background: linear-gradient(135deg, #F4FAFD 0%, #EAF5FC 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-preview--dark {
  background: linear-gradient(135deg, #0F1E2D 0%, #142D44 100%);
  border-bottom-color: rgba(20,152,213,0.25);
}

/* Mini-CRM preview rows */
.svc-mini-crm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.svc-mini-crm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--white);
  border-radius: 8px;
  color: var(--text-mid);
  border: 1px solid rgba(20,152,213,0.10);
}
.svc-mini-crm-row .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.svc-mini-crm-row span:nth-child(2) {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.svc-mini-tag { font-weight: 700; color: var(--navy); }
.svc-mini-crm-row--active {
  background: linear-gradient(135deg, #DFF0FB 0%, #C7E7F8 100%);
  color: var(--navy);
  font-weight: 600;
  border-color: rgba(20,152,213,0.35);
}

/* Mini-flow preview */
.svc-mini-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}

/* Mini-AI preview */
.svc-mini-ai { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.svc-mini-ai-bubble {
  background: rgba(20,152,213,0.18);
  border: 1px solid rgba(20,152,213,0.35);
  color: rgba(255,255,255,0.92);
  padding: 9px 11px;
  border-radius: 12px 12px 12px 4px;
  font-size: 12.5px;
  line-height: 1.4;
}
.svc-mini-ai-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.svc-mini-mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* Body */
.svc-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(20,152,213,0.08);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.svc-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 0;
  letter-spacing: -0.02em;
}
.svc-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.45;
}
.svc-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(20,152,213,0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6l3 3 5-5' stroke='%231498D5' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px;
}
.svc-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 10px; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 560px; }
}

/* =============================================
   PRICING — Refined rate card (replaces giant €80)
   ============================================= */
.pricing-headline--refined {
  margin-bottom: 32px;
}
.pricing-rate-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 22px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(15,30,45,0.04);
}
.pricing-rate-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pricing-rate-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(20,152,213,0.10);
  padding: 5px 12px;
  border-radius: 100px;
}
.pricing-rate-tag--muted {
  color: var(--text-light);
  background: var(--bg-tint);
}
.pricing-rate-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.pricing-rate-value {
  font-family: var(--font-mono);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-rate-unit {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pricing-rate-card .pricing-rate-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Hide the old giant .pricing-rate that we left for any inner pages */
.pricing-headline--refined .pricing-rate { display: none; }

@media (max-width: 640px) {
  .pricing-rate-card { padding: 28px 24px; }
  .pricing-rate-value { font-size: 52px; }
}

/* =============================================
   CRM HERO — Live Pipeline Dashboard
   ============================================= */
.pipe-board {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
  width: 100%;
}
.pipe-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.pipe-board-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.pipe-board-stat {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pipe-mono { font-family: var(--font-mono); letter-spacing: 0.01em; }

.pipe-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  height: 320px;
}
.pipe-stage {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.pipe-stage--flash {
  background: rgba(20,152,213,0.10);
  border-color: rgba(20,152,213,0.40);
}
.pipe-stage--won .pipe-stage-header { color: #34D399; }
.pipe-stage-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
}
.pipe-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 16px;
  padding: 0 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
}
.pipe-stage-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.pipe-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 9px;
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.pipe-card--arrive {
  animation: pipeArrive 0.5s cubic-bezier(0.22,1,0.36,1);
  border-color: rgba(20,152,213,0.55);
}
.pipe-card--exit {
  opacity: 0;
  transform: translateY(-6px) scale(0.95);
}
@keyframes pipeArrive {
  0%   { opacity: 0; transform: translateY(8px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}
.pipe-card-name {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 4px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipe-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipe-card-value {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: #6DD4F5;
  white-space: nowrap;
}
.pipe-card-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.pipe-card-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1498D5, #6DD4F5);
  border-radius: 100px;
  transition: width 0.5s ease;
}

@media (max-width: 980px) {
  .pipe-stages { grid-template-columns: repeat(3, 1fr); }
  .pipe-stage:nth-child(4),
  .pipe-stage:nth-child(5) { display: none; }
}

/* =============================================
   AI HERO — Live Workflow
   ============================================= */
.ai-live {
  width: 100%;
}
.ai-live-frame {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-live-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.3s, background 0.3s, opacity 0.3s;
  opacity: 0.55;
}
.ai-live-step.is-active {
  border-color: rgba(20,152,213,0.55);
  background: rgba(20,152,213,0.08);
  opacity: 1;
}
.ai-live-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ai-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.10);
}
.ai-live-pill--blue {
  color: #6DD4F5;
  background: rgba(20,152,213,0.12);
  border-color: rgba(20,152,213,0.30);
}
.ai-live-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Transcript step */
.ai-live-transcript {
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.5;
  min-height: 1.5em;
  border-left: 2px solid rgba(20,152,213,0.45);
  padding-left: 10px;
}
.ai-live-transcript::after {
  content: '▍';
  color: var(--blue);
  margin-left: 2px;
  animation: aiCaret 0.9s ease-in-out infinite;
}
@keyframes aiCaret {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Brain + extracted chips */
.ai-live-step--brain {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ai-live-brain-orb {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.ai-live-brain-core {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6DD4F5 0%, #1498D5 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 18px rgba(20,152,213,0.55);
}
.ai-live-brain-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(20,152,213,0.40);
  animation: aiBrainPing 2s ease-out infinite;
}
@keyframes aiBrainPing {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.4);  opacity: 0; }
}
.ai-live-extracted {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.ai-live-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 6px 8px;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ai-live-chip.is-filled {
  color: #6DD4F5;
  background: rgba(20,152,213,0.10);
  border-color: rgba(20,152,213,0.35);
}
.ai-live-chip span { color: var(--white); font-weight: 700; }

/* CRM card */
.ai-live-crm-card {
  background: var(--white);
  color: var(--navy);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.ai-live-row span { color: var(--text-light); font-family: var(--font-mono); font-size: 11px; }
.ai-live-row strong { color: var(--navy); font-weight: 700; font-size: 12.5px; }
.ai-live-row--total {
  padding-top: 6px;
  margin-top: 2px;
  border-top: 1px dashed var(--border);
}
.ai-live-row--total strong { color: var(--blue); font-size: 13.5px; }

/* Actions step */
.ai-live-step--actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-live-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.ai-live-action.is-done { color: rgba(255,255,255,0.92); }
.ai-live-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.30);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s;
}
.ai-live-action.is-done .ai-live-check {
  background: #22C55E;
  color: var(--white);
  box-shadow: 0 0 12px rgba(34,197,94,0.55);
}

/* =============================================
   REASON / DELIVERABLE / OPP / PAGE-FAQ — shared section styles
   ============================================= */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reason-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,30,45,0.08); }
.reason-card--warn { border-left-color: #F59E0B; }
.reason-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.reason-card--warn .reason-num { color: #F59E0B; }
.reason-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.reason-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 820px) {
  .reason-grid { grid-template-columns: 1fr; }
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.deliverable {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.deliverable:hover { transform: translateY(-3px); border-color: rgba(20,152,213,0.30); }
.deliverable-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(20,152,213,0.10);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.deliverable h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.deliverable p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 820px) {
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .deliverable-grid { grid-template-columns: 1fr; }
}

.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.opp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.opp-card:hover { transform: translateY(-3px); border-color: rgba(20,152,213,0.35); box-shadow: 0 12px 28px rgba(15,30,45,0.06); }
.opp-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.opp-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(20,152,213,0.10);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.opp-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.opp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.opp-card li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.opp-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 820px) {
  .opp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .opp-grid { grid-template-columns: 1fr; }
}

/* Page FAQ (details/summary) */
.page-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: rgba(20,152,213,0.30); box-shadow: 0 8px 20px rgba(15,30,45,0.04); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 16px;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: '–'; transform: rotate(180deg); }
.faq-item p {
  margin: 0 0 16px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Case study standalone variant (used on inner pages) */
.cs-card--standalone {
  max-width: 880px;
  margin: 0 auto;
  grid-row: auto !important;
}

/* =============================================
   WORKFLOW HERO — Make.com-style scenario builder
   ============================================= */
.scn {
  background: linear-gradient(180deg, #0F1E2D 0%, #0A1626 100%);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

/* Header (mimics Make's scenario editor top bar) */
.scn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
  flex-wrap: wrap;
}
.scn-header-left { display: flex; align-items: center; gap: 10px; }
.scn-header-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.scn-badge {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(52,211,153,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scn-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px rgba(52,211,153,0.85);
  animation: scnPulse 1.6s ease-in-out infinite;
}
@keyframes scnPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.6); opacity: 0.5; }
}
.scn-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.scn-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.scn-meta-mono { font-family: var(--font-mono); }
.scn-meta-sep {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
}

/* Canvas */
.scn-canvas {
  position: relative;
  flex: 1;
  padding: 24px 18px;
  /* CSS grid for module positioning, controlled per-module by --col / --row */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;   /* 3 columns: trigger / router / actions */
  grid-template-rows: repeat(4, 1fr);
  gap: 8px 24px;
  min-height: 360px;
  /* Faint dotted "Make canvas" grid background */
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: 0 0;
}
.scn-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* Module: Make-style rounded rectangle, real partner logo + app + action */

/* Footer payload strip */
.scn-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11.5px;
}
.scn-footer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.scn-footer-payload {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #6DD4F5;
  background: rgba(20,152,213,0.10);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(20,152,213,0.20);
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
}

/* Data chip travelling along the connector (SVG-positioned by JS) */
.scn-chip {
  fill: rgba(15, 30, 45, 0.95);
  stroke: rgba(20,152,213,0.65);
  stroke-width: 1;
}
.scn-chip-text {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: #6DD4F5;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-anchor: middle;
  dominant-baseline: central;
}

/* Mobile — stack modules vertically */
@media (max-width: 880px) {
  .scn-header { padding: 10px 12px; }
  .scn-header-right { gap: 6px; }
  .scn-meta { font-size: 10px; }
  .scn-canvas {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    padding: 18px 12px;
  }
  .scn-mod {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .scn-svg { display: none; }
  .scn-footer-payload { font-size: 10px; }
}

/* =============================================
   WORKFLOW HERO — BUBBLE modules (replaces rectangular .scn-mod)
   ============================================= */
/* Bubble module: round logo + number badge + label below */
.scn-bub {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.scn-bub-circle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.20);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45), 0 0 0 1px rgba(20,152,213,0.10) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.scn-bub-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.scn-bub-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(20,152,213,0.55), 0 0 0 2px #0A1626;
  z-index: 3;
}
/* Trigger marker (green outline ring) */
.scn-bub--trigger .scn-bub-circle {
  box-shadow: 0 10px 26px rgba(0,0,0,0.45), 0 0 0 2px #22C55E inset;
}
.scn-bub--trigger .scn-bub-num { background: #22C55E; box-shadow: 0 4px 10px rgba(34,197,94,0.6), 0 0 0 2px #0A1626; }
.scn-bub--router .scn-bub-circle {
  box-shadow: 0 10px 26px rgba(0,0,0,0.45), 0 0 0 2px var(--blue) inset;
}

/* Bubble label (below the circle) */
.scn-bub-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-width: 130px;
}
.scn-bub-label strong {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.scn-bub-label span {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Fire state — bright glow + small lift */
.scn-bub.is-firing .scn-bub-circle {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 14px 36px rgba(20,152,213,0.55),
    0 0 0 2px var(--blue) inset,
    0 0 0 6px rgba(20,152,213,0.20);
  border-color: rgba(109,212,245,0.85);
}

/* Tighten canvas spacing — bubbles need less width than cards did */
.scn-canvas {
  gap: 10px 36px;
  padding: 26px 12px 26px;
}

/* Mobile — stack bubbles vertically with labels still below */
@media (max-width: 880px) {
  .scn-bub { grid-column: 1 !important; grid-row: auto !important; flex-direction: row; align-items: center; gap: 14px; }
  .scn-bub-label { text-align: left; max-width: none; }
  .scn-bub-circle { width: 56px; height: 56px; padding: 10px; }
}

/* =============================================
   WORKFLOW HERO — Fan-out scenario (trigger left, actions fan right)
   One "Deal Won" trigger dispatches to four parallel branches — the
   canonical Make.com router pattern. Compact enough for a hero side column.
   ============================================= */
.scn-canvas--fan {
  display: grid !important;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  gap: 16px 70px !important;
  padding: 30px 26px !important;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 18px 18px;
}
.scn-canvas--fan .scn-bub { flex: 0 0 auto; }
/* Uniform circles, sized to fill the wider board without crowding */
.scn-canvas--fan .scn-bub-circle { width: 68px; height: 68px; padding: 13px; }
.scn-canvas--fan .scn-bub-num { width: 20px; height: 20px; font-size: 10.5px; top: -5px; right: -5px; }

/* Trigger: left column, vertically centred — the single fan-out origin */
.scn-canvas--fan .scn-bub--trigger {
  grid-column: 1;
  grid-row: 1 / -1;
  justify-self: center;
  align-self: center;
}

/* Action branches: right column, one per row. Rows are content-width (not
   stretched) so the whole grid stays compact and centres in the canvas —
   logo + action + status read as one tight table line, no dead space. */
.scn-canvas--fan .scn-bub:not(.scn-bub--trigger) {
  grid-column: 2;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-self: start;
}
/* Fixed label width aligns every status pill into a clean vertical column. */
.scn-canvas--fan .scn-bub:not(.scn-bub--trigger) .scn-bub-label {
  text-align: left;
  width: 126px;
  max-width: none;
}
/* Status pill — a real chip (bg + border) so each branch's result reads as a
   deliberate "it ran" badge sitting right after its label, not floating text. */
.scn-bub-stat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px 4px 9px;
  border-radius: 999px;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.24);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: rgba(130,233,186,0.95);
}
.scn-bub-stat::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px rgba(52,211,153,0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* When a module fires, its status dot pulses brighter */
.scn-bub.is-firing .scn-bub-stat::before {
  transform: scale(1.5);
  box-shadow: 0 0 14px rgba(52,211,153,0.95);
}

/* Phone (≤880px): connectors are hidden, so the fan becomes a clean vertical
   checklist — each step a full-width row: circle + label that grows + status
   pill pinned right. Smaller circles so rows breathe on narrow screens. */
@media (max-width: 880px) {
  .scn-canvas--fan {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 10px !important;
    padding: 18px 16px !important;
  }
  .scn-canvas--fan .scn-bub--trigger,
  .scn-canvas--fan .scn-bub:not(.scn-bub--trigger) {
    grid-column: 1 !important;
    grid-row: auto !important;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    justify-self: stretch;
  }
  .scn-canvas--fan .scn-bub-circle { width: 50px; height: 50px; padding: 10px; }
  .scn-canvas--fan .scn-bub-num { width: 18px; height: 18px; font-size: 9.5px; }
  .scn-canvas--fan .scn-bub-label { text-align: left; width: auto; max-width: none; flex: 1 1 auto; }
  .scn-canvas--fan .scn-bub-stat { margin-left: auto; }
}

/* =============================================
   WORKFLOW HERO — two-column: copy left, fan-out scenario right
   ============================================= */
.page-hero--workflow .page-hero-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  align-items: center;
}
.page-hero--workflow .page-hero-text { text-align: left; }
.page-hero--workflow .wf-hero-friction { justify-content: flex-start; }
/* Board sized to the fan's content so it fills edge-to-edge, not floats */
.page-hero--workflow .scn { max-width: 510px; margin-left: auto; }

@media (max-width: 980px) {
  /* Collapse to one column — copy on top, board centred below.
     (Must restate columns: the desktop override above out-specifies the
     base .page-hero-grid 1fr collapse, so without this the board overflows.) */
  .page-hero--workflow .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero--workflow .page-hero-text { text-align: center; }
  .page-hero--workflow .page-hero-text p { margin-left: auto; margin-right: auto; }
  .page-hero--workflow .wf-hero-friction { justify-content: center; }
  .page-hero--workflow .scn { max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* =============================================
   PRICING CALC v2 — both HOURS and €COST equally prominent
   ============================================= */
.cost-calc-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: clamp(28px, 3vw, 40px) !important;
  letter-spacing: -0.02em;
}
.cost-calc-hours-big {
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.cost-calc-hours-unit {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.55em;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.cost-calc-divider {
  color: rgba(20,152,213,0.35);
  font-weight: 300;
  font-size: 0.85em;
}
.cost-calc-amount {
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.cost-calc-hours-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.cost-calc-hours-meta small {
  color: var(--text-light);
  font-weight: 500;
  font-size: 11px;
}
.cost-calc-hours-meta #cc-hours {
  font-size: 16px;
  color: var(--blue);
}

/* Band card — new head with build + outcome line */
.cc-band-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cc-band-head .cc-band-tag {
  align-self: flex-start;
  margin: 0;
}
.cc-band-outcome {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

@media (max-width: 540px) {
  .cost-calc-title { gap: 8px; }
  .cost-calc-divider { display: none; }
  .cost-calc-title { flex-direction: column; }
  .cost-calc-hours-meta { font-size: 12px; }
}

/* Footnote under the cost calculator */
.cost-calc-foot {
  margin: 20px 0 0;
  padding: 16px 18px;
  background: var(--bg-tint);
  border: 1px dashed rgba(20,152,213,0.30);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
  text-align: center;
}
.cost-calc-foot a {
  color: var(--blue);
  font-weight: 700;
  margin-left: 4px;
  transition: opacity 0.2s;
}
.cost-calc-foot a:hover { opacity: 0.75; }

/* "Make" text-mark fallback — used when no image logo uploaded.
   Styled in Make.com's signature purple-to-pink gradient. */
.crm-platform-header .crm-platform-name {
  background: linear-gradient(135deg, #6D5BFF 0%, #C147E9 70%, #FF7AC4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* =============================================
   WORKFLOW SCENARIO BOARD — compact override (was too tall)
   ============================================= */
.scn { min-height: 360px; }
.scn-header { padding: 10px 14px; }
.scn-header-left { gap: 8px; }
.scn-title { font-size: 12px; }
.scn-meta { font-size: 10px; }
.scn-canvas {
  gap: 8px 28px;
  padding: 18px 12px 14px;
  min-height: 240px;
}
/* Tighter bubbles + labels so the whole board reads at a glance */
.scn-bub-circle { width: 58px; height: 58px; padding: 11px; }
.scn-bub-num { width: 19px; height: 19px; font-size: 10px; top: -5px; right: -5px; }
.scn-bub-label { gap: 0; }
.scn-bub-label strong { font-size: 11.5px; }
.scn-bub-label span { font-size: 10px; }
.scn-footer { padding: 8px 14px; font-size: 10.5px; }
.scn-footer-payload { font-size: 10.5px; padding: 3px 6px; }

@media (max-width: 880px) {
  .scn-bub-circle { width: 46px; height: 46px; padding: 8px; }
}

/* =============================================
   CRM HERO PIPELINE — lock counter widths so the header
   doesn't dance as deal numbers update.
   ============================================= */
.pipe-board-stat,
.pipe-board-stat .pipe-mono,
#pipe-board-count {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.pipe-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pipe-board-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 200px;          /* reserves space so layout doesn't shift */
  justify-content: flex-end;
  white-space: nowrap;
}
#pipe-board-count { display: inline-block; min-width: 70px; text-align: right; }
.pipe-board-stat .pipe-mono { display: inline-block; min-width: 60px; text-align: right; }

/* =============================================
   CRM IMPLEMENTATION PAGE — new sections
   (fit check, migration, comparison, mid-CTA, pricing)
   ============================================= */

/* Shared navy-section helpers */
.section--navy .eyebrow { color: #6DD4F5; }
.section--navy .section-sub strong { color: var(--white); font-weight: 700; }

/* --- Honest fit check --- */
.crm-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.crm-fit-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
}
.crm-fit-col--yes { border-top: 3px solid var(--blue); }
.crm-fit-col--no  { border-top: 3px solid #E2868B; }
.crm-fit-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.crm-fit-head h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
.crm-fit-ic { line-height: 0; flex-shrink: 0; }
.crm-fit-col--yes .crm-fit-ic { color: var(--blue); }
.crm-fit-col--no .crm-fit-ic { color: #D9646B; }
.crm-fit-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.crm-fit-col li { font-size: 14.5px; line-height: 1.55; color: var(--text-mid); padding-left: 18px; position: relative; }
.crm-fit-col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; }
.crm-fit-col--yes li::before { background: var(--blue); }
.crm-fit-col--no li::before { background: #D9646B; }
.crm-fit-col a { color: var(--blue); font-weight: 600; }

/* Rescue callout */
.crm-rescue {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 980px;
  margin: 24px auto 0;
  padding: 22px 26px;
  background: var(--bg-tint);
  border: 1px solid rgba(20,152,213,0.20);
  border-radius: 14px;
}
.crm-rescue-ic { color: var(--blue); flex-shrink: 0; line-height: 0; margin-top: 2px; }
.crm-rescue p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-mid); }
.crm-rescue strong { color: var(--navy); }

/* Phase timeline bands */
.crm-pillar-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  background: rgba(20,152,213,0.08);
  padding: 5px 11px;
  border-radius: 100px;
}

/* --- Migration --- */
.crm-migrate {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.crm-migrate-from {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
}
.crm-migrate-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6DD4F5;
  margin-bottom: 16px;
}
.crm-migrate-sources { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.crm-migrate-sources li {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding: 9px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.crm-migrate-steps { display: flex; flex-direction: column; gap: 14px; }
.crm-migrate-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}
.crm-migrate-step-num {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  background: rgba(20,152,213,0.10);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.crm-migrate-step-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.crm-migrate-step-body p { font-size: 14px; line-height: 1.6; color: var(--text-mid); margin: 0; }

/* --- Platform comparison table (shared: CRM hub + Workflow hub) --- */
.compare { max-width: 1100px; margin: 48px auto 0; }
.compare-title { text-align: center; font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; margin: 0 0 22px; }
.compare-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 760px; }
.compare-table thead th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--off-white);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table tbody td { padding: 16px 18px; border-bottom: 1px solid var(--border); color: var(--text-mid); line-height: 1.5; vertical-align: top; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(20,152,213,0.03); }
.compare-table td strong { color: var(--navy); font-weight: 700; font-size: 15px; }
.compare-foot { text-align: center; margin: 22px auto 0; font-size: 15px; color: var(--text-mid); max-width: 660px; }

/* --- Answer-first intro (GEO: extractable lead answer under hero) --- */
.answer-first { padding: 44px 0 0; }
.answer-first-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.answer-first-lead { font-size: clamp(18px, 2.3vw, 22px); line-height: 1.55; color: var(--navy); font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.answer-first-lead strong { color: var(--blue); font-weight: 800; }
@media (max-width: 680px) { .answer-first { padding: 32px 0 0; } .answer-first-inner { text-align: left; } }

/* --- Mid-page CTA band --- */
.crm-midcta-section { padding: 0 0 64px; }
.crm-midcta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(120deg, var(--blue) 0%, #0E7CB0 100%);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: var(--shadow);
}
.crm-midcta-text { max-width: 640px; }
.crm-midcta-text h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.2; }
.crm-midcta-text p { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,0.90); margin: 0; }
.crm-midcta .btn { flex-shrink: 0; }
.crm-midcta .btn--primary { background: var(--white); color: var(--navy); border-color: var(--white); }
.crm-midcta .btn--primary:hover { background: var(--off-white); }

/* --- Pricing wedge (navy) --- */
.crm-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.crm-price-promise {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(20,152,213,0.10);
  border: 1px solid rgba(109,212,245,0.28);
  border-radius: 16px;
  padding: 28px 30px;
}
.crm-price-ic { color: #6DD4F5; flex-shrink: 0; line-height: 0; margin-top: 2px; }
.crm-price-promise p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.crm-price-promise strong { color: var(--white); font-weight: 700; display: block; margin-bottom: 6px; font-size: 17px; }
.crm-price-never {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px 30px;
}
.crm-price-never-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6DD4F5;
  margin-bottom: 16px;
}
.crm-price-never ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.crm-price-never li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.45;
}
.crm-price-never li svg { flex-shrink: 0; color: #6DD4F5; }
.crm-price-foot { text-align: center; margin: 36px 0 0; }
.crm-price-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6DD4F5;
  font-weight: 600;
  font-size: 15px;
}
.crm-price-foot a svg { transition: transform 0.2s ease; }
.crm-price-foot a:hover svg { transform: translateX(4px); }

/* --- CRM page responsive --- */
@media (max-width: 900px) {
  .crm-fit { grid-template-columns: 1fr; max-width: 540px; }
  .crm-migrate { grid-template-columns: 1fr; max-width: 560px; }
  .crm-price { grid-template-columns: 1fr; max-width: 560px; }
  .crm-midcta { flex-direction: column; align-items: flex-start; padding: 32px; }
}
@media (max-width: 680px) {
  .compare-scroll { overflow-x: visible; border: none; }
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td { display: block; width: 100%; }
  .compare-table tr {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 16px;
    padding: 6px 4px;
  }
  .compare-table td { border-bottom: 1px solid var(--border); padding: 10px 16px; }
  .compare-table tr td:last-child { border-bottom: none; }
  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .compare-table td[data-label="Platform"]::before { display: none; }
  .compare-table td[data-label="Platform"] strong { font-size: 17px; }
}

/* ===================================================================
   CRM · Real client reviews (verbatim from Trustpilot)
   =================================================================== */
.crm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.crm-review {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.crm-review-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5A623;
  line-height: 0;
  margin-bottom: 14px;
}
.crm-review-quote {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  font-size: 0.97rem;
  line-height: 1.62;
  color: var(--text-dark);
}
.crm-review-quote::before { content: "\201C"; }
.crm-review-quote::after { content: "\201D"; }
.crm-review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.crm-review-author {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.crm-review-loc {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.crm-review-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--blue);
  background: rgba(20, 152, 213, 0.08);
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Trustpilot "read all reviews" badge button — shared component (CRM page + home reviews) */
.sa-tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sa-tp-btn:hover {
  border-color: #00B67A;
  box-shadow: 0 8px 22px rgba(0, 182, 122, 0.18);
  transform: translateY(-2px);
}
.sa-tp-stars {
  display: inline-flex;
  gap: 2px;
  color: #00B67A;
  line-height: 0;
}
.sa-tp-label strong { color: #00B67A; font-weight: 700; }
.sa-tp-arrow {
  display: inline-flex;
  line-height: 0;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.sa-tp-btn:hover .sa-tp-arrow { transform: translateX(4px); }

@media (max-width: 980px) {
  .crm-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .crm-reviews-grid { grid-template-columns: 1fr; }
}

/* =============================================
   THANK-YOU (post-payment) — no hero, centred success layout
   ============================================= */
.thankyou { padding: 150px 0 90px; }
.thankyou-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.thankyou-art {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 30px;
}
.thankyou-title {
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 14px;
}
.thankyou-msg { font-size: 18px; color: var(--text-dark); margin: 0 0 26px; }
.thankyou-btn { margin-bottom: 26px; }
.thankyou-contact { font-size: 18px; color: var(--text-dark); margin: 0; }
@media (max-width: 600px) {
  .thankyou { padding: 120px 0 70px; }
  .thankyou-msg, .thankyou-contact { font-size: 16px; }
}

/* =============================================
   GENERIC PAGE (legal / policy / utility) — light, no dark hero
   ============================================= */
.page-body { padding: 140px 0 90px; }
.page-body-container { max-width: 820px; }
.page-body-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 28px;
}
.page-content { font-size: 17px; line-height: 1.75; color: var(--text-dark); }
/* Restore document formatting recovered from the legacy pages (paragraphs, lists, links) */
.page-content p,
.page-content div { margin: 0 0 1rem; }
.page-content h2 { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1.25; margin: 2.2rem 0 .7rem; }
.page-content h3 { font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.3;  margin: 2rem 0 .6rem; }
.page-content h4 { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.35; margin: 1.5rem 0 .5rem; }
.page-content ul,
.page-content ol { margin: 0 0 1rem; padding-left: 1.6rem; }
.page-content ul    { list-style: disc; }
.page-content ol    { list-style: decimal; }
.page-content ul ul { list-style: circle; margin: .5rem 0; }
.page-content li    { margin: 0 0 .5rem; }
.page-content a     { color: var(--blue); text-decoration: underline; }
.page-content a:hover { text-decoration: none; }
.page-content strong, .page-content b { font-weight: 700; }
@media (max-width: 600px) {
  .page-body { padding: 110px 0 60px; }
}

/* =============================================
   AI AGENTS — pattern showcase (rotating tabs) + build flow
   ============================================= */
.ai-pat { max-width: 920px; margin: 0 auto; }
.ai-pat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.ai-pat-tab { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px; border: 1px solid var(--border); background: var(--white); color: var(--text-dark); font-size: 14px; font-weight: 600; line-height: 1.2; cursor: pointer; transition: background .2s, border-color .2s, color .2s, box-shadow .2s; }
.ai-pat-tab:hover { border-color: var(--blue); color: var(--blue); }
.ai-pat-tab.is-active { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(20,152,213,0.28); }
.ai-pat-tab-ic { display: inline-flex; flex-shrink: 0; color: var(--blue); }
.ai-pat-tab.is-active .ai-pat-tab-ic { color: var(--white); }
.ai-pat-tab-label { line-height: 1.2; }
.ai-pat-stage { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 34px; box-shadow: 0 10px 34px rgba(15,30,45,0.06); overflow: hidden; }
.ai-pat-panel { display: none; }
.ai-pat-panel.is-active { display: block; animation: aiPatFade .4s ease; }
@keyframes aiPatFade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.ai-pat-panel-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.ai-pat-panel-ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--bg-tint); color: var(--blue); flex-shrink: 0; }
.ai-pat-panel-head h3 { font-size: 22px; font-weight: 700; color: var(--navy); }
.ai-pat-panel-desc { font-size: 16px; line-height: 1.6; color: var(--text-dark); opacity: .85; margin-bottom: 18px; max-width: 740px; }
.ai-pat-panel-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.ai-pat-panel-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; line-height: 1.5; color: var(--text-dark); }
.ai-pat-panel-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 600px) {
  .ai-pat-stage { padding: 24px; }
  .ai-pat-panel-list { grid-template-columns: 1fr; }
  .ai-pat-tab { font-size: 13px; padding: 8px 13px; }
}

/* AI build process — connected horizontal flow */
.ai-flow { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin: 0; padding: 0; }
.ai-flow-step { position: relative; text-align: center; }
.ai-flow-node { width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 21px; font-weight: 800; position: relative; z-index: 1; }
.ai-flow-step:not(:last-child)::after { content: ''; position: absolute; top: 27px; left: 50%; width: calc(100% + 22px); height: 2px; background: var(--border); z-index: 0; }
.ai-flow-step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ai-flow-step p { font-size: 14.5px; line-height: 1.55; color: var(--text-dark); opacity: .85; }
@media (max-width: 860px) {
  .ai-flow { grid-template-columns: 1fr; gap: 0; max-width: 560px; margin: 0 auto; }
  .ai-flow-step { display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; text-align: left; padding-bottom: 26px; }
  .ai-flow-node { margin: 0; }
  .ai-flow-step:not(:last-child)::after { top: 54px; left: 26px; width: 2px; height: calc(100% - 54px); }
  .ai-flow-body { padding-top: 13px; }
}

/* AI deliverables — checklist panel (distinct from the guardrails card grid) */
.ai-deliver { list-style: none; margin: 0 auto; padding: 14px; max-width: 940px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 34px rgba(15,30,45,0.06); display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ai-deliver-item { display: flex; align-items: flex-start; gap: 13px; padding: 16px 18px; border-radius: var(--radius-sm); transition: background .2s; }
.ai-deliver-item:hover { background: var(--bg-tint); }
.ai-deliver-check { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: var(--white); margin-top: 1px; }
.ai-deliver-text { display: flex; flex-direction: column; gap: 3px; }
.ai-deliver-text strong { font-size: 15.5px; font-weight: 700; color: var(--navy); }
.ai-deliver-text span { font-size: 14px; line-height: 1.5; color: var(--text-dark); opacity: .82; }
@media (max-width: 740px) {
  .ai-deliver { grid-template-columns: 1fr; }
}
