/* ============================================================
   Communio Digital — WordPress theme styles
   Tokens lifted from the Communio design system:
   primary = sky, neutrals = slate, semantics green/amber/red,
   Inter, radius lg/xl, soft shadows, 200ms motion.
   ============================================================ */

:root {
  --c-primary-50: #f0f9ff; --c-primary-100: #e0f2fe; --c-primary-200: #bae6fd;
  --c-primary-300: #7dd3fc; --c-primary-400: #38bdf8; --c-primary-500: #0ea5e9;
  --c-primary-600: #0284c7; --c-primary-700: #0369a1; --c-primary-800: #075985;
  --c-primary-900: #0c4a6e; --c-primary-950: #082f49;
  --c-slate-50: #f8fafc; --c-slate-100: #f1f5f9; --c-slate-200: #e2e8f0;
  --c-slate-300: #cbd5e1; --c-slate-400: #94a3b8; --c-slate-500: #64748b;
  --c-slate-600: #475569; --c-slate-700: #334155; --c-slate-800: #1e293b;
  --c-slate-900: #0f172a; --c-slate-950: #020617;
  --c-success-50: #f0fdf4; --c-success-100: #dcfce7; --c-success-200: #bbf7d0;
  --c-success-500: #22c55e; --c-success-600: #16a34a; --c-success-700: #15803d;
  --c-warning-50: #fffbeb; --c-warning-100: #fef3c7; --c-warning-500: #f59e0b; --c-warning-700: #b45309;
  --c-danger-50: #fef2f2; --c-danger-100: #fee2e2; --c-danger-500: #ef4444; --c-danger-700: #b91c1c;
  --ch-whatsapp: #25d366; --ch-instagram: #e4405f; --ch-messenger: #0084ff;
  --ch-telegram: #0088cc; --ch-chat: #6366f1; --ch-email: #0078d4;
  --ch-sms: #f59e0b; --ch-phone: #6b7280;
  --node-start: #22c55e; --node-start-soft: #dcfce7;
  --node-message: #3b82f6; --node-message-soft: #dbeafe;
  --node-question: #8b5cf6; --node-question-soft: #ede9fe;
  --node-menu: #f59e0b; --node-menu-soft: #fef3c7;
  --node-queue: #14b8a6; --node-queue-soft: #ccfbf1;
  --node-end: #64748b; --node-end-soft: #f1f5f9;
  --radius-sm: 4px; --radius-md: 6px; --radius-lg: 8px; --radius-xl: 12px;
  --radius-2xl: 16px; --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: var(--c-slate-900); background: #fff;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--c-primary-600); }
a:hover { color: var(--c-primary-700); }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--c-slate-900); text-wrap: balance; }
p { text-wrap: pretty; }

.cmu-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.cmu-eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.025em; color: var(--c-primary-600);
}
.cmu-section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.cmu-section-head h2 { font-size: 38px; line-height: 1.15; margin-top: 12px; }
.cmu-section-head p { margin: 14px 0 0; font-size: 18px; color: var(--c-slate-600); }

/* ---- Buttons ----------------------------------------------- */
.cmu-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  height: 40px; padding: 0 18px; border-radius: var(--radius-lg);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.cmu-btn-sm { height: 34px; padding: 0 14px; font-size: 13px; }
.cmu-btn-lg { height: 48px; padding: 0 24px; font-size: 16px; border-radius: var(--radius-lg); }
.cmu-btn-primary { background: var(--c-primary-600); color: #fff; }
.cmu-btn-primary:hover { background: var(--c-primary-700); color: #fff; }
.cmu-btn-outline { background: #fff; color: var(--c-slate-700); border-color: var(--c-slate-300); }
.cmu-btn-outline:hover { background: var(--c-slate-50); color: var(--c-slate-900); }
.cmu-btn-ghost { background: transparent; color: var(--c-slate-600); }
.cmu-btn-ghost:hover { background: var(--c-slate-100); color: var(--c-slate-900); }
.cmu-btn-ghost-light { background: transparent; color: #fff; }
.cmu-btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.cmu-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--c-primary-500), 0 0 0 4px #fff; }

/* ---- Header / nav ------------------------------------------ */
.cmu-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-slate-200);
  transition: box-shadow 0.2s var(--ease);
}
.cmu-header.is-scrolled { box-shadow: var(--shadow-sm); }
.cmu-header-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cmu-logo { display: inline-flex; align-items: center; }
.cmu-logo img { height: 28px; width: auto; }
.cmu-nav { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.cmu-nav a {
  position: relative; padding: 6px 1px; font-size: 14px; font-weight: 500;
  color: var(--c-slate-600); text-decoration: none; transition: color 0.2s var(--ease);
}
.cmu-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  border-radius: 1px; background: var(--c-primary-500);
  transition: right 0.22s var(--ease-out);
}
.cmu-nav a:hover { color: var(--c-slate-900); }
.cmu-nav a:hover::after { right: 0; }
.cmu-header-actions { display: flex; align-items: center; gap: 10px; }
.cmu-menu-toggle { display: none; background: none; border: none; padding: 8px; color: var(--c-slate-700); cursor: pointer; }

@media (max-width: 860px) {
  .cmu-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--c-slate-200); box-shadow: var(--shadow-lg);
    padding: 8px 0;
  }
  .cmu-nav.is-open { display: flex; }
  .cmu-nav li a { display: block; padding: 12px 28px; }
  .cmu-nav a::after { display: none; }
  .cmu-menu-toggle { display: inline-flex; }
  .cmu-header-actions .cmu-btn-ghost { display: none; }
}

/* ---- Hero --------------------------------------------------- */
.cmu-hero { background: linear-gradient(180deg, var(--c-primary-50) 0%, #fff 70%); overflow: hidden; }
.cmu-hero-grid {
  display: grid; grid-template-columns: 1fr 1.08fr; gap: 56px; align-items: center;
  padding: 72px 0 96px;
}
.cmu-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px;
  border-radius: var(--radius-full); background: #fff; border: 1px solid var(--c-slate-200);
  box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 600; color: var(--c-primary-700);
}
.cmu-hero h1 { margin: 20px 0 0; font-size: 56px; line-height: 1.04; letter-spacing: -0.025em; }
.cmu-hero-sub { margin: 22px 0 0; font-size: 18px; line-height: 1.6; color: var(--c-slate-600); max-width: 480px; }
.cmu-hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.cmu-hero-channels { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.cmu-hero-channels .cmu-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.025em; color: var(--c-slate-400); }
@media (max-width: 980px) {
  .cmu-hero-grid { grid-template-columns: 1fr; padding: 56px 0 72px; }
  .cmu-hero h1 { font-size: 40px; }
}

/* ---- Channel badges & chips --------------------------------- */
.cmu-ch {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--radius-full); color: var(--ch-color, var(--c-primary-600));
  background: var(--ch-soft, rgba(2, 132, 199, 0.12));
}
.cmu-ch-md { width: 28px; height: 28px; }
.cmu-ch-md svg { width: 16px; height: 16px; }
.cmu-ch-sm { width: 26px; height: 26px; }
.cmu-ch-sm svg { width: 14px; height: 14px; }
.cmu-ch-label { width: auto; height: auto; padding: 4px 12px; }
.cmu-ch-label svg { width: 20px; height: 20px; }
.cmu-ch-label span { font-size: 15px; font-weight: 500; }
.cmu-chip {
  display: inline-flex; padding: 3px; border-radius: var(--radius-full);
  border: 1px solid var(--c-slate-200); background: #fff; text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, border-color 0.2s;
}
.cmu-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary-200); }
.cmu-channel-strip { padding: 56px 0; border-bottom: 1px solid var(--c-slate-100); }
.cmu-channel-strip .cmu-strip-label {
  text-align: center; margin: 0; font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.025em; color: var(--c-slate-500);
}
.cmu-channel-strip .cmu-strip-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }

/* ---- Grids & cards ------------------------------------------ */
.cmu-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cmu-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cmu-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) {
  .cmu-grid-2 { grid-template-columns: 1fr; }
  .cmu-grid-3 { grid-template-columns: 1fr; }
  .cmu-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.cmu-feature {
  display: block; text-decoration: none; background: #fff;
  border: 1px solid var(--c-slate-200); border-radius: var(--radius-xl);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
a.cmu-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-primary-200); }
.cmu-feature-icon {
  width: 46px; height: 46px; border-radius: var(--radius-lg);
  background: var(--c-primary-50); color: var(--c-primary-600);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
a.cmu-feature:hover .cmu-feature-icon { background: var(--c-primary-600); color: #fff; transform: scale(1.06); }
.cmu-feature h3 { margin: 16px 0 0; font-size: 18px; font-weight: 600; }
.cmu-feature p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--c-slate-600); }
.cmu-feature-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--c-primary-600);
}
.cmu-feature-cta svg { transition: transform 0.25s var(--ease-out); }
a.cmu-feature:hover .cmu-feature-cta svg { transform: translateX(4px); }

/* ---- Steps --------------------------------------------------- */
.cmu-steps { position: relative; margin-top: 52px; gap: 32px; }
.cmu-steps::before {
  content: ''; position: absolute; top: 27px; left: 18%; right: 18%;
  border-top: 2px dashed var(--c-slate-200);
}
.cmu-step { text-align: center; position: relative; }
.cmu-step-icon {
  position: relative; width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-primary-200); box-shadow: var(--shadow-sm);
  color: var(--c-primary-600); display: inline-flex; align-items: center; justify-content: center;
}
.cmu-step-num {
  position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-primary-600); color: #fff; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.cmu-step h3 { margin: 18px 0 0; font-size: 18px; font-weight: 600; }
.cmu-step p { margin: 8px auto 0; max-width: 300px; font-size: 14px; line-height: 1.6; color: var(--c-slate-600); }
@media (max-width: 980px) { .cmu-steps::before { display: none; } }

/* ---- Flow nodes ---------------------------------------------- */
.cmu-flow-canvas {
  background: var(--c-slate-50); border: 1px solid var(--c-slate-200);
  border-radius: var(--radius-xl); padding: 28px;
  background-image: radial-gradient(var(--c-slate-200) 1px, transparent 1px);
  background-size: 18px 18px;
}
.cmu-flow-stack { display: flex; flex-direction: column; align-items: center; }
.cmu-flow-node {
  width: 240px; background: #fff; border: 2px solid var(--nd-color, var(--c-primary-500));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden;
}
.cmu-flow-node-head { display: flex; align-items: center; gap: 9px; padding: 9px 12px; background: var(--nd-soft, var(--c-primary-50)); }
.cmu-flow-node-head .cmu-nd-icon {
  width: 24px; height: 24px; border-radius: var(--radius-md); background: #fff;
  color: var(--nd-color, var(--c-primary-500)); display: inline-flex; align-items: center; justify-content: center;
}
.cmu-flow-node-head span:last-child { font-size: 14px; font-weight: 600; color: var(--c-slate-900); }
.cmu-flow-link { width: 2px; height: 20px; background: var(--c-slate-300); }
.cmu-checklist { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cmu-checklist li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--c-slate-700); }
.cmu-checklist .cmu-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--c-success-100);
  color: var(--c-success-600); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---- Stats band ----------------------------------------------- */
.cmu-stats-band { background: linear-gradient(135deg, var(--c-primary-600), var(--c-primary-700)); }
.cmu-stats-band .cmu-container { padding-top: 56px; padding-bottom: 56px; }
.cmu-stat { text-align: center; }
.cmu-stat-value { font-size: 44px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.cmu-stat-label { margin-top: 6px; font-size: 14px; color: var(--c-primary-100); }
.cmu-stats-white { padding: 64px 0; }
.cmu-stats-white .cmu-stat-value { color: var(--c-slate-900); }
.cmu-stats-white .cmu-stat-label { color: var(--c-slate-500); }
.cmu-stats-source { margin-top: 28px; text-align: center; font-size: 12px; color: var(--c-slate-400); }

/* ---- Dark CTA -------------------------------------------------- */
.cmu-cta-section { padding: 88px 0; }
.cmu-cta-box {
  background: radial-gradient(640px 320px at 82% -20%, rgba(14, 165, 233, 0.26), transparent 65%), var(--c-slate-900);
  border-radius: 24px; padding: 60px 48px; text-align: center; overflow: hidden; position: relative;
}
.cmu-cta-box h2 { font-size: 40px; color: #fff; }
.cmu-cta-box p { margin: 16px auto 0; max-width: 520px; font-size: 18px; color: var(--c-slate-300); line-height: 1.6; }
.cmu-cta-box .cmu-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.cmu-cta-box .cmu-cta-channels { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }

/* ---- Footer ----------------------------------------------------- */
.cmu-footer { background: var(--c-slate-950); padding-top: 56px; }
.cmu-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.cmu-footer-about p { margin: 16px 0 0; font-size: 14px; line-height: 1.6; color: var(--c-slate-400); max-width: 260px; }
.cmu-footer h4 {
  margin: 0; font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.025em; color: var(--c-slate-500);
}
.cmu-footer ul { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cmu-footer ul a { font-size: 14px; color: var(--c-slate-400); text-decoration: none; transition: color 0.2s var(--ease); }
.cmu-footer ul a:hover { color: #fff; }
.cmu-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 0; border-top: 1px solid var(--c-slate-800);
  font-size: 12px; color: var(--c-slate-500);
}
@media (max-width: 860px) { .cmu-footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Browser mockup / chat -------------------------------------- */
.cmu-mock { position: relative; }
.cmu-mock-window {
  border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid var(--c-slate-200);
  box-shadow: 0 32px 80px -24px rgba(15, 23, 42, 0.32), var(--shadow-md);
}
.cmu-mock-chrome { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--c-slate-50); border-bottom: 1px solid var(--c-slate-200); }
.cmu-mock-chrome .dot { width: 10px; height: 10px; border-radius: 50%; }
.cmu-mock-chrome .url { margin-left: 10px; font-size: 11px; color: var(--c-slate-400); font-family: ui-monospace, monospace; }
.cmu-mock-body { display: flex; min-height: 380px; }
.cmu-mock-list { width: 188px; border-right: 1px solid var(--c-slate-200); flex-shrink: 0; }
.cmu-mock-list-head { padding: 10px 12px 8px; border-bottom: 1px solid var(--c-slate-200); font-size: 12px; font-weight: 600; }
.cmu-convo { display: flex; gap: 8px; align-items: center; padding: 8px 10px; border-bottom: 1px solid var(--c-slate-100); border-left: 2px solid transparent; }
.cmu-convo.is-active { border-left-color: var(--c-primary-500); background: var(--c-primary-50); }
.cmu-convo .meta { flex: 1; min-width: 0; }
.cmu-convo .row1 { display: flex; justify-content: space-between; gap: 4px; align-items: baseline; }
.cmu-convo .name { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmu-convo .time { font-size: 9px; color: var(--c-slate-400); flex-shrink: 0; }
.cmu-convo .preview { font-size: 10px; color: var(--c-slate-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmu-convo .unread {
  width: 15px; height: 15px; border-radius: 50%; background: var(--c-primary-500); color: #fff;
  font-size: 9px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmu-mock-chat { flex: 1; display: flex; flex-direction: column; background: var(--c-slate-50); min-width: 0; }
.cmu-mock-chat-head { display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: #fff; border-bottom: 1px solid var(--c-slate-200); }
.cmu-avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--c-primary-100); color: var(--c-primary-600);
  display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.cmu-mock-chat-head .who { font-size: 11px; font-weight: 600; }
.cmu-status-pill {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 600;
  color: var(--c-success-700); background: var(--c-success-50); border: 1px solid var(--c-success-200);
  border-radius: var(--radius-full); padding: 2px 8px;
}
.cmu-status-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-success-500); }
.cmu-mock-msgs { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; justify-content: flex-end; }
.cmu-bubble { display: flex; }
.cmu-bubble > div {
  max-width: 78%; padding: 7px 11px; font-size: 11px; line-height: 1.45; border-radius: 12px;
  background: #fff; color: var(--c-slate-800); border: 1px solid var(--c-slate-200); border-top-left-radius: 3px;
}
.cmu-bubble.out { justify-content: flex-end; }
.cmu-bubble.out > div { background: var(--c-primary-500); color: #fff; border: none; border-radius: 12px; border-top-right-radius: 3px; }
.cmu-bubble.bot > div { background: var(--c-primary-50); border-color: var(--c-primary-200); color: var(--c-slate-800); }
.cmu-mock-composer { display: flex; align-items: center; gap: 8px; padding: 10px; background: #fff; border-top: 1px solid var(--c-slate-200); color: var(--c-slate-400); }
.cmu-mock-composer .field {
  flex: 1; height: 30px; border-radius: var(--radius-lg); border: 1px solid var(--c-slate-300);
  display: flex; align-items: center; padding: 0 10px; font-size: 11px; color: var(--c-slate-400);
}
.cmu-mock-composer .send {
  width: 30px; height: 30px; border-radius: var(--radius-lg); background: var(--c-primary-600); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmu-float-card {
  position: absolute; display: flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--c-slate-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 9px 13px; animation: cmuFloat 6s ease-in-out infinite;
}
.cmu-float-card .t1 { font-size: 11px; font-weight: 600; }
.cmu-float-card .t2 { font-size: 10px; color: var(--c-slate-500); }
.cmu-float-1 { top: -18px; right: -16px; }
.cmu-float-2 { bottom: -20px; left: -18px; animation-duration: 7.5s; animation-delay: 0.8s; }
@keyframes cmuFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.cmu-bubble-enter { animation: cmuBubble 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes cmuBubble { from { opacity: 0; transform: translateY(8px) scale(0.97); } to { opacity: 1; transform: none; } }
.cmu-typing > div { display: inline-flex; gap: 4px; align-items: center; padding: 9px 12px; }
.cmu-typing.out > div { background: var(--c-primary-100); }
.cmu-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-slate-400); animation: cmuDot 1s ease-in-out infinite; }
.cmu-dot:nth-child(2) { animation-delay: 0.15s; }
.cmu-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes cmuDot { 0%, 60%, 100% { opacity: 0.35; transform: none; } 30% { opacity: 1; transform: translateY(-2px); } }
@media (max-width: 980px) { .cmu-float-1, .cmu-float-2 { display: none; } }

/* ---- FAQ accordion ----------------------------------------------- */
.cmu-faq { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.cmu-faq-item { background: #fff; border: 1px solid var(--c-slate-200); border-radius: var(--radius-xl); overflow: hidden; }
.cmu-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--c-slate-900);
}
.cmu-faq-q svg { flex-shrink: 0; color: var(--c-slate-400); transition: transform 0.2s var(--ease); }
.cmu-faq-item.is-open .cmu-faq-q svg { transform: rotate(180deg); }
.cmu-faq-a { display: none; padding: 0 22px 18px; font-size: 15px; line-height: 1.65; color: var(--c-slate-600); }
.cmu-faq-item.is-open .cmu-faq-a { display: block; }

/* ---- Forms --------------------------------------------------------- */
.cmu-form { display: flex; flex-direction: column; gap: 16px; }
.cmu-form label { font-size: 14px; font-weight: 500; color: var(--c-slate-700); display: block; margin-bottom: 6px; }
.cmu-form input[type="text"], .cmu-form input[type="email"], .cmu-form select, .cmu-form textarea {
  width: 100%; font-family: var(--font-sans); font-size: 14px; color: var(--c-slate-900);
  background: #fff; border: 1px solid var(--c-slate-300); border-radius: var(--radius-lg);
  padding: 10px 12px; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cmu-form textarea { min-height: 130px; resize: vertical; }
.cmu-form input:focus, .cmu-form select:focus, .cmu-form textarea:focus {
  outline: none; border-color: var(--c-primary-500); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}
.cmu-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .cmu-form-row { grid-template-columns: 1fr; } }
.cmu-alert { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-lg); font-size: 14px; line-height: 1.5; }
.cmu-alert-success { background: var(--c-success-50); border: 1px solid var(--c-success-200); color: var(--c-success-700); }
.cmu-alert-danger { background: var(--c-danger-50); border: 1px solid var(--c-danger-100); color: var(--c-danger-700); }

/* ---- Pricing --------------------------------------------------------- */
.cmu-billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border-radius: var(--radius-full); background: var(--c-slate-100); border: 1px solid var(--c-slate-200);
}
.cmu-billing-toggle button {
  display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 16px;
  border-radius: var(--radius-full); border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  background: transparent; color: var(--c-slate-500); transition: all 0.2s var(--ease);
}
.cmu-billing-toggle button.is-active { background: #fff; color: var(--c-slate-900); box-shadow: var(--shadow-sm); }
.cmu-billing-toggle .off {
  font-size: 10px; font-weight: 700; color: var(--c-success-700);
  background: var(--c-success-100); border-radius: var(--radius-full); padding: 2px 7px;
}
.cmu-plan {
  position: relative; background: #fff; border: 1px solid var(--c-slate-200);
  border-radius: var(--radius-xl); padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.25s;
}
.cmu-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cmu-plan.is-highlight { border: 2px solid var(--c-primary-500); }
.cmu-plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary-600); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-full); white-space: nowrap;
}
.cmu-plan h3 { font-size: 20px; font-weight: 600; }
.cmu-plan .tagline { margin: 6px 0 0; font-size: 14px; color: var(--c-slate-500); min-height: 42px; }
.cmu-plan .price-row { display: flex; align-items: baseline; gap: 4px; margin-top: 18px; }
.cmu-plan .currency { font-size: 18px; font-weight: 600; }
.cmu-plan .price { font-size: 48px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.cmu-plan .per { font-size: 14px; color: var(--c-slate-500); }
.cmu-plan .custom { font-size: 28px; font-weight: 700; margin-top: 22px; }
.cmu-plan ul { margin: 24px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.cmu-plan ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--c-slate-700); }
.cmu-plan ul .cmu-check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--c-slate-100); color: var(--c-slate-500);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmu-plan.is-highlight ul .cmu-check { background: var(--c-primary-50); color: var(--c-primary-600); }
.cmu-plan .cmu-btn { margin-top: 26px; width: 100%; }
.cmu-compare { border: 1px solid var(--c-slate-200); border-radius: var(--radius-xl); overflow: hidden; background: #fff; overflow-x: auto; }
.cmu-compare table { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmu-compare th { text-align: left; padding: 16px 20px; font-size: 14px; background: var(--c-slate-50); }
.cmu-compare th:first-child { color: var(--c-slate-500); font-weight: 600; width: 34%; }
.cmu-compare td { padding: 13px 20px; font-size: 14px; color: var(--c-slate-700); border-top: 1px solid var(--c-slate-100); }
.cmu-compare tr.section td {
  background: var(--c-slate-50); font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.025em; color: var(--c-slate-500); padding: 10px 20px;
}
.cmu-compare tr:not(.section):hover td { background: var(--c-slate-50); }
.cmu-compare .yes { color: var(--c-success-600); }
.cmu-compare .no { color: var(--c-slate-300); }

/* ---- Anchor stat card (hero das páginas internas) ------------------- */
.cmu-anchor-card {
  background: #fff; border: 1px solid var(--c-slate-200); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 32px 36px; text-align: center;
}
.cmu-anchor-card .value { font-size: 64px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--accent, var(--c-primary-600)); }
.cmu-anchor-card .label { margin-top: 10px; font-size: 16px; font-weight: 600; color: var(--c-slate-900); }
.cmu-anchor-card .foot { margin-top: 4px; font-size: 13px; color: var(--c-slate-500); }
.cmu-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.cmu-hero-pills span {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-full);
  background: var(--accent-soft, var(--c-primary-50)); color: var(--accent-deep, var(--c-primary-700));
}

/* ---- Page (conteúdo do editor: privacidade, termos) ------------------- */
.cmu-page-content { max-width: 760px; margin: 0 auto; padding: 56px 28px 88px; }
.cmu-page-content h1 { font-size: 40px; margin-bottom: 8px; }
.cmu-page-content h2 { font-size: 24px; margin: 40px 0 0; }
.cmu-page-content h3 { font-size: 19px; margin: 28px 0 0; }
.cmu-page-content p, .cmu-page-content li { font-size: 16px; line-height: 1.7; color: var(--c-slate-700); }
.cmu-page-meta { font-size: 14px; color: var(--c-slate-400); margin: 0 0 32px; }

/* ---- Reveal animations -------------------------------------------------- */
.cmu-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s var(--ease-out); }
.cmu-reveal.is-in { opacity: 1; transform: none; }
.cmu-reveal[data-delay="1"] { transition-delay: 0.08s; }
.cmu-reveal[data-delay="2"] { transition-delay: 0.16s; }
.cmu-reveal[data-delay="3"] { transition-delay: 0.24s; }
.cmu-reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .cmu-reveal { opacity: 1; transform: none; transition: none; }
  .cmu-float-card { animation: none; }
  .cmu-bubble-enter, .cmu-dot { animation: none; }
  html { scroll-behavior: auto; }
}
.no-js .cmu-reveal { opacity: 1; transform: none; }

/* ---- Utilidades ----------------------------------------------------------- */
.cmu-section { padding: 88px 0; }
.cmu-section-tight { padding: 56px 0; }
.cmu-bg-slate { background: var(--c-slate-50); }
.cmu-center { text-align: center; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; position: absolute !important;
}
