/* ============================================================================
   HelpChatly — Marketing Design System  (hc-marketing.css)
   Stripe-style light aesthetic on the existing brand (#CC0000).
   Scope: PUBLIC marketing pages only. All classes are `hc-` prefixed so the
   legacy landing.css (`lp-`) keeps working until each page is migrated.
   No emojis anywhere — icons are Bootstrap Icons (<i class="bi ...">).
   ============================================================================ */

/* ─────────────────────────────────────────────  01 · TOKENS  ── */
:root {
  /* Brand */
  --hc-red:            #CC0000;
  --hc-red-600:        #b30000;
  --hc-red-700:        #990000;
  --hc-red-tint:       #fff1f1;
  --hc-red-glow:       rgba(204, 0, 0, .28);

  /* Ink (slate) */
  --hc-ink:            #0b1220;   /* strongest headings           */
  --hc-ink-2:         #1e293b;   /* headings                     */
  --hc-body:           #475569;   /* body text                    */
  --hc-muted:          #64748b;   /* secondary                    */
  --hc-faint:          #94a3b8;   /* captions                     */

  /* Surfaces */
  --hc-white:          #ffffff;
  --hc-bg:             #ffffff;
  --hc-bg-soft:        #f8fafc;
  --hc-bg-softer:      #f1f5f9;
  --hc-ink-surface:    #0b1220;   /* dark blocks (footer/CTA)     */

  /* Lines */
  --hc-line:           #e7ebf0;
  --hc-line-2:         #eef1f5;
  --hc-line-strong:    #d8dee6;

  /* Radius */
  --hc-r-xs: 8px;  --hc-r-sm: 12px;  --hc-r-md: 16px;
  --hc-r-lg: 22px; --hc-r-xl: 28px;  --hc-r-pill: 999px;

  /* Shadow (soft, layered — Stripe-like) */
  --hc-sh-xs:  0 1px 2px rgba(16,24,40,.06);
  --hc-sh-sm:  0 2px 8px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
  --hc-sh-md:  0 10px 30px -12px rgba(16,24,40,.16), 0 4px 10px -6px rgba(16,24,40,.08);
  --hc-sh-lg:  0 30px 60px -20px rgba(16,24,40,.22), 0 12px 24px -14px rgba(16,24,40,.12);
  --hc-sh-red: 0 12px 26px -8px var(--hc-red-glow);

  /* Type */
  --hc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hc-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --hc-container: 1200px;
  --hc-gutter: 24px;
  --hc-section-y: 104px;
  --hc-nav-h: 70px;

  /* Motion */
  --hc-ease: cubic-bezier(.22, 1, .36, 1);
  --hc-ease-out: cubic-bezier(.16, 1, .3, 1);
  --hc-dur: .55s;
}

/* ─────────────────────────────────────────────  02 · BASE  ── */
html { margin: 0; }
.hc { margin: 0; background: var(--hc-white); color: var(--hc-body); font-family: var(--hc-font); -webkit-font-smoothing: antialiased; }
.hc *, .hc *::before, .hc *::after { box-sizing: border-box; }
.hc img, .hc svg { max-width: 100%; display: block; }
/* zero-specificity base so component colors (buttons=#fff, links=red) always win */
:where(.hc a) { color: inherit; text-decoration: none; }
/* global cosmetic smoothness — every hover/state change eases. Zero-specificity
   (:where) so component + scroll-reveal transitions always override this. */
:where(.hc *) { transition: color .2s var(--hc-ease), background-color .2s var(--hc-ease), border-color .2s var(--hc-ease), box-shadow .2s var(--hc-ease), transform .2s var(--hc-ease); }

/* zero-specificity base resets so component classes (margins, sizes) always win */
:where(.hc h1, .hc h2, .hc h3, .hc h4) {
  color: var(--hc-ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
}
:where(.hc p) { margin: 0; }

/* Fluid display scale */
.hc-display { font-size: clamp(2.4rem, 1.4rem + 3.4vw, 4.05rem); font-weight: 850; letter-spacing: -.032em; line-height: 1.02; }
.hc-h1 { font-size: clamp(2rem, 1.3rem + 2.2vw, 3rem); letter-spacing: -.028em; }
.hc-h2 { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem); letter-spacing: -.026em; }
.hc-h3 { font-size: clamp(1.25rem, 1.05rem + .6vw, 1.6rem); letter-spacing: -.02em; }
.hc-lead { font-size: clamp(1.06rem, 1rem + .35vw, 1.28rem); line-height: 1.62; color: var(--hc-muted); }

/* ─────────────────────────────────────────────  03 · LAYOUT  ── */
.hc-container { width: 100%; max-width: var(--hc-container); margin-inline: auto; padding-inline: var(--hc-gutter); }
.hc-section { padding-block: var(--hc-section-y); position: relative; }
.hc-section--tight { padding-block: 72px; }
.hc-bg-soft { background: var(--hc-bg-soft); }
.hc-bg-softer { background: var(--hc-bg-softer); }

/* Section header */
.hc-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.hc-head--left { text-align: left; margin-inline: 0; }
.hc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  color: var(--hc-red); background: var(--hc-red-tint);
  border: 1px solid rgba(204,0,0,.14);
  padding: 6px 14px; border-radius: var(--hc-r-pill); margin-bottom: 18px;
}
.hc-eyebrow .bi { font-size: .95em; }
.hc-head p { margin-top: 16px; }
.hc-head .hc-lead { color: var(--hc-muted); }

/* ─────────────────────────────────────────────  04 · BUTTONS  ── */
.hc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: .96rem; font-weight: 650; line-height: 1;
  padding: 13px 22px; border-radius: var(--hc-r-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s var(--hc-ease), box-shadow .22s var(--hc-ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.hc-btn .bi { font-size: 1.05em; }
.hc-btn:active { transform: translateY(1px); }

.hc-btn--primary { background: var(--hc-red); color: #fff; box-shadow: var(--hc-sh-red); }
.hc-btn--primary:hover { background: var(--hc-red-600); transform: translateY(-2px); box-shadow: 0 18px 34px -10px var(--hc-red-glow); color: #fff; }

.hc-btn--dark { background: var(--hc-ink); color: #fff; }
.hc-btn--dark:hover { background: #111a2c; transform: translateY(-2px); box-shadow: var(--hc-sh-md); color: #fff; }

.hc-btn--ghost { background: #fff; color: var(--hc-ink-2); border-color: var(--hc-line-strong); box-shadow: var(--hc-sh-xs); }
.hc-btn--ghost:hover { border-color: #c3ccd6; transform: translateY(-2px); box-shadow: var(--hc-sh-sm); }

.hc-btn--light { background: #fff; color: var(--hc-ink); }
.hc-btn--light:hover { transform: translateY(-2px); box-shadow: var(--hc-sh-md); }

.hc-btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.hc-btn--sm { padding: 10px 16px; font-size: .9rem; }

.hc-link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 650; color: var(--hc-red);
  transition: gap .2s var(--hc-ease), color .2s;
}
.hc-link:hover { color: var(--hc-red-700); gap: 10px; }
.hc-link .bi { font-size: .95em; transition: transform .2s var(--hc-ease); }
.hc-link:hover .bi { transform: translateX(2px); }

/* ─────────────────────────────────────────────  05 · BITS  ── */
.hc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 650; color: var(--hc-body);
  background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-pill);
  padding: 6px 13px; box-shadow: var(--hc-sh-xs);
}
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,.14); }

.hc-trustrow { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.hc-trustrow span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--hc-muted); font-weight: 550; }
.hc-trustrow .bi { color: #16a34a; font-size: 1.05rem; }

/* Card */
.hc-card { background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-lg); box-shadow: var(--hc-sh-sm); }
.hc-card--pad { padding: 28px; }

/* Icon box */
.hc-ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.4rem; color: var(--hc-red); background: var(--hc-red-tint);
  border: 1px solid rgba(204,0,0,.12);
}
.hc-ic--blue  { color:#2563eb; background:#eff5ff; border-color:#dbe7fe; }
.hc-ic--green { color:#16a34a; background:#f0fdf4; border-color:#d6f5df; }
.hc-ic--violet{ color:#7c3aed; background:#f5f1ff; border-color:#e7ddfe; }
.hc-ic--amber { color:#d97706; background:#fff7ed; border-color:#fde8cf; }
.hc-ic--ig { color:#fff; background:linear-gradient(135deg,#f9ce34,#ee2a7b 55%,#6228d7); border-color:transparent; }

/* ─────────────────────────────────────────────  06 · NAVBAR  ── */
.hc-nav {
  position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.62);
  backdrop-filter: saturate(185%) blur(18px); -webkit-backdrop-filter: saturate(185%) blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--hc-ease), box-shadow .3s var(--hc-ease), background .3s;
}
.hc-nav.is-stuck { background: rgba(255,255,255,.82); border-bottom-color: rgba(16,24,40,.06); box-shadow: 0 8px 30px -18px rgba(16,24,40,.28); }
.hc-nav.is-stuck::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(204,0,0,.4) 35%, rgba(155,92,255,.3) 55%, rgba(255,106,61,.35) 70%, transparent); opacity: .8; }
.hc-nav__inner { height: 70px; display: flex; align-items: center; gap: 20px; }
.hc-nav__brand { display: flex; align-items: center; margin-right: 8px; transition: opacity .18s; }
.hc-nav__brand:hover { opacity: .82; }
.hc-nav__brand img { max-height: 30px; width: auto; }
.hc-nav__links { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.hc-nav__link {
  position: relative; font-size: .93rem; font-weight: 550; color: var(--hc-body);
  padding: 9px 15px; border-radius: var(--hc-r-pill); transition: color .18s var(--hc-ease), background .18s; display: inline-flex; align-items: center; gap: 6px;
}
.hc-nav__link:hover { color: var(--hc-ink); background: rgba(16,24,40,.045); }
.hc-nav__link.is-active { color: var(--hc-ink); font-weight: 650; }
.hc-nav__link.is-active::after { content: ''; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; border-radius: 50%; transform: translateX(-50%); background: var(--hc-red); box-shadow: 0 0 0 3px rgba(204,0,0,.14); }
.hc-nav__link .bi { font-size: .8rem; opacity: .6; transition: transform .2s; }
.hc-nav__spacer { flex: 1; }
.hc-nav__cta { display: flex; align-items: center; gap: 10px; }
.hc-nav__burger { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--hc-line); background: #fff; color: var(--hc-ink); font-size: 1.3rem; align-items: center; justify-content: center; cursor: pointer; }

/* Mega menu */
.hc-mega-wrap { position: relative; }
.hc-nav__link--drop .bi { font-size: .72rem; opacity: .55; transition: transform .22s var(--hc-ease); }
.hc-mega-wrap:hover .hc-nav__link--drop .bi { transform: rotate(180deg); }
.hc-mega {
  position: absolute; top: calc(100% + 14px); left: -14px; z-index: 60;
  width: min(600px, 94vw); background: #fff; border: 1px solid var(--hc-line);
  border-radius: var(--hc-r-lg); box-shadow: var(--hc-sh-lg); padding: 16px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--hc-ease), transform .2s var(--hc-ease), visibility .2s;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px;
}
.hc-mega::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.hc-mega-wrap:hover .hc-mega, .hc-mega-wrap:focus-within .hc-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.hc-mega__col { display: flex; flex-direction: column; }
.hc-mega__label { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--hc-faint); font-weight: 700; padding: 4px 12px 9px; }
.hc-mega__item { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 12px; transition: background .16s var(--hc-ease); }
.hc-mega__item:hover { background: var(--hc-bg-soft); }
.hc-mega__item .hc-ic { width: 36px; height: 36px; border-radius: 10px; font-size: 1.05rem; flex-shrink: 0; }
.hc-mega__t { font-size: .89rem; font-weight: 650; color: var(--hc-ink); display: block; line-height: 1.2; }
.hc-mega__d { font-size: .77rem; color: var(--hc-muted); margin-top: 1px; line-height: 1.35; display: block; }

/* Mobile drawer */
.hc-drawer { display: none; }
@media (max-width: 980px) {
  .hc-nav__links, .hc-nav__cta .hc-nav__cta-desktop { display: none; }
  .hc-nav__burger { display: inline-flex; }
  .hc-drawer { display: block; position: fixed; inset: var(--hc-nav-h) 0 0 0; z-index: 899;
    background: rgba(255,255,255,.98); backdrop-filter: blur(8px); padding: 22px var(--hc-gutter);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; overflow-y: auto; }
  .hc-drawer.open { opacity: 1; transform: none; pointer-events: auto; }
  .hc-drawer a.hc-drawer__link { display: block; font-size: 1.1rem; font-weight: 650; color: var(--hc-ink); padding: 14px 6px; border-bottom: 1px solid var(--hc-line-2); }
  .hc-drawer__cta { display: grid; gap: 12px; margin-top: 22px; }
  .hc-drawer__cta .hc-btn { width: 100%; }
}

/* ─────────────────────────────────────────────  07 · HERO  ── */
.hc-hero { position: relative; overflow: hidden; padding-top: 84px; padding-bottom: 96px; background: var(--hc-white); }
.hc-hero__mesh {
  position: absolute; inset: -20% -10% auto -10%; height: 720px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 55% at 18% 12%, rgba(204,0,0,.16), transparent 70%),
    radial-gradient(38% 50% at 82% 8%, rgba(124,58,237,.14), transparent 68%),
    radial-gradient(50% 55% at 60% 0%, rgba(37,99,235,.10), transparent 70%);
  filter: blur(8px); opacity: .9; animation: hc-float-mesh 18s ease-in-out infinite alternate;
}
.hc-hero__grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--hc-line-2) 1px, transparent 1px), linear-gradient(90deg, var(--hc-line-2) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%); opacity: .5;
}
.hc-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hc-hero__eyebrow { margin-bottom: 22px; }
.hc-hero__title { margin-bottom: 20px; }
.hc-hero__title .hc-grad { background: linear-gradient(100deg, var(--hc-red), #ff4d4d 55%, #ff7a45); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hc-hero__sub { max-width: 540px; margin-bottom: 30px; }
.hc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

@keyframes hc-float-mesh { to { transform: translate3d(0,-26px,0) scale(1.05); } }

/* ─────────────────────────────────────────────  08 · CHANNEL MOCK (hero visual) ── */
.hc-mock { position: relative; }
.hc-window {
  background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl);
  box-shadow: var(--hc-sh-lg); overflow: hidden;
}
.hc-window__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--hc-line-2); background: #fcfdfe; }
.hc-window__dot { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.hc-window__dot.r { background: #ff5f57; } .hc-window__dot.y { background: #febc2e; } .hc-window__dot.g { background: #28c840; }
.hc-window__title { margin-left: 10px; font-size: .78rem; color: var(--hc-faint); font-weight: 600; }

.hc-chat { padding: 20px; background: linear-gradient(180deg,#fff, #fbfcfe); }
.hc-chat__row { display: flex; gap: 10px; margin-bottom: 16px; align-items: flex-end; }
.hc-chat__row.me { flex-direction: row-reverse; }
.hc-chat__av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: .9rem; color: #fff; background: linear-gradient(135deg,var(--hc-red),#ff5a5a); flex-shrink: 0; }
.hc-chat__av.bot { background: linear-gradient(135deg,#6d5efc,#8b7bff); }
.hc-bubble { max-width: 76%; padding: 11px 14px; border-radius: 15px; font-size: .86rem; line-height: 1.5; box-shadow: var(--hc-sh-xs); }
.hc-bubble.them { background: #fff; border: 1px solid var(--hc-line); color: var(--hc-ink-2); border-bottom-left-radius: 5px; }
.hc-bubble.me { background: var(--hc-red); color: #fff; border-bottom-right-radius: 5px; }
.hc-typing { display: inline-flex; gap: 4px; padding: 13px 15px; }
.hc-typing i { width: 7px; height: 7px; border-radius: 50%; background: #c7d0db; display: inline-block; animation: hc-typing 1.2s infinite; }
.hc-typing i:nth-child(2){ animation-delay:.18s } .hc-typing i:nth-child(3){ animation-delay:.36s }
.hc-typing--onred i { background: rgba(255,255,255,.9); }
@keyframes hc-typing { 0%,60%,100%{ transform: translateY(0); opacity:.5 } 30%{ transform: translateY(-5px); opacity:1 } }

/* Floating channel chips around the mock */
.hc-float {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: #fff; border: 1px solid var(--hc-line); border-radius: 14px; box-shadow: var(--hc-sh-md);
  font-size: .82rem; font-weight: 650; color: var(--hc-ink-2); animation: hc-bob 5s ease-in-out infinite;
}
.hc-float .hc-float__ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 1rem; color: #fff; }
.hc-float small { display: block; font-size: .72rem; font-weight: 550; color: var(--hc-faint); }
.hc-float--tl { top: 9%; left: -12%; animation-delay: -1s; }
.hc-float--br { bottom: -3%; right: -6%; animation-delay: -2.5s; }
.hc-float--wa .hc-float__ic { background:#25D366; } .hc-float--ig .hc-float__ic { background:linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); } .hc-float--ai .hc-float__ic { background:linear-gradient(135deg,#6d5efc,#8b7bff); }
@keyframes hc-bob { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }

/* ─────────────────────────────────────────────  09 · PLATFORMS / CHANNELS STRIP ── */
.hc-strip { border-top: 1px solid var(--hc-line-2); border-bottom: 1px solid var(--hc-line-2); background: var(--hc-bg-soft); padding-block: 48px; }
.hc-strip__label { text-align: center; font-size: .82rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; color: var(--hc-faint); margin-bottom: 34px; }
.hc-marquee { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.hc-marquee span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .95rem; font-weight: 650; color: var(--hc-ink-2);
  background: #fff; border: 1px solid var(--hc-line); padding: 10px 18px;
  border-radius: var(--hc-r-pill); box-shadow: var(--hc-sh-xs);
  transition: transform .18s var(--hc-ease), box-shadow .2s, border-color .2s;
}
.hc-marquee span:hover { transform: translateY(-2px); box-shadow: var(--hc-sh-sm); border-color: var(--hc-line-strong); }
.hc-marquee .bi { font-size: 1.15rem; color: var(--hc-faint); transition: color .2s; }
.hc-marquee span:hover .bi { color: var(--hc-red); }

/* ─────────────────────────────────────────────  10 · CHANNELS BADGES (reusable) ── */
.hc-chan { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; font-size: .86rem; color: var(--hc-ink-2); background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-pill); padding: 8px 15px; box-shadow: var(--hc-sh-xs); }
.hc-chan .bi { font-size: 1.05rem; }
.hc-chan--wa .bi { color:#25D366 } .hc-chan--fb .bi { color:#0866ff } .hc-chan--ig .bi { color:#e1306c } .hc-chan--web .bi { color:var(--hc-red) }

/* ───────────────────────────────  10b · OMNICHANNEL SHOWCASE  ── */
.hc-omni { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; max-width: 1040px; margin-inline: auto; position: relative; }
.hc-omni__side { display: flex; flex-direction: column; gap: 14px; }
.hc-omni__chan, .hc-omni__out {
  display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--hc-line);
  border-radius: var(--hc-r-md); padding: 14px 16px; box-shadow: var(--hc-sh-sm);
  transition: transform .2s var(--hc-ease), box-shadow .2s var(--hc-ease);
}
.hc-omni__chan:hover, .hc-omni__out:hover { transform: translateY(-3px); box-shadow: var(--hc-sh-md); }
.hc-omni__chan span, .hc-omni__out span:not(.hc-ic) { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1.25rem; color: #fff; flex-shrink: 0; }
.hc-omni__chan strong, .hc-omni__out strong { display: block; font-size: .92rem; color: var(--hc-ink); font-weight: 700; }
.hc-omni__chan small, .hc-omni__out small { font-size: .78rem; color: var(--hc-muted); }
.hc-omni__chan--web span { background: var(--hc-red); }
.hc-omni__chan--wa span { background: #25D366; }
.hc-omni__chan--fb span { background: #0866ff; }
.hc-omni__chan--ig span { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); }
.hc-omni__out .hc-ic { width: 42px; height: 42px; }

.hc-omni__hub { position: relative; display: grid; place-items: center; width: 168px; height: 168px; }
.hc-omni__pulse { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(204,0,0,.16), transparent 65%); animation: hc-pulse 3s ease-in-out infinite; }
.hc-omni__core { position: relative; width: 132px; height: 132px; border-radius: 50%; background: #fff; border: 1px solid var(--hc-line); box-shadow: var(--hc-sh-lg); display: grid; place-items: center; z-index: 1; }
.hc-omni__logo { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; color: #fff; background: linear-gradient(135deg, var(--hc-red), #ff5a5a); box-shadow: var(--hc-sh-red); }
.hc-omni__cap { position: absolute; top: calc(100% - 10px); left: 50%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.hc-omni__cap strong { display: block; font-size: .95rem; color: var(--hc-ink); font-weight: 700; }
.hc-omni__cap small { display: block; font-size: .78rem; color: var(--hc-muted); margin-top: 2px; }
@keyframes hc-pulse { 0%,100% { transform: scale(.9); opacity: .7; } 50% { transform: scale(1.15); opacity: 1; } }

/* Flow wires: channels ─▶ hub ─▶ outcomes */
.hc-omni__wire { position: absolute; top: 50%; transform: translateY(-50%); height: 2px; width: 48px; z-index: 0; border-radius: 2px; overflow: visible; }
.hc-omni__wire--in  { right: calc(50% + 68px); background: linear-gradient(90deg, rgba(204,0,0,.10), rgba(204,0,0,.5)); }
.hc-omni__wire--out { left:  calc(50% + 68px); background: linear-gradient(90deg, rgba(204,0,0,.5), rgba(204,0,0,.10)); }
.hc-omni__wire::after {
  content: ''; position: absolute; top: 50%; width: 7px; height: 7px; border-radius: 50%;
  background: var(--hc-red); transform: translateY(-50%);
  box-shadow: 0 0 10px 1px rgba(204,0,0,.55); animation: hc-flow 2.4s linear infinite;
}
.hc-omni__wire--out::after { animation-delay: 1.2s; }
@keyframes hc-flow { 0% { left: -3px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 4px); opacity: 0; } }

@media (max-width: 860px) {
  .hc-omni { grid-template-columns: 1fr; gap: 20px; max-width: 460px; }
  .hc-omni__hub { margin-inline: auto; width: 132px; height: auto; }
  .hc-omni__pulse { top: 0; height: 132px; }
  .hc-omni__cap { position: static; transform: none; margin: 12px 0 0; }
  .hc-omni__side--right { order: 3; }
  .hc-omni__wire { display: none; }
}

/* ───────────────────────────────  10c · SPLIT (AI highlight)  ── */
.hc-split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.hc-split--rev .hc-split__media { order: -1; }
.hc-split__body .hc-eyebrow { margin-bottom: 18px; }
.hc-split__list { display: grid; gap: 16px; margin-top: 28px; }
.hc-split__li { display: flex; gap: 14px; align-items: flex-start; }
.hc-split__li .hc-ic { width: 40px; height: 40px; font-size: 1.15rem; flex-shrink: 0; }
.hc-split__li strong { display: block; font-size: 1rem; color: var(--hc-ink); font-weight: 700; }
.hc-split__li p { font-size: .92rem; color: var(--hc-muted); margin-top: 3px; line-height: 1.55; }

/* KB → AI visual */
.hc-kbcard { background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); box-shadow: var(--hc-sh-lg); padding: 24px; }
.hc-kbcard__head { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--hc-line-2); margin-bottom: 18px; }
.hc-kbcard__head .hc-ic { width: 38px; height: 38px; font-size: 1.05rem; }
.hc-kbcard__head strong { font-size: .95rem; color: var(--hc-ink); }
.hc-kbcard__head small { font-size: .78rem; color: var(--hc-muted); display: block; }
.hc-kbrow { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--hc-line); border-radius: 13px; margin-bottom: 10px; background: var(--hc-bg-soft); transition: transform .22s var(--hc-ease), background .22s, border-color .22s; }
.hc-kbrow:hover { transform: translateX(4px); background: #fff; border-color: var(--hc-line-strong); }
.hc-kbrow .bi:first-child { font-size: 1.15rem; color: var(--hc-red); flex-shrink: 0; }
.hc-kbrow span { font-size: .88rem; color: var(--hc-ink-2); font-weight: 600; }
.hc-kbrow small { margin-left: auto; font-size: .74rem; font-weight: 650; color: #16a34a; display: inline-flex; align-items: center; gap: 5px; }
.hc-kbrow small .bi { color: #16a34a; font-size: .9rem; }

/* ───────────────────────────────  10d · FEATURE GRID  ── */
.hc-fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hc-fgrid--4 { grid-template-columns: repeat(4, 1fr); }
.hc-fcard { display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-lg); box-shadow: var(--hc-sh-sm); transition: transform .2s var(--hc-ease), box-shadow .22s var(--hc-ease), border-color .2s; }
.hc-fcard:hover { transform: translateY(-6px); box-shadow: var(--hc-sh-md); border-color: var(--hc-line-strong); }
.hc-fcard .hc-ic { transition: transform .28s var(--hc-ease); }
.hc-fcard:hover .hc-ic { transform: scale(1.09) rotate(-3deg); }
.hc-fcard__t { font-size: 1.12rem; font-weight: 700; color: var(--hc-ink); margin: 18px 0 8px; }
.hc-fcard__d { font-size: .93rem; color: var(--hc-muted); line-height: 1.6; flex: 1; }
.hc-fcard .hc-link { margin-top: 18px; font-size: .9rem; }
.hc-fcard:hover .hc-link { color: var(--hc-red-700); gap: 11px; }

/* ───────────────────────────────  10e · STEPS (how it works)  ── */
.hc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; counter-reset: hcstep; }
.hc-step { position: relative; padding: 32px 28px; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-lg); box-shadow: var(--hc-sh-sm); transition: transform .28s var(--hc-ease), box-shadow .3s var(--hc-ease), border-color .28s var(--hc-ease); }
.hc-step:hover { transform: translateY(-6px); box-shadow: var(--hc-sh-md); border-color: var(--hc-line-strong); }
.hc-step__n { counter-increment: hcstep; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; color: #fff; background: linear-gradient(135deg, var(--hc-red), #ff5a5a); box-shadow: var(--hc-sh-red); margin-bottom: 20px; transition: transform .28s var(--hc-ease), box-shadow .3s var(--hc-ease); }
.hc-step:hover .hc-step__n { transform: scale(1.08) rotate(-4deg); box-shadow: 0 16px 30px -8px var(--hc-red-glow); }
.hc-step__n::before { content: counter(hcstep); }
.hc-step h3 { font-size: 1.14rem; color: var(--hc-ink); margin-bottom: 8px; font-weight: 700; }
.hc-step p { font-size: .93rem; color: var(--hc-muted); line-height: 1.6; }
/* connector node — centred in the gap between cards */
.hc-step__arrow { position: absolute; top: 50%; right: -44px; transform: translateY(-50%); z-index: 4; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--hc-line); display: grid; place-items: center; color: var(--hc-red); font-size: .95rem; box-shadow: var(--hc-sh-sm); transition: transform .28s var(--hc-ease), color .2s, border-color .2s; }
/* counter the card lift so the node stays put, then nudge the arrow itself */
.hc-step:hover .hc-step__arrow { transform: translateY(calc(-50% + 6px)); border-color: var(--hc-red); color: var(--hc-red-700); }

/* ───────────────────────────────  10f · TESTIMONIALS  ── */
.hc-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hc-quote { display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-lg); box-shadow: var(--hc-sh-sm); transition: transform .28s var(--hc-ease), box-shadow .3s var(--hc-ease), border-color .28s var(--hc-ease); }
.hc-quote:hover { transform: translateY(-5px); box-shadow: var(--hc-sh-md); border-color: var(--hc-line-strong); }
.hc-quote__stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 14px; font-size: .95rem; }
.hc-quote__body { font-size: .96rem; color: var(--hc-ink-2); line-height: 1.62; flex: 1; }
.hc-quote__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--hc-line-2); }
.hc-quote__av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--hc-red-tint); color: var(--hc-red); display: grid; place-items: center; font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.hc-quote__who strong { display: block; font-size: .9rem; color: var(--hc-ink); font-weight: 700; }
.hc-quote__who small { font-size: .8rem; color: var(--hc-muted); }

/* ───────────────────────────────  10g · PRICING TEASER  ── */
.hc-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 22px; align-items: stretch; max-width: 1160px; margin-inline: auto; }
.hc-plan { position: relative; display: flex; flex-direction: column; padding: 34px 30px; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); box-shadow: var(--hc-sh-sm); transition: transform .28s var(--hc-ease), box-shadow .3s var(--hc-ease), border-color .28s var(--hc-ease); }
.hc-plan:hover { transform: translateY(-6px); box-shadow: var(--hc-sh-lg); border-color: var(--hc-line-strong); }
/* popular — tinted, glowing, dominant */
.hc-plan--pop { border-color: var(--hc-red); background: linear-gradient(180deg, #fff6f6, #fff 132px); box-shadow: 0 30px 66px -24px var(--hc-red-glow), 0 14px 30px -18px rgba(16,24,40,.14); }
.hc-plan--pop:hover { border-color: var(--hc-red); transform: translateY(-6px); box-shadow: 0 40px 80px -24px var(--hc-red-glow), 0 16px 34px -18px rgba(16,24,40,.18); }
.hc-plan--pop .hc-plan__name { color: var(--hc-red); }
.hc-plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--hc-red), #ff5a5a); color: #fff; font-size: .71rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 15px; border-radius: var(--hc-r-pill); box-shadow: var(--hc-sh-red); white-space: nowrap; }

.hc-plan__name { font-size: 1.18rem; font-weight: 750; color: var(--hc-ink); letter-spacing: -.01em; }
.hc-plan__desc { font-size: .87rem; color: var(--hc-muted); margin-top: 6px; min-height: 42px; line-height: 1.5; }
.hc-plan__price { display: flex; align-items: baseline; gap: 5px; margin: 20px 0 2px; }
.hc-plan__price b { font-size: 2.9rem; font-weight: 820; color: var(--hc-ink); letter-spacing: -.04em; line-height: 1; }
.hc-plan__price span { font-size: .92rem; color: var(--hc-muted); font-weight: 500; }

.hc-plan__inc { font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--hc-faint); margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--hc-line-2); }
.hc-plan__feat { list-style: none; display: grid; gap: 13px; margin: 16px 0 28px; padding: 0; }
.hc-plan__feat li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--hc-body); line-height: 1.4; }
.hc-check { width: 20px; height: 20px; border-radius: 50%; background: #f0fdf4; border: 1px solid #d6f5df; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.hc-check .bi { color: #16a34a; font-size: .7rem; }
.hc-plan .hc-btn { width: 100%; margin: 22px 0 2px; }
.hc-plan--pop .hc-btn--primary { box-shadow: 0 14px 30px -8px var(--hc-red-glow); }

/* ───────────────────────────────  10h · FAQ TEASER  ── */
.hc-faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.hc-faq__item { background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-md); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.hc-faq__item[open] { border-color: var(--hc-line-strong); box-shadow: var(--hc-sh-sm); }
.hc-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-weight: 650; font-size: 1rem; color: var(--hc-ink); list-style: none; }
.hc-faq__q::-webkit-details-marker { display: none; }
.hc-faq__q .bi { color: var(--hc-faint); font-size: 1.1rem; transition: transform .25s var(--hc-ease); flex-shrink: 0; }
.hc-faq__item[open] .hc-faq__q .bi { transform: rotate(45deg); color: var(--hc-red); }
.hc-faq__a { padding: 0 22px 22px; font-size: .95rem; color: var(--hc-muted); line-height: 1.65; }

/* ───────────────────────────────  10i · CTA BAND  ── */
.hc-cta { position: relative; overflow: hidden; background: var(--hc-ink-surface); border-radius: var(--hc-r-2xl, 32px); padding: 72px 40px; text-align: center; }
.hc-cta__glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -10%, rgba(204,0,0,.4), transparent 60%); pointer-events: none; }
.hc-cta h2 { position: relative; color: #fff; font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem); letter-spacing: -.028em; }
.hc-cta p { position: relative; color: rgba(255,255,255,.72); font-size: 1.08rem; margin: 16px auto 30px; max-width: 560px; }
.hc-cta__actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ───────────────────────────────  10j · SUB-PAGE HERO  ── */
.hc-fhero { position: relative; overflow: hidden; padding: 92px 0 72px; text-align: center; background: linear-gradient(180deg, var(--hc-red-tint), #fff 74%); }
.hc-fhero__inner { position: relative; z-index: 1; max-width: 760px; }
.hc-fhero__ic { width: 66px; height: 66px; border-radius: 18px; font-size: 1.95rem; margin: 0 auto 22px; box-shadow: var(--hc-sh-sm); }
.hc-fhero .hc-eyebrow { margin-bottom: 18px; }
.hc-fhero .hc-display { font-size: clamp(2.1rem, 1.5rem + 2.3vw, 3.15rem); }
.hc-fhero .hc-lead { margin: 20px auto 30px; max-width: 640px; }
.hc-fhero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* checklist panel */
.hc-pointcard { max-width: 880px; margin-inline: auto; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); box-shadow: var(--hc-sh-sm); padding: 40px 44px; }
.hc-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 36px; }
.hc-point { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--hc-ink-2); line-height: 1.5; }
.hc-point .bi { color: #16a34a; font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* ───────────────────────────────  10k · PRICING PAGE EXTRAS  ── */
.hc-billing { display: inline-flex; align-items: center; gap: 6px; padding: 5px; background: var(--hc-bg-softer); border: 1px solid var(--hc-line); border-radius: var(--hc-r-pill); margin: 26px auto 0; }
.hc-billing button { border: 0; background: transparent; font: inherit; font-weight: 650; font-size: .92rem; color: var(--hc-muted); padding: 9px 20px; border-radius: var(--hc-r-pill); cursor: pointer; transition: color .2s, background .2s, box-shadow .2s; }
.hc-billing button.is-on { color: var(--hc-ink); background: #fff; box-shadow: var(--hc-sh-xs); }
.hc-billing__save { font-size: .74rem; font-weight: 700; color: #16a34a; background: #f0fdf4; border: 1px solid #d6f5df; padding: 3px 9px; border-radius: var(--hc-r-pill); margin-left: 2px; }
.hc-plan__save { font-size: .78rem; color: #16a34a; font-weight: 650; min-height: 20px; }

/* ───────────────────────────────  10l · COMPARISON TABLE  ── */
.hc-ctable-wrap { overflow-x: auto; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); background: #fff; box-shadow: var(--hc-sh-sm); -webkit-overflow-scrolling: touch; }
.hc-ctable { width: 100%; border-collapse: collapse; min-width: 760px; }
.hc-ctable th, .hc-ctable td { padding: 15px 20px; text-align: center; vertical-align: middle; }
.hc-ctable thead th { background: #fff; border-bottom: 1px solid var(--hc-line); font-weight: 750; color: var(--hc-ink); font-size: 1rem; padding-top: 22px; padding-bottom: 20px; }
.hc-ctable thead th span { display: block; font-size: .82rem; font-weight: 500; color: var(--hc-muted); margin-top: 3px; }
.hc-ctable thead th.is-pop { color: var(--hc-red); }
.hc-ctable .hc-ctable__feat { text-align: left; font-weight: 550; color: var(--hc-ink-2); font-size: .92rem; min-width: 200px; }
.hc-ctable tbody th.hc-ctable__feat { font-weight: 550; }
.hc-ctable tbody tr { border-bottom: 1px solid var(--hc-line-2); }
.hc-ctable tbody tr:last-child { border-bottom: 0; }
.hc-ctable tbody tr:hover td, .hc-ctable tbody tr:hover th { background: var(--hc-bg-soft); }
.hc-ctable td.is-pop, .hc-ctable th.is-pop { background: rgba(204,0,0,.035); }
.hc-ctable tbody tr:hover td.is-pop { background: rgba(204,0,0,.06); }
.hc-ct-yes { color: #16a34a; font-size: 1.15rem; }
.hc-ct-no { color: var(--hc-faint); font-size: 1rem; }
.hc-ct-val { font-weight: 650; color: var(--hc-ink); font-size: .92rem; }
.hc-ctable tfoot td { padding-top: 22px; padding-bottom: 24px; border-top: 1px solid var(--hc-line); }
.hc-ctable tfoot .hc-btn { min-width: 120px; }

/* ───────────────────────────────  10n · SUB-PAGE SPLIT HERO + MOCKS  ── */
.hc-shero { position: relative; overflow: hidden; padding: 104px 0 88px; background: linear-gradient(180deg, var(--hc-red-tint), #fff 82%); }
/* gradient bottom border — hero separator (matches footer's top accent) */
.hc-fhero::after, .hc-vhero::after, .hc-shero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; z-index: 4; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(204,0,0,.5) 32%, rgba(155,92,255,.42) 50%, rgba(255,106,61,.48) 68%, transparent); }
.hc-shero__inner { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }
.hc-shero__ic { width: 56px; height: 56px; border-radius: 16px; font-size: 1.6rem; margin-bottom: 22px; box-shadow: var(--hc-sh-sm); }
.hc-shero .hc-eyebrow { margin-bottom: 18px; }
.hc-shero__title { font-size: clamp(2rem, 1.35rem + 2.4vw, 3.15rem); font-weight: 850; letter-spacing: -.035em; line-height: 1.05; color: var(--hc-ink); }
.hc-shero__sub { font-size: clamp(1.05rem, 1rem + .4vw, 1.24rem); line-height: 1.62; color: var(--hc-muted); margin: 20px 0 30px; max-width: 520px; }
.hc-shero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hc-shero__visual { position: relative; }

/* shared mock shell */
.hc-mk { position: relative; z-index: 1; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); box-shadow: var(--hc-sh-lg); padding: 20px; max-width: 440px; margin-inline: auto; }
.hc-mk__glow { position: absolute; inset: 8% 4% -6% 4%; z-index: 0; border-radius: 40px; filter: blur(46px); opacity: .5;
  background: radial-gradient(50% 60% at 30% 40%, rgba(204,0,0,.35), transparent 70%), radial-gradient(50% 60% at 75% 60%, rgba(155,92,255,.3), transparent 70%); }
.hc-mk__h { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--hc-line-2); }
.hc-mk__h .hc-ic { width: 38px; height: 38px; font-size: 1.05rem; }
.hc-mk__h strong { font-size: .92rem; color: var(--hc-ink); display: block; }
.hc-mk__h small { display: block; font-size: .76rem; color: var(--hc-muted); }
.hc-mk__h .hc-mk__live { margin-left: auto; font-size: .7rem; font-weight: 700; color: #16a34a; display: inline-flex; align-items: center; gap: 5px; }
.hc-mk__h .hc-mk__live::before { content:''; width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.16); }

/* inbox mock (live-agent) */
.hc-mk-row { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 13px; border: 1px solid var(--hc-line-2); margin-bottom: 9px; }
.hc-mk-row:last-child { margin-bottom: 0; }
.hc-mk-row.on { border-color: rgba(204,0,0,.35); background: var(--hc-red-tint); }
.hc-mk-av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .78rem; flex-shrink: 0; }
.hc-mk-row .who b { font-size: .85rem; color: var(--hc-ink); display: block; line-height: 1.2; }
.hc-mk-row .who small { font-size: .75rem; color: var(--hc-muted); }
.hc-mk-row .chi { margin-left: auto; font-size: .68rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.hc-mk-row .chi.ai { color: #7c3aed; background: #f5f1ff; }
.hc-mk-row .chi.you { color: var(--hc-red); background: #fff; border: 1px solid rgba(204,0,0,.25); }
.hc-mk-row .cico { margin-left: auto; font-size: 1rem; }

/* comment mock (comment-automation) */
.hc-mk-post { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.hc-mk-post small { font-size: .74rem; color: var(--hc-muted); }
.hc-mk-cmt { display: flex; gap: 10px; margin-bottom: 12px; }
.hc-mk-cmt .bub { background: var(--hc-bg-soft); border: 1px solid var(--hc-line-2); border-radius: 4px 14px 14px 14px; padding: 9px 13px; font-size: .84rem; color: var(--hc-ink-2); }
.hc-mk-cmt.reply { margin-left: 30px; }
.hc-mk-cmt.reply .bub { background: var(--hc-red-tint); border-color: rgba(204,0,0,.18); color: var(--hc-ink-2); }
.hc-mk-cmt.reply .bub b { color: var(--hc-red); font-weight: 700; }

/* lead score card (lead-intelligence) */
.hc-mk-lead { display: flex; align-items: center; gap: 14px; padding: 4px 2px 16px; }
.hc-mk-lead .lav { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--hc-red), #ff5a5a); color: #fff; display: grid; place-items: center; font-weight: 750; font-size: 1.1rem; }
.hc-mk-lead b { font-size: 1rem; color: var(--hc-ink); display: block; }
.hc-mk-lead small { font-size: .8rem; color: var(--hc-muted); }
.hc-mk-hot { margin-left: auto; font-size: .72rem; font-weight: 700; color: #fff; background: linear-gradient(120deg, #CC0000, #ff5a3c); padding: 5px 12px; border-radius: 999px; }
.hc-mk-score { margin-bottom: 14px; }
.hc-mk-score .lab { display: flex; justify-content: space-between; font-size: .78rem; color: var(--hc-muted); margin-bottom: 6px; }
.hc-mk-score .lab b { color: var(--hc-ink); }
.hc-mk-bar { height: 9px; border-radius: 999px; background: var(--hc-bg-softer); overflow: hidden; }
.hc-mk-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #ff5a3c, #CC0000); }
.hc-mk-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hc-mk-tags span { font-size: .74rem; font-weight: 600; color: var(--hc-body); background: var(--hc-bg-soft); border: 1px solid var(--hc-line-2); padding: 5px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.hc-mk-tags .bi { color: var(--hc-red); }

/* analytics dashboard mock */
.hc-mk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.hc-mk-stat { background: var(--hc-bg-soft); border: 1px solid var(--hc-line-2); border-radius: 12px; padding: 12px; }
.hc-mk-stat b { font-size: 1.25rem; font-weight: 800; color: var(--hc-ink); letter-spacing: -.02em; }
.hc-mk-stat small { display: block; font-size: .68rem; color: var(--hc-muted); margin-top: 2px; }
.hc-mk-chart { display: flex; align-items: flex-end; gap: 9px; height: 108px; padding-top: 6px; }
.hc-mk-chart i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #ff5a3c, #CC0000); opacity: .9; }

/* browser + widget mock (website-widget) */
.hc-mk-browser { border: 1px solid var(--hc-line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--hc-sh-sm); }
.hc-mk-browser__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--hc-bg-soft); border-bottom: 1px solid var(--hc-line-2); }
.hc-mk-browser__url { margin-left: 8px; flex: 1; font-size: .74rem; color: var(--hc-faint); background: #fff; border: 1px solid var(--hc-line-2); border-radius: 999px; padding: 5px 12px; }
.hc-mk-browser__body { position: relative; height: 210px; background: linear-gradient(180deg, #fff, var(--hc-bg-soft)); padding: 18px; }
.hc-mk-browser__body .ln { height: 10px; border-radius: 999px; background: var(--hc-line-2); margin-bottom: 11px; }
.hc-mk-browser__body .ln.s { width: 55%; } .hc-mk-browser__body .ln.m { width: 78%; } .hc-mk-browser__body .ln.t { width: 40%; height: 16px; background: var(--hc-line); }
.hc-mk-launch { position: absolute; bottom: 16px; right: 16px; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--hc-red), #ff5a5a); color: #fff; display: grid; place-items: center; font-size: 1.4rem; box-shadow: var(--hc-sh-red); }
.hc-mk-bubble { position: absolute; bottom: 82px; right: 16px; max-width: 210px; background: #fff; border: 1px solid var(--hc-line); border-radius: 16px 16px 4px 16px; box-shadow: var(--hc-sh-md); padding: 12px 14px; font-size: .82rem; color: var(--hc-ink-2); }

/* QR connect chip (whatsapp) */
.hc-mk-qr { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--hc-line-2); border-radius: 14px; background: var(--hc-bg-soft); margin-top: 12px; }
.hc-mk-qr__code { width: 58px; height: 58px; border-radius: 10px; flex-shrink: 0; background:
  repeating-linear-gradient(90deg, var(--hc-ink) 0 4px, transparent 4px 8px),
  repeating-linear-gradient(0deg, var(--hc-ink) 0 4px, #fff 4px 8px); background-blend-mode: multiply; border: 3px solid #fff; box-shadow: inset 0 0 0 1px var(--hc-line); }
.hc-mk-qr b { font-size: .86rem; color: var(--hc-ink); display: block; }
.hc-mk-qr small { font-size: .76rem; color: var(--hc-muted); }

/* chat mock accent themes (reuses .hc-window/.hc-chat/.hc-bubble) */
.hc-chatmk .hc-window { box-shadow: none; }
.hc-chatmk--wa .hc-bubble.me { background: #25D366; } .hc-chatmk--wa .hc-chat__av.bot { background: #25D366; }
.hc-chatmk--fb .hc-bubble.me { background: #0866ff; } .hc-chatmk--fb .hc-chat__av.bot { background: #0866ff; }
.hc-chatmk--ig .hc-bubble.me { background: linear-gradient(135deg,#ee2a7b,#6228d7); } .hc-chatmk--ig .hc-chat__av.bot { background: linear-gradient(135deg,#ee2a7b,#6228d7); }

/* alternating feature rows (Stripe/Linear-style body) */
.hc-frows { display: flex; flex-direction: column; gap: 12px; }
.hc-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-block: 44px; }
.hc-frow:nth-child(even) .hc-frow__media { order: -1; }
.hc-frow__body .hc-ic { width: 50px; height: 50px; font-size: 1.4rem; margin-bottom: 20px; }
.hc-frow__body h3 { font-size: clamp(1.45rem, 1.1rem + .9vw, 2rem); font-weight: 820; letter-spacing: -.028em; line-height: 1.12; color: var(--hc-ink); margin-bottom: 14px; }
.hc-frow__body p { font-size: 1.06rem; line-height: 1.62; color: var(--hc-muted); max-width: 440px; }
.hc-fvis { position: relative; overflow: hidden; border-radius: 28px; min-height: 300px; display: grid; place-items: center; padding: 40px; border: 1px solid var(--hc-line); box-shadow: var(--hc-sh-md); background: linear-gradient(155deg, #fff, var(--hc-bg-soft)); }
.hc-fvis__wm { position: absolute; right: -4%; bottom: -16%; font-size: 15rem; line-height: 1; z-index: 0; color: var(--hc-red); opacity: .06; }
.hc-fvis__card { position: relative; z-index: 1; background: #fff; border: 1px solid var(--hc-line); border-radius: 16px; box-shadow: var(--hc-sh-lg); padding: 18px 20px; display: flex; align-items: center; gap: 14px; min-width: 240px; }
.hc-fvis__card .hc-ic { width: 44px; height: 44px; font-size: 1.2rem; flex-shrink: 0; }
.hc-fvis__card b { display: block; font-size: .95rem; color: var(--hc-ink); font-weight: 700; }
.hc-fvis__card small { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; color: #16a34a; font-weight: 600; margin-top: 2px; }

@media (max-width: 900px) {
  .hc-shero { padding: 84px 0 64px; }
  .hc-shero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hc-shero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .hc-frow { grid-template-columns: 1fr; gap: 28px; padding-block: 24px; }
  .hc-frow > * { min-width: 0; }
  .hc-frow:nth-child(even) .hc-frow__media { order: 0; }
  .hc-fvis { min-height: 220px; padding: 32px; }
  .hc-fvis__card { min-width: 0; max-width: 100%; }
}

/* ───────────────────────────────  10m · VIBRANT HERO (premium)  ── */
.hc-vhero { position: relative; overflow: hidden; padding: 128px 0 100px; isolation: isolate; }
.hc-vhero__aurora { position: absolute; inset: -12% -6% 24% -6%; z-index: 0; overflow: hidden; pointer-events: none; }
.hc-blob { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .6; will-change: transform; }
.hc-blob.b1 { width: 540px; height: 540px; background: #ff2d55; top: -12%; left: -3%;  animation: hc-drift1 17s ease-in-out infinite alternate; }
.hc-blob.b2 { width: 500px; height: 500px; background: #9b5cff; top: -18%; right: -5%; animation: hc-drift2 21s ease-in-out infinite alternate; }
.hc-blob.b3 { width: 470px; height: 470px; background: #ff6a3d; top: 30%;  left: 14%;  animation: hc-drift3 19s ease-in-out infinite alternate; }
.hc-blob.b4 { width: 410px; height: 410px; background: #ff3d81; top: 12%;  right: 18%; animation: hc-drift4 23s ease-in-out infinite alternate; }
@keyframes hc-drift1 { to { transform: translate(70px, 46px)  scale(1.16); } }
@keyframes hc-drift2 { to { transform: translate(-56px, 54px) scale(1.10); } }
@keyframes hc-drift3 { to { transform: translate(44px, -42px) scale(1.18); } }
@keyframes hc-drift4 { to { transform: translate(-46px, 34px) scale(1.12); } }
.hc-vhero__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.62) 60%, #fff 100%); }
.hc-vhero__grain { position: absolute; inset: 0; z-index: 1; opacity: .045; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.hc-vhero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hc-vpill { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 650; color: var(--hc-ink-2); background: rgba(255,255,255,.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.75); box-shadow: 0 6px 22px -8px rgba(204,0,0,.25); padding: 8px 16px; border-radius: 999px; margin-bottom: 26px; }
.hc-vpill .bi { color: var(--hc-red); }
.hc-vtitle { font-size: clamp(2.6rem, 1.5rem + 4.2vw, 4.7rem); font-weight: 850; line-height: 1.02; letter-spacing: -.042em; color: var(--hc-ink); margin: 0; }
.hc-vgrad { background: linear-gradient(100deg, #CC0000 0%, #ff5a3c 46%, #ff3d81 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hc-vlead { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); line-height: 1.62; color: var(--hc-muted); margin: 26px 0 34px; max-width: 540px; }
.hc-vhero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hc-btn--glow { background: linear-gradient(120deg, #CC0000, #ff3d5f); color: #fff; box-shadow: 0 14px 36px -8px rgba(204,0,0,.5), 0 4px 14px -4px rgba(255,61,129,.4); }
.hc-btn--glow:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 48px -10px rgba(204,0,0,.6), 0 6px 18px -4px rgba(255,61,129,.5); }
.hc-btn--glass { background: rgba(255,255,255,.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.8); color: var(--hc-ink); box-shadow: 0 6px 20px -8px rgba(16,24,40,.16); }
.hc-btn--glass:hover { transform: translateY(-2px); background: rgba(255,255,255,.72); box-shadow: 0 12px 30px -10px rgba(16,24,40,.24); }

/* glassy product mockup */
.hc-vmock { position: relative; border-radius: 26px; padding: 1.5px; background: linear-gradient(135deg, rgba(255,45,85,.6), rgba(155,92,255,.5) 52%, rgba(255,106,61,.55)); box-shadow: 0 44px 92px -34px rgba(204,0,0,.4), 0 24px 54px -28px rgba(155,92,255,.32); }
.hc-vmock__glass { background: rgba(255,255,255,.74); backdrop-filter: blur(26px) saturate(150%); -webkit-backdrop-filter: blur(26px) saturate(150%); border-radius: 25px; overflow: hidden; }
.hc-vmock__bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid rgba(16,24,40,.06); }
.hc-vmock__bar i.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.hc-vmock__bar .r { background: #ff5f57; } .hc-vmock__bar .y { background: #febc2e; } .hc-vmock__bar .g { background: #28c840; }
.hc-vmock__bar span { margin-left: 8px; font-size: .78rem; color: var(--hc-faint); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hc-vmock .hc-chat { background: transparent; }

.hc-vfloat { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-radius: 16px; background: rgba(255,255,255,.62); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 16px 38px -12px rgba(16,24,40,.28); font-weight: 650; font-size: .84rem; color: var(--hc-ink-2); animation: hc-bob 5.5s ease-in-out infinite; }
.hc-vfloat small { display: block; font-size: .72rem; color: var(--hc-muted); font-weight: 550; }
.hc-vfloat__ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
.hc-vfloat--a { top: 7%; left: -9%; }
.hc-vfloat--b { bottom: 6%; right: -7%; animation-delay: -2.5s; }
.hc-vfloat--a .hc-vfloat__ic { background: linear-gradient(135deg, #7c3aed, #9b5cff); }
.hc-vfloat--b .hc-vfloat__ic { background: #25D366; }

@media (max-width: 900px) {
  .hc-vhero { padding: 96px 0 72px; }
  .hc-vhero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hc-vhero__aurora { inset: -12% -20% 30% -20%; }
  .hc-vmock { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .hc-vfloat { display: none; }
}

/* ───────────────────────────────  10o · PROSE + STATS + FORMS  ── */
.hc-prose { color: var(--hc-body); font-size: 1.05rem; line-height: 1.78; }
.hc-prose--center { max-width: 720px; margin-inline: auto; }
.hc-prose > :first-child { margin-top: 0; }
.hc-prose p, .hc-prose ul, .hc-prose ol, .hc-prose blockquote { margin-top: 1.1em; }
.hc-prose h2 { font-size: 1.55rem; color: var(--hc-ink); margin-top: 1.7em; margin-bottom: .1em; letter-spacing: -.02em; }
.hc-prose h3 { font-size: 1.22rem; color: var(--hc-ink); margin-top: 1.5em; margin-bottom: .1em; }
.hc-prose a { color: var(--hc-red); font-weight: 600; }
.hc-prose a:hover { color: var(--hc-red-700); text-decoration: underline; }
.hc-prose ul, .hc-prose ol { padding-left: 1.4em; }
.hc-prose li { margin-top: .5em; }
.hc-prose strong { color: var(--hc-ink); font-weight: 700; }
.hc-prose blockquote { border-left: 3px solid var(--hc-red); padding-left: 18px; color: var(--hc-muted); font-style: italic; }
.hc-prose hr { border: 0; border-top: 1px solid var(--hc-line); margin: 2em 0; }

.hc-statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hc-statb { text-align: center; padding: 30px 20px; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-lg); box-shadow: var(--hc-sh-xs); transition: transform .25s var(--hc-ease), box-shadow .28s var(--hc-ease); }
.hc-statb:hover { transform: translateY(-4px); box-shadow: var(--hc-sh-md); }
.hc-statb b { display: block; font-size: 2.2rem; font-weight: 850; letter-spacing: -.03em; background: linear-gradient(120deg, var(--hc-red), #ff5a3c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hc-statb small { display: block; font-size: .9rem; color: var(--hc-muted); margin-top: 8px; }

/* premium form fields */
.hc-form { display: grid; gap: 18px; }
.hc-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hc-field { display: grid; gap: 7px; }
.hc-field label { font-size: .86rem; font-weight: 650; color: var(--hc-ink-2); }
.hc-field label .req { color: var(--hc-red); }
.hc-input, .hc-select, .hc-textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--hc-ink);
  background: #fff; border: 1px solid var(--hc-line-strong); border-radius: 12px;
  padding: 12px 14px; transition: border-color .18s var(--hc-ease), box-shadow .18s var(--hc-ease);
}
.hc-input::placeholder, .hc-textarea::placeholder { color: var(--hc-faint); }
.hc-input:focus, .hc-select:focus, .hc-textarea:focus { outline: none; border-color: var(--hc-red); box-shadow: 0 0 0 4px rgba(204,0,0,.12); }
.hc-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.hc-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.hc-field__err { font-size: .82rem; color: var(--hc-red); }
.hc-input.is-invalid, .hc-select.is-invalid, .hc-textarea.is-invalid { border-color: var(--hc-red); }
.hc-alert { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border-radius: 12px; font-size: .92rem; }
.hc-alert--ok { background: #f0fdf4; border: 1px solid #d6f5df; color: #15803d; }
.hc-alert .bi { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* 404 / error page */
.hc-err { min-height: calc(100vh - var(--hc-nav-h)); display: grid; place-items: center; text-align: center; padding: 60px 0; position: relative; overflow: hidden; }
.hc-err__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; filter: blur(60px); opacity: .5;
  background: radial-gradient(30% 40% at 30% 30%, rgba(255,45,85,.28), transparent 70%), radial-gradient(30% 40% at 72% 45%, rgba(155,92,255,.22), transparent 70%), radial-gradient(30% 40% at 50% 70%, rgba(255,106,61,.2), transparent 70%); }
.hc-err__inner { position: relative; z-index: 1; max-width: 620px; padding-inline: 24px; }
.hc-err__code { font-size: clamp(6rem, 3.5rem + 15vw, 13rem); font-weight: 850; line-height: .86; letter-spacing: -.06em; background: linear-gradient(120deg, #CC0000 0%, #ff5a3c 48%, #ff3d81 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 14px; }
.hc-err__inner h1 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem); letter-spacing: -.02em; margin-bottom: 14px; }
.hc-err__inner p { font-size: 1.08rem; color: var(--hc-muted); line-height: 1.6; margin-bottom: 30px; }
.hc-err__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.hc-err__links { display: flex; gap: 8px 22px; justify-content: center; flex-wrap: wrap; }
.hc-err__links a { display: inline-flex; align-items: center; gap: 7px; font-size: .92rem; font-weight: 600; color: var(--hc-muted); transition: color .18s; }
.hc-err__links a:hover { color: var(--hc-red); }
.hc-err__links .bi { color: var(--hc-red); }

/* demo — interactive "try it live" browser + widget screen */
.hc-trydemo { position: relative; max-width: 980px; margin-inline: auto; }
.hc-trydemo::before { content: ''; position: absolute; inset: 10% 6% -4% 6%; z-index: 0; border-radius: 40px; filter: blur(50px); opacity: .5; background: radial-gradient(50% 60% at 30% 40%, rgba(204,0,0,.3), transparent 70%), radial-gradient(50% 60% at 75% 60%, rgba(155,92,255,.26), transparent 70%); }
.hc-trybrowser { position: relative; z-index: 1; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); overflow: hidden; box-shadow: var(--hc-sh-lg); }
.hc-trybrowser__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: var(--hc-bg-soft); border-bottom: 1px solid var(--hc-line-2); }
.hc-trybrowser__bar i.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.hc-trybrowser__bar .r { background: #ff5f57; } .hc-trybrowser__bar .y { background: #febc2e; } .hc-trybrowser__bar .g { background: #28c840; }
.hc-trybrowser__url { margin-left: 10px; flex: 1; max-width: 380px; font-size: .8rem; color: var(--hc-faint); background: #fff; border: 1px solid var(--hc-line-2); border-radius: 999px; padding: 7px 16px; display: inline-flex; align-items: center; gap: 7px; }
.hc-trybrowser__body { position: relative; min-height: 470px; background: linear-gradient(180deg, #fff, var(--hc-bg-soft)); padding: 34px; overflow: hidden; }
.hc-tryskel { display: grid; gap: 14px; max-width: 60%; }
.hc-tryskel i { height: 14px; border-radius: 999px; background: var(--hc-line-2); display: block; }
.hc-tryskel i.t { height: 26px; width: 55%; background: var(--hc-line); }
.hc-tryskel i.s { width: 70%; } .hc-tryskel i.m { width: 90%; }
.hc-tryskel__cards { display: flex; gap: 16px; margin-top: 30px; }
.hc-tryskel__cards span { width: 150px; height: 96px; border-radius: 14px; background: #fff; border: 1px solid var(--hc-line-2); box-shadow: var(--hc-sh-xs); }

.hc-trywidget { position: absolute; bottom: 26px; right: 26px; width: 340px; background: #fff; border: 1px solid var(--hc-line); border-radius: 20px; box-shadow: var(--hc-sh-lg); overflow: hidden; }
.hc-trywidget__head { background: linear-gradient(135deg, var(--hc-red), #ff3d5f); color: #fff; padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.hc-trywidget__head .av { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.1rem; }
.hc-trywidget__head b { display: block; font-size: .92rem; font-weight: 700; }
.hc-trywidget__head small { font-size: .74rem; opacity: .85; display: inline-flex; align-items: center; gap: 5px; }
.hc-trywidget__head small::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,.3); }
.hc-trywidget__body { padding: 16px; display: grid; gap: 11px; background: var(--hc-bg-soft); }
.hc-trybub { max-width: 82%; padding: 10px 13px; font-size: .84rem; line-height: 1.45; border-radius: 14px; }
.hc-trybub.bot { background: #fff; border: 1px solid var(--hc-line); color: var(--hc-ink-2); border-bottom-left-radius: 5px; }
.hc-trybub.me { background: var(--hc-red); color: #fff; justify-self: end; border-bottom-right-radius: 5px; }
.hc-trychips { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 16px 12px; background: var(--hc-bg-soft); }
.hc-trychips span { font-size: .78rem; font-weight: 600; color: var(--hc-red); background: #fff; border: 1px solid rgba(204,0,0,.25); border-radius: 999px; padding: 6px 12px; }
.hc-trychips span.on { background: var(--hc-red); color: #fff; border-color: var(--hc-red); }
.hc-trywidget__input { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--hc-line-2); background: #fff; }
.hc-trywidget__input .box { flex: 1; font-size: .82rem; color: var(--hc-faint); }
.hc-trywidget__input .send { width: 34px; height: 34px; border-radius: 50%; background: var(--hc-red); color: #fff; display: grid; place-items: center; box-shadow: var(--hc-sh-red); }

@media (max-width: 620px) {
  .hc-trybrowser__body { min-height: 520px; padding: 22px; }
  .hc-trywidget { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .hc-tryskel { max-width: 100%; }
}

/* demo — booking card with dark gradient aside */
.hc-demobook { display: grid; grid-template-columns: .82fr 1.18fr; background: #fff; border: 1px solid var(--hc-line); border-radius: var(--hc-r-xl); overflow: hidden; box-shadow: var(--hc-sh-lg); max-width: 1040px; margin-inline: auto; }
.hc-demobook__aside { position: relative; overflow: hidden; padding: 42px 34px; color: rgba(255,255,255,.9); background: linear-gradient(165deg, #23090f 0%, #12111c 58%, #0b0f18 100%); }
.hc-demobook__aside::before { content: ''; position: absolute; top: -18%; left: -22%; width: 340px; height: 340px; border-radius: 50%; filter: blur(60px); background: radial-gradient(circle, rgba(255,45,85,.55), transparent 70%); opacity: .55; pointer-events: none; }
.hc-demobook__aside::after { content: ''; position: absolute; bottom: -20%; right: -25%; width: 300px; height: 300px; border-radius: 50%; filter: blur(58px); background: radial-gradient(circle, rgba(155,92,255,.45), transparent 70%); opacity: .5; pointer-events: none; }
.hc-demobook__aside > * { position: relative; z-index: 1; }
.hc-demobook__aside h3 { color: #fff; font-size: 1.55rem; font-weight: 820; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 24px; }
.hc-demolist { list-style: none; display: grid; gap: 15px; margin: 0 0 26px; padding: 0; }
.hc-demolist li { display: flex; align-items: flex-start; gap: 12px; font-size: .96rem; color: rgba(255,255,255,.86); line-height: 1.4; }
.hc-demolist li .bi { color: #34d399; font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.hc-demobook__aside .div { border: 0; border-top: 1px solid rgba(255,255,255,.12); margin: 26px 0; }
.hc-demohost { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.hc-demohost__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--hc-red), #ff5a5a); display: grid; place-items: center; color: #fff; font-size: 1.15rem; flex-shrink: 0; box-shadow: var(--hc-sh-red); }
.hc-demohost b { color: #fff; font-size: .93rem; font-weight: 700; display: block; }
.hc-demohost small { color: rgba(255,255,255,.55); font-size: .8rem; }
.hc-demoprivacy { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.5); }
.hc-demoprivacy .bi { color: #34d399; }
.hc-demobook__form { padding: 40px 38px; }

/* chip radios (preferred time) */
.hc-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hc-chips input { position: absolute; opacity: 0; width: 0; height: 0; }
.hc-chips label { display: inline-block; padding: 10px 17px; border: 1px solid var(--hc-line-strong); border-radius: 999px; font-size: .89rem; font-weight: 600; color: var(--hc-body); cursor: pointer; transition: color .18s, background .18s, border-color .18s, box-shadow .18s; }
.hc-chips label:hover { border-color: var(--hc-red); color: var(--hc-ink); }
.hc-chips input:checked + label { background: var(--hc-red); border-color: var(--hc-red); color: #fff; box-shadow: var(--hc-sh-red); }
.hc-chips input:focus-visible + label { box-shadow: 0 0 0 4px rgba(204,0,0,.15); }

@media (max-width: 820px) {
  .hc-demobook { grid-template-columns: 1fr; }
  .hc-demobook__aside { padding: 34px 28px; }
  .hc-demobook__form { padding: 32px 26px; }
}

/* contact — stacked info cards */
.hc-contactfx { position: relative; overflow-x: clip; }
.hc-contactfx::before { content: ''; position: absolute; top: -60px; left: -80px; width: 520px; height: 420px; z-index: 0; pointer-events: none; filter: blur(30px); opacity: .55;
  background: radial-gradient(40% 50% at 30% 40%, rgba(255,45,85,.18), transparent 70%), radial-gradient(40% 50% at 70% 60%, rgba(155,92,255,.14), transparent 70%); }
.hc-contactfx > * { position: relative; z-index: 1; }
.hc-cstack { display: grid; gap: 12px; align-content: start; }
.hc-ccard { display: flex; align-items: center; gap: 15px; padding: 15px 18px; background: linear-gradient(160deg, #fff, var(--hc-bg-soft)); border: 1px solid var(--hc-line); border-radius: var(--hc-r-md); box-shadow: var(--hc-sh-xs); transition: transform .22s var(--hc-ease), box-shadow .24s var(--hc-ease), border-color .22s; }
.hc-ccard:hover { transform: translateY(-3px); box-shadow: var(--hc-sh-md); border-color: var(--hc-line-strong); }
.hc-ccard .hc-ic { width: 42px; height: 42px; font-size: 1.1rem; flex-shrink: 0; }
.hc-ccard__b { min-width: 0; }
.hc-ccard b { display: block; font-size: .96rem; color: var(--hc-ink); font-weight: 700; margin-bottom: 2px; }
.hc-ccard p { font-size: .86rem; color: var(--hc-muted); line-height: 1.45; margin: 0; }
.hc-ccard .mail { display: inline-flex; align-items: center; gap: 8px; color: var(--hc-red); font-weight: 650; font-size: .95rem; margin-bottom: 4px; flex-wrap: wrap; }
.hc-ccard .mail a:hover { color: var(--hc-red-700); }
.hc-ccard .hc-link { font-size: .9rem; margin-top: 8px; }
.hc-copy { border: 0; background: var(--hc-bg-softer); color: var(--hc-muted); font-size: .74rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; transition: color .16s, background .16s; }
.hc-copy:hover { color: var(--hc-red); background: var(--hc-red-tint); }
.hc-copy.done { color: #16a34a; background: #f0fdf4; }

/* contact info list */
.hc-cinfo { display: grid; gap: 16px; }
.hc-cinfo__row { display: flex; align-items: center; gap: 14px; }
.hc-cinfo__row .hc-ic { width: 44px; height: 44px; font-size: 1.15rem; flex-shrink: 0; }
.hc-cinfo__row b { display: block; font-size: .95rem; color: var(--hc-ink); }
.hc-cinfo__row a, .hc-cinfo__row span { font-size: .92rem; color: var(--hc-muted); }
.hc-cinfo__row a:hover { color: var(--hc-red); }

/* About vibrant tweaks */
.hc-vhero--about .hc-vhero__inner { grid-template-columns: 1.02fr .98fr; }
.hc-vhero--about .hc-shero__visual { margin: 0; }
.hc-storyx__media { position: relative; }
.hc-vcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hc-vcard { position: relative; overflow: hidden; padding: 30px 26px; border-radius: var(--hc-r-lg); background: linear-gradient(160deg, #fff, var(--hc-bg-soft)); border: 1px solid var(--hc-line); box-shadow: var(--hc-sh-sm); transition: transform .28s var(--hc-ease), box-shadow .3s var(--hc-ease); }
.hc-vcard:hover { transform: translateY(-5px); box-shadow: var(--hc-sh-md); }
.hc-vcard__glow { position: absolute; top: -30%; right: -20%; width: 200px; height: 200px; border-radius: 50%; filter: blur(50px); opacity: .5; background: radial-gradient(circle, rgba(255,45,85,.4), transparent 70%); pointer-events: none; }
.hc-vcard .hc-ic { position: relative; z-index: 1; width: 52px; height: 52px; font-size: 1.5rem; margin-bottom: 18px; box-shadow: var(--hc-sh-sm); }
.hc-vcard h3 { position: relative; z-index: 1; font-size: 1.14rem; font-weight: 750; color: var(--hc-ink); margin-bottom: 8px; }
.hc-vcard p { position: relative; z-index: 1; font-size: .93rem; line-height: 1.6; color: var(--hc-muted); }
@media (max-width: 900px) { .hc-vcards { grid-template-columns: 1fr; } }

/* About — 2-column story + numbered values (editorial) */
.hc-storyx { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.hc-storyx__h { position: sticky; top: 100px; }
.hc-storyx__h .hc-eyebrow { margin-bottom: 16px; }
.hc-storyx__h h2 { font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.8rem); font-weight: 850; letter-spacing: -.035em; line-height: 1.08; color: var(--hc-ink); }
.hc-storyx__body { font-size: 1.12rem; line-height: 1.8; color: var(--hc-body); }
.hc-storyx__body > :first-child { margin-top: 0; }
.hc-storyx__body p + p { margin-top: 1.2em; }

.hc-vals { display: grid; }
.hc-val { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 34px 0; border-top: 1px solid var(--hc-line); align-items: start; }
.hc-val:last-child { border-bottom: 1px solid var(--hc-line); }
.hc-val__n { font-size: 2.1rem; font-weight: 850; letter-spacing: -.04em; line-height: 1; background: linear-gradient(135deg, var(--hc-red), #ff5a3c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hc-val__b h3 { font-size: clamp(1.3rem, 1.05rem + .7vw, 1.7rem); font-weight: 780; letter-spacing: -.02em; color: var(--hc-ink); margin-bottom: 8px; }
.hc-val__b p { font-size: 1.04rem; line-height: 1.6; color: var(--hc-muted); max-width: 620px; }

@media (max-width: 860px) {
  .hc-storyx { grid-template-columns: 1fr; gap: 28px; }
  .hc-storyx__h { position: static; }
  .hc-val { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .hc-val__n { font-size: 1.7rem; }
}

/* FAQ page — sidebar layout + categories + search */
.hc-faqlayout { display: grid; grid-template-columns: 236px 1fr; gap: 52px; align-items: start; max-width: 1000px; margin-inline: auto; }
.hc-faqnav { position: sticky; top: 100px; display: grid; gap: 3px; }
.hc-faqnav__label { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--hc-faint); font-weight: 700; padding: 0 14px 10px; }
.hc-faqnav a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 14px; border-radius: 10px; font-size: .9rem; font-weight: 600; color: var(--hc-muted); transition: color .18s var(--hc-ease), background .18s; }
.hc-faqnav a .n { font-size: .73rem; font-weight: 700; opacity: .7; }
.hc-faqnav a:hover { color: var(--hc-ink); background: var(--hc-bg-soft); }
.hc-faqnav a.active { color: var(--hc-red); background: var(--hc-red-tint); }
.hc-faqnav a[hidden] { display: none; }
.hc-faqcol { display: grid; gap: 36px; min-width: 0; }
@media (max-width: 860px) {
  .hc-faqlayout { grid-template-columns: 1fr; gap: 8px; }
  .hc-faqnav { position: static; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .hc-faqnav__label { display: none; }
  .hc-faqnav a { background: #fff; border: 1px solid var(--hc-line); }
  .hc-faqnav a .n { display: none; }
}

.hc-faqcat { margin-bottom: 40px; }
.hc-faqcat:last-of-type { margin-bottom: 0; }
.hc-faqcat__title { font-size: 1.18rem; font-weight: 750; color: var(--hc-ink); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; letter-spacing: -.01em; }
.hc-faqcat__title .cnt { font-size: .74rem; font-weight: 700; color: var(--hc-muted); background: var(--hc-bg-softer); border-radius: 999px; padding: 3px 10px; }
.hc-faqsearch { position: relative; max-width: 480px; margin: 26px auto 0; }
.hc-faqsearch .bi { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); color: var(--hc-faint); font-size: 1rem; }
.hc-faqsearch input { width: 100%; font: inherit; font-size: .95rem; color: var(--hc-ink); padding: 13px 18px 13px 44px; border: 1px solid var(--hc-line-strong); border-radius: 999px; background: #fff; box-shadow: var(--hc-sh-xs); transition: border-color .18s, box-shadow .18s; }
.hc-faqsearch input::placeholder { color: var(--hc-faint); }
.hc-faqsearch input:focus { outline: none; border-color: var(--hc-red); box-shadow: 0 0 0 4px rgba(204,0,0,.1); }
.hc-faqcat[hidden], .hc-faq__item[hidden] { display: none; }
.hc-faqempty { text-align: center; color: var(--hc-muted); padding: 24px; display: none; }

/* pagination (Laravel bootstrap-5 paginator, restyled for the hc- shell) */
.hc .pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; list-style: none; padding: 0; margin: 48px 0 0; }
.hc .page-item .page-link { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 11px; border: 1px solid var(--hc-line); background: #fff; color: var(--hc-body); font-weight: 600; font-size: .9rem; transition: border-color .18s, color .18s, background .18s; }
.hc .page-item .page-link:hover { border-color: var(--hc-line-strong); color: var(--hc-ink); }
.hc .page-item.active .page-link { background: var(--hc-red); border-color: var(--hc-red); color: #fff; box-shadow: var(--hc-sh-red); }
.hc .page-item.disabled .page-link { opacity: .4; pointer-events: none; }
.hc .page-link svg { width: 16px; height: 16px; }

@media (max-width: 700px) {
  .hc-statband { grid-template-columns: repeat(2, 1fr); }
  .hc-form__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────  11 · FOOTER (light)  ── */
.hc-footer { background: var(--hc-bg-soft); color: var(--hc-muted); position: relative; border-top: 1px solid var(--hc-line); }
.hc-footer::before { content:''; position:absolute; inset:0 0 auto 0; height:2px; background:linear-gradient(90deg, transparent, rgba(204,0,0,.55) 35%, rgba(155,92,255,.4) 50%, rgba(255,106,61,.45) 65%, transparent); }

.hc-footer__top { padding-block: 64px 44px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px 40px; }
.hc-footer__brand { max-width: 340px; }
.hc-footer__brand img { max-height: 30px; margin-bottom: 20px; }
.hc-footer__brand p { font-size: .93rem; line-height: 1.68; color: var(--hc-muted); }
.hc-footer__social { display: flex; gap: 10px; margin-top: 24px; }
.hc-footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: #fff; border: 1px solid var(--hc-line); color: var(--hc-muted); font-size: 1.05rem; box-shadow: var(--hc-sh-xs); transition: background .2s var(--hc-ease), color .2s, transform .2s var(--hc-ease), border-color .2s, box-shadow .2s; }
.hc-footer__social a:hover { background: linear-gradient(120deg, #CC0000, #ff3d5f); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px -8px rgba(255,61,95,.4); }

.hc-footer__col h4 { font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--hc-faint); font-weight: 700; margin-bottom: 14px; }
.hc-footer__col a { display: block; width: fit-content; font-size: .93rem; color: var(--hc-body); padding: 7px 0; transition: color .18s var(--hc-ease), transform .18s var(--hc-ease); }
.hc-footer__col a:hover { color: var(--hc-red); transform: translateX(3px); }

.hc-footer__bottom { border-top: 1px solid var(--hc-line); padding-block: 26px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.hc-footer__bottom p { font-size: .86rem; color: var(--hc-muted); }
.hc-footer__status { display: inline-flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--hc-muted); }
.hc-footer__pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.15); }

/* ─────────────────────────────────────────────  12 · ANIMATION UTILITIES ── */
.hc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--hc-ease-out), transform .7s var(--hc-ease-out); will-change: opacity, transform; }
.hc-reveal.in { opacity: 1; transform: none; }
.hc-reveal[data-d="1"] { transition-delay: .08s } .hc-reveal[data-d="2"] { transition-delay: .16s }
.hc-reveal[data-d="3"] { transition-delay: .24s } .hc-reveal[data-d="4"] { transition-delay: .32s }
.hc-reveal[data-d="5"] { transition-delay: .40s } .hc-reveal[data-d="6"] { transition-delay: .48s }

@media (prefers-reduced-motion: reduce) {
  .hc-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hc-hero__mesh, .hc-float, .hc-typing i, .hc-btn, .hc-mega, .hc-omni__pulse, .hc-omni__wire::after, .hc-blob, .hc-vfloat { animation: none !important; }
  .hc * { scroll-behavior: auto !important; }
}

/* ─────────────────────────────────────────────  13 · RESPONSIVE  ── */
@media (max-width: 1080px) { :root { --hc-section-y: 84px; } }
@media (max-width: 980px) {
  .hc-fgrid, .hc-fgrid--4 { grid-template-columns: repeat(2, 1fr); }
  .hc-quotes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hc-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hc-hero__sub, .hc-hero__title { max-width: none; }
  .hc-mock { max-width: 460px; margin-inline: auto; }
  .hc-float--tl { left: 2%; } .hc-float--br { right: 2%; }
  .hc-footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 40px 24px; }
  .hc-footer__brand { grid-column: 1 / -1; max-width: 420px; }
  .hc-mega { grid-template-columns: 1fr; }
  .hc-split { grid-template-columns: 1fr; gap: 40px; }
  .hc-split > *, .hc-split__li, .hc-split__li > * { min-width: 0; }
  .hc-split--rev .hc-split__media { order: 0; }
  .hc-steps { grid-template-columns: 1fr; gap: 16px; }
  .hc-step__arrow { display: none; }
}
@media (max-width: 620px) {
  .hc-plans { grid-template-columns: 1fr; max-width: 420px; }
  .hc-plan--pop { order: -1; }
}
@media (max-width: 700px) {
  .hc-points { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .hc-fgrid, .hc-fgrid--4 { grid-template-columns: 1fr; }
  .hc-quotes { grid-template-columns: 1fr; }
  .hc-cta { padding: 52px 24px; }
  .hc-fhero { padding: 68px 0 52px; }
  .hc-pointcard { padding: 28px 22px; }
  .hc-footer__top { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .hc-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 560px) {
  :root { --hc-section-y: 64px; --hc-gutter: 18px; }
  .hc-hero { padding-top: 52px; padding-bottom: 68px; }
  .hc-hero__actions .hc-btn { width: 100%; }
  .hc-footer__top { grid-template-columns: 1fr; }
  .hc-float { display: none; }
  .hc-trustrow { gap: 14px; }
  /* small phones: only logo + burger (Get started lives in the drawer) */
  .hc-nav__cta { display: none; }
  .hc-nav__inner { gap: 12px; }
}
