/* ============================================================
   LiveChatAi Website — Black & White Edition
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #ffffff;
}
html.home-page-root {
  background: #212020;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Shared dashboard app footer */
.dash-main .app-footer {
  margin-top: 24px;
  padding: 22px 24px 10px;
  color: #64748b;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}
.dash-main .app-footer p { margin: 0; }

.h-main .app-footer {
  margin-top: 24px;
  padding: 22px 24px 10px;
  color: #64748b;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}
.h-main .app-footer p { margin: 0; }

:root {
  --black:       #212020;
  --dark:        #141414;
  --gray-900:    #1a1a1a;
  --gray-800:    #222;
  --gray-700:    #333;
  --gray-600:    #555;
  --gray-500:    #666;
  --gray-400:    #999;
  --gray-300:    #bbb;
  --gray-200:    #e0e0e0;
  --gray-150:    #e8e8e8;
  --gray-100:    #f5f5f5;
  --gray-50:     #fafafa;
  --white:       #ffffff;
  --text:        #333;
  --text-muted:  #666;
  --border:      #e0e0e0;
  --bg-light:    #f5f5f5;
  --success:     #1a1a1a;
  --radius:      12px;
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 50px rgba(0,0,0,.18);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.gradient-text { color: var(--black); font-style: italic; }

/* Boxed landing-page layout: keep the site contained on wide screens while
   preserving the edge-to-edge mobile experience. */
body.home-page {
  background: #ffffff;
}
.home-shell {
  position: relative;
  width: min(1360px, calc(100% - 80px));
  min-height: 100vh;
  margin: 0 auto;
  overflow: visible;
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 0;
  box-shadow: none;
}
/* Keep the boxed layout rails visible over the full-width copyright strip. */
body.home-page .home-shell::before,
body.home-page .home-shell::after {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  z-index: 20;
  width: 1px;
  background: #d9dee7;
  pointer-events: none;
}
body.home-page .home-shell::before { left: -1px; }
body.home-page .home-shell::after { right: -1px; }
body.home-page .nav {
  top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 160px); max-width: 1080px;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  transition: background .35s, border-color .35s, box-shadow .35s;
  mix-blend-mode: normal;
}
.nav .btn-primary {
  background: #111;
  border: 1.5px solid #111;
  color: #fff;
  box-shadow: none;
}
.nav .btn-primary:hover {
  background: #333;
  border-color: #333;
  box-shadow: none;
  transform: none;
}
.nav.scrolled .btn-primary {
  background: #fff;
  border-color: rgba(255,255,255,.3);
  color: #111;
}
.nav.scrolled .btn-primary:hover {
  background: rgba(255,255,255,.85);
}
.nav-inner {
  max-width: 100%; margin: 0 auto; padding: 0 24px;
  height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; color: #111; transition: color .35s; }
.nav-logo img { width: 36px; height: 36px; border-radius: 10px; object-fit: contain; visibility: hidden; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: #444;
  padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: #111; background: rgba(0,0,0,.06); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Language Switcher ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.12);
  color: #444; font-size: 13px; font-weight: 600;
  padding: 6px 11px; border-radius: 8px; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(0,0,0,.1); color: #111; }
.lang-btn svg { flex-shrink: 0; }
.lang-caret { transition: transform .2s; }
.lang-btn[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 148px; background: #111; border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 4px; box-shadow: 0 12px 32px rgba(0,0,0,.5);
  z-index: 9999;
}
.lang-dropdown.open { display: block; }
.lang-flag-img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }
#langFlag { visibility: hidden; }
.lang-opt {
  display: flex; align-items: center; gap: 9px; width: 100%;
  background: none; border: none; color: rgba(220,220,220,.85);
  font-size: 13.5px; font-weight: 500; padding: 9px 12px; border-radius: 7px;
  cursor: pointer; text-align: left; transition: background .15s, color .15s;
}
.lang-opt:hover { background: rgba(255,255,255,.08); color: #fff; }
.lang-opt.active { background: rgba(255,255,255,.12); color: #fff; }
.nav.scrolled .lang-btn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.nav.scrolled .lang-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
@media (max-width: 768px) {
  .lang-switcher { display: none; }
  .nav-cta.open .lang-switcher { display: flex !important; width: 100%; flex-direction: column; align-items: center; }
  .nav-cta.open .lang-btn { width: auto; justify-content: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,.06); border-radius: 8px; }
  .nav-cta.open #langFlag { visibility: visible; }
  .nav-cta.open .lang-dropdown { position: static; width: 100%; margin-top: 4px; box-shadow: none; border-radius: 10px; }
}

/* RTL */
[dir="rtl"] .nav-inner  { flex-direction: row-reverse; }
[dir="rtl"] .nav-links  { flex-direction: row-reverse; }
[dir="rtl"] .nav-cta    { flex-direction: row-reverse; }
[dir="rtl"] .nav-logo   { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: 0; left: auto; }
[dir="rtl"] .lang-opt { text-align: right; }
[dir="rtl"] .lang-caret { transform: none; }
[dir="rtl"] .lang-btn[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.nav-login { font-size: 15px; font-weight: 600; color: #444; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.nav-login:hover { color: #111; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black);
  color: #fff; padding: 10px 20px; border-radius: 8px;
  font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.25); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: #333; border-radius: 2px; transition: background .35s; }

/* Scrolled */
.nav.scrolled {
  background-color: #302F2F !important;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
  mix-blend-mode: normal;
}
.nav.scrolled .nav-logo              { color: #fff; }
.nav.scrolled .nav-links a           { color: rgba(255,255,255,.8); }
.nav.scrolled .nav-links a:hover     { color: #fff; background: rgba(255,255,255,.1); }
.nav.scrolled .nav-login             { color: rgba(255,255,255,.8); }
.nav.scrolled .nav-login:hover       { color: #fff; }
.nav.scrolled .nav-toggle span       { background: rgba(255,255,255,.9); }

/* Use a white menu only while the navbar overlaps the requested sections. */
.nav.on-dark-section {
  background: #fff !important;
  border-color: rgba(0,0,0,.1) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.12) !important;
}
.nav.on-dark-section .nav-logo              { color: #111 !important; }
.nav.on-dark-section .nav-links a           { color: #444 !important; }
.nav.on-dark-section .nav-links a:hover     { color: #111 !important; background: rgba(0,0,0,.06) !important; }
.nav.on-dark-section .nav-login             { color: #444 !important; }
.nav.on-dark-section .nav-login:hover       { color: #111 !important; }
.nav.on-dark-section .nav-toggle span       { background: #333 !important; }
.nav.on-dark-section .btn-primary {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}
.nav.on-dark-section .btn-primary:hover { background: #333 !important; }
.nav.on-dark-section .lang-btn {
  background: rgba(0,0,0,.05) !important;
  border-color: rgba(0,0,0,.12) !important;
  color: #444 !important;
}
.nav.on-dark-section .lang-btn:hover { background: rgba(0,0,0,.1) !important; color: #111 !important; }

/* Keep the expanded mobile menu readable against its dark overlay. */
.nav-links.open a,
.nav-links.open a:hover {
  color: #fff !important;
}
.nav-cta.open {
  color: #f5f5f5 !important;
}
.nav-cta.open .nav-login,
.nav-cta.open .lang-btn {
  color: #f5f5f5 !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — pure black with grain
   ═══════════════════════════════════════════════════════════════ */
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%      { transform: translate(-2%,-3%); }
  20%      { transform: translate(3%, 1%); }
  30%      { transform: translate(-1%, 4%); }
  40%      { transform: translate(4%,-1%); }
  50%      { transform: translate(-3%, 2%); }
  60%      { transform: translate(2%, 3%); }
  70%      { transform: translate(-4%,-2%); }
  80%      { transform: translate(1%, 4%); }
  90%      { transform: translate(3%,-3%); }
}

/* VoicePoweredOrb full-screen hero background */
.hero-orb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
@media (max-width: 768px) {
  .hero-orb-bg { display: none; }
}

.hero {
  min-height: auto;
  padding: 140px 24px 48px;
  background: #212020;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Background motion — decorative icons stay behind the hero's readable content. */
.hero-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-floating-icon {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--size) * 1.2);
  height: calc(var(--size) * 1.2);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  color: rgba(255,255,255,.3);
  font-size: calc(var(--size) * .46);
  opacity: .5;
  transform: rotate(-6deg);
  animation: heroIconFloat var(--duration) var(--delay) ease-in-out infinite alternate;
  will-change: transform;
}
.hero-floating-icon--alt {
  border-radius: 50%;
  color: rgba(183,190,255,.33);
  animation-name: heroIconFloatAlt;
}
.hero-floating-icon--fast {
  animation-duration: 8s;
}
.hero-floating-icon--center {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: rgba(235,238,255,.42);
  opacity: .7;
  animation-name: heroIconFloatCenter;
}
.hero-floating-icon--mobile-hide {
  /* Decorative on desktop; selectively removed below to keep phones airy. */
}
@keyframes heroIconFloat {
  0% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  35% { transform: translate3d(18px, -24px, 0) rotate(7deg); }
  70% { transform: translate3d(-12px, -46px, 0) rotate(-4deg); }
  100% { transform: translate3d(10px, -62px, 0) rotate(6deg); }
}
@keyframes heroIconFloatAlt {
  0% { transform: translate3d(0, 0, 0) rotate(9deg) scale(.9); }
  35% { transform: translate3d(-20px, 20px, 0) rotate(-7deg) scale(1.08); }
  70% { transform: translate3d(14px, -34px, 0) rotate(5deg) scale(.96); }
  100% { transform: translate3d(-10px, -52px, 0) rotate(-6deg) scale(1.02); }
}
@keyframes heroIconFloatCenter {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(.9); }
  25% { transform: translate3d(12px, -12px, 0) rotate(8deg) scale(1.05); }
  50% { transform: translate3d(-8px, -26px, 0) rotate(-6deg) scale(.96); }
  75% { transform: translate3d(-16px, 8px, 0) rotate(5deg) scale(1.08); }
  100% { transform: translate3d(8px, 20px, 0) rotate(-4deg) scale(.92); }
}
@media (max-width: 768px) {
  .hero-floating-icon { opacity: .28; transform: scale(.82); }
  .hero-floating-icon--fast { animation-duration: 9s; }
  .hero-floating-icon--center { opacity: .34; transform: scale(.72); }
  /*
   * Keep the four largest edge icons out of the phone composition, but let
   * the smaller accents fill in the sides and lower portion of the hero.
   * The foreground content remains above this decorative layer.
   */
  .hero-floating-icon:nth-child(28),
  .hero-floating-icon:nth-child(30),
  .hero-floating-icon:nth-child(33),
  .hero-floating-icon:nth-child(35) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-floating-icon { animation: none; }
}

/* Static equivalent of gradient-background-4 — no React runtime required */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    125% 125% at 50% -50%,
    rgba(99, 102, 241, .21) 40%,
    transparent 100%
  );
  z-index: 0;
  animation: none;
}

@keyframes blobShift {
  0%   { opacity: 1; }
  50%  { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Grain overlay */
.hero::after {
  display: none;
}

.hero .hero-grid,
.hero .hero-scroll,
.hero .hero-particles {
  position: relative;
  z-index: 2;
}

/* Particles — white dots */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  opacity: 0;
  animation: particleDrift var(--dur) var(--d) ease-in-out infinite alternate;
}
@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  30%  { opacity: 0.4; }
  70%  { opacity: 0.25; }
  100% { opacity: 0; transform: translateY(-40px) scale(1.5); }
}

.hero-title,
.hero-content h1 { color: #f0f0f0; }
.hero-title .gradient-text { color: #ffffff; }
.how-headline .gradient-text { color: #4f46e5; }
.hero-desc { color: rgba(200,200,200,.8); }
.hero-scroll span { color: rgba(200,200,200,.5); }
.scroll-arrow { color: rgba(200,200,200,.5); }

.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-inline-end: 36px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  color: rgba(240,240,240,.9); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; width: fit-content;
}
.badge-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.2); } }

.hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: #f5f5f5;
  line-height: 1.1; letter-spacing: -0.03em;
}
.hero-desc { font-size: 18px; color: rgba(200,200,200,.78); line-height: 1.75; max-width: 520px; }
.hero-desc strong { color: #e8e8e8; }
.hero-cta { display: flex; flex-direction: column; gap: 16px; }
.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(200,200,200,.7); font-weight: 500;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: #999; font-size: 13px; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: #0a0a0a; padding: 16px 32px; border-radius: 12px;
  font-weight: 700; font-size: 16px; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 8px 32px rgba(255,255,255,.15); width: fit-content;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,.22); color: #0a0a0a; }

.hero-proof { display: flex; align-items: center; gap: 16px; }
.proof-avatars { display: flex; align-items: center; }
.proof-avatars img {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #333;
  margin-left: -10px; object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-count {
  width: 36px; height: 36px; border-radius: 50%;
  background: #333;
  color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px; border: 2px solid #333;
}
.proof-text { display: flex; flex-direction: column; gap: 2px; }
.proof-stars { color: #ccc; font-size: 12px; letter-spacing: 1px; }
.proof-text span { font-size: 13px; color: rgba(200,200,200,.6); }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(.86);
  transform-origin: center;
}
.widget-preview { position: relative; animation: none; }
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(.4deg); }
}

.widget-frame--animated { animation: none; }
@keyframes wfEntrance {
  from { opacity:0; transform:scale(.94) translateY(20px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

.wm-anim {
  opacity: 1;
  animation: none;
}
@keyframes wmSlide {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-typing-dots { display: flex; align-items: center; gap: 4px; padding: 2px 0; }
.hero-typing-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #888; opacity: .55;
  animation: heroDot 1.2s ease-in-out infinite;
}
.hero-typing-dots span:nth-child(2) { animation-delay: .2s; }
.hero-typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes heroDot {
  0%,80%,100% { transform:scale(.7); opacity:.3; }
  40%         { transform:scale(1.2); opacity:1; }
}

.widget-frame--animated .widget-avatar { animation: none; }
@keyframes avGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%     { box-shadow: 0 0 0 6px rgba(255,255,255,.08); }
}

.widget-online i { animation: none; }
@keyframes onlinePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.55; transform:scale(1.4); }
}

.widget-frame--animated .widget-input button { animation: none; }
@keyframes sendIdle {
  0%,90%,100% { transform:scale(1); }
  95%         { transform:scale(1.08); }
}

/* Widget card */
.widget-frame {
  width: 380px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.12), 0 8px 10px -6px rgba(0,0,0,.1);
  display: flex; flex-direction: column; height: 520px;
}
.widget-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.widget-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
}
.widget-avatar img { width: 24px; height: 24px; object-fit: contain; }
.widget-status { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.widget-name { font-size: 15px; font-weight: 600; color: #111; }
.widget-online { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #666; }
.widget-online i { width: 8px; height: 8px; background: #111; border-radius: 50%; display: inline-block; }
.widget-online i.text-\[11CF11\] { color: #11CF11 !important; background: #11CF11; }
.header-actions { display: flex; gap: 4px; }
.icon-btn {
  background: transparent; border: none; color: #888;
  width: 32px; height: 32px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background .15s, color .15s;
}
.icon-btn:hover { background: #f0f0f0; color: #111; }
.widget-close {
  width: 32px; height: 32px; border-radius: 6px; background: transparent;
  border: none; color: #888; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: background .15s;
}
.widget-close:hover { background: #f0f0f0; }

.widget-messages {
  padding: 16px;
  background: #f5f5f5;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1; overflow-y: auto;
}
.msg { display: flex; gap: 10px; max-width: 85%; }
.msg-user { flex-direction: row-reverse; margin-left: auto; }
.msg-bot, .msg-agent { align-self: flex-start; }
.msg-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #ddd; color: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.msg-bot .msg-avatar   { background: #e5e5e5; color: #222; }
.msg-agent .msg-avatar { background: #e5e5e5; color: #222; }
.msg-avatar.text-\[\#4f46e5\] { color: #4f46e5 !important; }
.msg-bot .msg-avatar i.text-\[\#4f46e5\] { color: #4f46e5 !important; }
.msg-bot .msg-avatar i[class~="text-[#4f46e5]"] { color: #4f46e5 !important; }
.msg-bubble {
  padding: 10px 14px; border-radius: 10px;
  font-size: 13.5px; line-height: 1.45;
}
.msg-bot .msg-bubble {
  background: #e8e8e8; color: #111;
  border: 1px solid #ddd; border-top-left-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.msg-user .msg-bubble {
  background: #111; color: #fff; border: none;
  border-top-right-radius: 2px;
}
.msg-agent .msg-bubble {
  background: #fff; border: 1px solid #ccc;
  color: #111; border-top-left-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.msg-bubble strong { display: block; font-size: 12px; font-weight: 700; margin-bottom: 3px; color: #333; }
.msg-bubble .agent-name { color: #333; }
.msg-handoff {
  display: flex; align-items: center; gap: 5px;
  margin-top: 6px; font-size: 11px; font-weight: 600; color: #555;
}
.widget-input {
  padding: 12px 16px; background: #fff;
  border-top: 1px solid #e8e8e8;
  display: flex; align-items: center; gap: 8px;
}
.widget-input input {
  flex: 1; border: 1px solid #ddd; border-radius: 20px;
  padding: 10px 14px; font-size: 13.5px; outline: none;
  transition: border-color .2s; background: #fff; color: #111;
  font-family: inherit;
}
.widget-input input:focus { border-color: #333; }
.widget-input input::placeholder { color: #aaa; }
.widget-input button {
  width: 36px; height: 36px; border-radius: 50%;
  background: #111; border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background .2s;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
.widget-input button:hover { background: #333; }

.widget-float-badge {
  position: absolute; bottom: 20px; left: -20px;
  background: rgba(10,10,10,.95); backdrop-filter: blur(12px);
  padding: 10px 18px; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: #e8e8e8; animation: slideIn 0.5s ease-out;
}
.widget-float-badge i { color: #ccc; }
@keyframes slideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:translateX(0); } }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(180,180,180,.45); font-size: 13px; z-index: 2;
}
.scroll-arrow { animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(8px); } }

/* ═══════════════════════════════════════════════════════════════
   PLATFORM INTEGRATIONS MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.platform-marquee {
  padding: 12px 0 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.platform-marquee-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px 28px;
}
.platform-marquee-kicker {
  display: block;
  margin-bottom: 8px;
  color: #4f46e5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
}
.platform-marquee-intro h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.platform-marquee-intro p {
  max-width: 330px;
  margin: 0 0 2px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
.platform-marquee-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.platform-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: platformLogoScroll 32s linear infinite;
}
.platform-marquee:hover .platform-marquee-track,
.platform-marquee-track:hover { animation-play-state: paused; }
.platform-marquee-set {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 148px;
  padding: 8px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1e293b;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.platform-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  background: #111827;
  color: #fff;
  font-size: 15px;
}
@keyframes platformLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

/* ═══════════════════════════════════════════════════════════════
   BENEFITS STRIP
   ═══════════════════════════════════════════════════════════════ */
.benefits-strip {
  position: relative;
  isolation: isolate;
  padding: 72px 24px;
  background-color: #ffffff;
  background-image:
    linear-gradient(to right, rgba(71, 85, 105, .15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(71, 85, 105, .15) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  border-top: 0;
  border-bottom: 0;
}
.benefits-strip::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 184px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    #f8fafc 0%,
    #f8fafc 22%,
    rgba(248, 250, 252, .95) 42%,
    rgba(255, 255, 255, .7) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}
.benefits-strip::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 112px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff 88%);
}
.benefits-strip > .container {
  position: relative;
  z-index: 2;
}
.benefits-strip > .container.text-\[14px\] { font-size: 14px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.benefit-item:nth-child(2) .benefit-icon { background: #333; }
.benefit-item:nth-child(3) .benefit-icon { background: #555; }
.benefits-strip .benefit-icon { display: none; }
.benefit-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Pricing grid columns */
.pricing-grid[data-count="1"],
.pricing-grid[data-count="2"] {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 860px;
}
.pricing-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); max-width: 1140px; }
@media (max-width: 960px) {
  .pricing-grid[data-count="3"] { grid-template-columns: 1fr; max-width: 440px; }
}
.pricing-grid:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
}

@media (max-width: 768px) {
  .platform-marquee { padding: 10px 0 12px; }
  .platform-marquee-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 22px;
  }
  .platform-marquee-intro h2 { font-size: 22px; }
  .platform-marquee-intro p {
    max-width: 340px;
    font-size: 13px;
    text-align: left;
  }
  .platform-logo { min-width: 136px; padding: 8px 12px; }
  .platform-marquee-track { animation-duration: 28s; }
  .benefits-grid { grid-template-columns: 1fr; gap: 28px; }
  .benefits-strip { padding: 52px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .platform-marquee-track { animation-play-state: paused; }
}

/* ═══════════════════════════════════════════════════════════════
   DUAL MODE
   ═══════════════════════════════════════════════════════════════ */
.dual-mode {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 24px;
  background: #fff;
}
.dual-mode::before {
  content: '';
  position: absolute;
  inset: -30% 0;
  height: 200%;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, .5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, .5) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: skewY(12deg);
  -webkit-mask-image: radial-gradient(400px circle at center, #000, transparent);
  mask-image: radial-gradient(400px circle at center, #000, transparent);
}

/* Full-page language navigation indicator */
#lcaLangLoader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .88);
  opacity: 0;
  pointer-events: all;
  transition: opacity .15s ease;
}

#lcaLangLoader.is-visible { opacity: 1; }

.lca-lang-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(17, 17, 17, .16);
  border-top-color: #111;
  border-radius: 50%;
  animation: lcaLangSpin .7s linear infinite;
}

@keyframes lcaLangSpin {
  to { transform: rotate(360deg); }
}
.dual-mode > .container { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #333; padding: 6px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
  border: 1px solid #ddd;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark);
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.dual-mode .section-header h2.text-\[38px\] { font-size: 38px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.dual-card {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: 24px;
  padding: 40px; transition: all 0.3s;
}
.dual-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dual-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px;
}
.dual-ai    .dual-icon { background: #111; color: #fff; }
.dual-agent .dual-icon { background: #444; color: #fff; }
.dual-icon.bg-\[\#4f46e5\] { background: #4f46e5 !important; }
.dual-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px;
}
.dual-ai    .dual-badge { color: #111; }
.dual-agent .dual-badge { color: #555; }
.dual-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.dual-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.dual-list { display: flex; flex-direction: column; gap: 12px; }
.dual-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.dual-list li i { color: #111; font-size: 12px; }

/* ── Integrations visual ── */
.integrations-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 96px auto 0;
  padding-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, .28);
}
.integrations-copy { max-width: 440px; }
.integrations-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.integrations-copy h3 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.integrations-copy p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.75;
}
.integrations-visual {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, 56px);
  grid-template-rows: repeat(5, 56px);
  gap: 16px;
  width: 344px;
  height: 344px;
  padding: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0,0,0,.92) 54%, transparent 85%);
  mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0,0,0,.92) 54%, transparent 85%);
}
.integration-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 11px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .07);
  color: #111827;
  transition: transform .2s ease, box-shadow .2s ease;
}
.integration-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
}
.integration-empty {
  border-color: rgba(148, 163, 184, .22);
  background: rgba(226, 232, 240, .34);
  box-shadow: none;
}
.integration-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.integration-name {
  max-width: 52px;
  overflow: hidden;
  color: #64748b;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.integration-notion { grid-column: 4; grid-row: 1; }
.integration-notion .integration-mark { border-radius: 3px; background: #111; }
.integration-cursor { grid-column: 3; grid-row: 2; }
.integration-cursor .integration-mark { background: #26251e; }
.integration-vercel { grid-column: 5; grid-row: 2; }
.integration-vercel .integration-mark { background: #111; }
.integration-planetscale { grid-column: 2; grid-row: 3; }
.integration-planetscale .integration-mark { background: #0f766e; }
.integration-gmail { grid-column: 4; grid-row: 3; }
.integration-gmail .integration-mark { background: #ea4335; }
.integration-supabase { grid-column: 3; grid-row: 4; }
.integration-supabase .integration-mark { background: #3ecf8e; color: #062b1b; }
.integration-canva { grid-column: 5; grid-row: 4; }
.integration-canva .integration-mark { background: linear-gradient(135deg, #00c4cc, #7d2ae8); }
.integration-adobe { grid-column: 2; grid-row: 5; }
.integration-adobe .integration-mark { border-radius: 2px; background: #eb1000; }
.integration-polar { grid-column: 4; grid-row: 5; }
.integration-polar .integration-mark { background: #0062ff; }
.integration-triangle {
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 20px solid #111;
  border-left: 11px solid transparent;
  border-radius: 0;
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — stacked cards
   ═══════════════════════════════════════════════════════════════ */
.how {
  padding: 80px 0;
  background: #ffffff;
  color: #111827;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

/* ── 2-column split layout ── */
.how-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 56px;
  align-items: center;
  background: #ffffff;
}
.how-orbit-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.orbit-stage {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}
.orbit-center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(99,102,241,0.10);
  border: 2px solid rgba(99,102,241,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #6366f1;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 0 28px rgba(99,102,241,0.18);
}
.orbit-center-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.25));
}
.orbit-ring-el {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px dashed rgba(99,102,241,0.22);
  pointer-events: none;
}
.orbit-icon-dot {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dbe3ef;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #64748b;
  transform: translate(-50%,-50%);
  box-shadow: 0 2px 10px rgba(15,23,42,0.12);
}
.how-content-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  justify-self: center;
}
.how-content-panel[class~="bg-[#00000000]"] {
  background-color: #00000000;
}

.how-top {
  display: flex; align-items: flex-start;
  padding: 0 0 28px;
}
 .how-top-left  { flex: 0 1 auto; max-width: 480px; min-width: 0; }
.how-headline  {
  font-size: clamp(28px,3.5vw,48px); font-weight: 900; color: #111827;
  line-height: 1.05; letter-spacing: -.03em; margin-top: 4px;
}
.how-headline.text-\[38px\] { font-size: 38px; }
[dir="rtl"] .how-headline {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}
[dir="rtl"] .how-headline .gradient-text {
  unicode-bidi: isolate;
}
.how-top-right { flex: 1; display: flex; align-items: flex-end; padding-bottom: 4px; }
.how-top-right p { font-size: 16px; color: rgba(200,200,200,.7); line-height: 1.75; max-width: 500px; }
.how-sub { font-size: 15px; color: rgba(200,200,200,.7); line-height: 1.75; margin-top: 12px; max-width: 440px; }

.svc-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.svc-card  { position: relative; }
.svc-stack .svc-card + .svc-card { border-top: 1px solid #e2e8f0; }
.svc-stack .svc-inner {
  background: transparent !important;
  border-radius: 0 !important;
}
.svc-inner[class~="bg-[#ffffff00]"] {
  background-color: #ffffff00 !important;
}
.svc-inner {
  position: relative;
  will-change: transform;
  width: 100%;
  margin: 0;
  padding: 0.6em 1em;
  display: flex;
  flex-direction: row;
  gap: 1.5em;
  align-items: center;
  justify-content: center;
  text-align: left;
  border-radius: 1.2em;
  min-height: 0;
}

.svc-content { flex: 3; display: flex; flex-direction: column; gap: 0.55em; }
.svc-title-row { display: flex; align-items: baseline; gap: 10px; }
.svc-num {
  width: 34px; height: 34px; flex: 0 0 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #111827; color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 5px 14px rgba(15,23,42,.14);
}
.svc-num[class~="bg-[#343436]"] { background: #343436; }
.svc-num[class~="bg-[#4c4e52]"] { background: #4c4e52; }
.svc-content h2 {
  font-size: 17px; font-weight: 800;
  line-height: 1.25; letter-spacing: -0.02em; color: #111827; margin: 0;
  min-width: 0;
}
.svc-content p {
  font-size: 13px; line-height: 1.55; color: #64748b;
  max-width: 480px; margin: 0;
}
.svc-content p.text-right { text-align: right; }
.svc-visual {
  flex: 0 0 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 1em;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.12);
  font-size: 30px; color: rgba(255,255,255,.5);
}

.how-cta { text-align: center; margin-top: 40px; padding-bottom: 20px; }
.btn-lg  { padding: 18px 40px; font-size: 17px; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
/* ── Feature Grid (grid-feature-cards style) ── */
.feat-grid-section {
  padding: 80px 24px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.feat-grid-wrap { max-width: 1000px; margin: 0 auto; }
.feat-grid-header { text-align: center; margin-bottom: 48px; }
.feat-grid-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--dark); margin-top: 12px; }
.feat-grid-header h2.text-\[38px\] { font-size: 38px; }

.feat-dashed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.feat-card {
  position: relative; overflow: hidden;
  padding: 28px 24px;
  background: #fff;
  border-right: 1px dashed rgba(0,0,0,0.15);
  border-bottom: 1px dashed rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.feat-card:hover { background: #fafafa; }
.feat-card:nth-child(3n) { border-right: none; }
.feat-card:nth-last-child(-n+3) { border-bottom: none; }

/* SVG grid pattern overlay */
.feat-card-pat-wrap {
  pointer-events: none;
  position: absolute; top: 0; left: 50%;
  transform: translateX(-40%) translateY(-8px);
  width: 100%; height: 100%;
  -webkit-mask-image: linear-gradient(white, transparent);
  mask-image: linear-gradient(white, transparent);
  opacity: 0.6;
}
.feat-card-pat { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Icon box */
.feat-card-icon {
  width: 44px; height: 44px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  position: relative; z-index: 1;
}
.feat-card h3 {
  margin-top: 40px; font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
  position: relative; z-index: 1;
}
.feat-card p {
  font-size: 13px; color: rgba(0,0,0,0.5);
  line-height: 1.65; margin: 0;
  position: relative; z-index: 1;
}

/* Scroll fade-in animation */
.feat-anim {
  opacity: 1; filter: blur(0px); transform: translateY(0);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.feat-anim.will-animate {
  opacity: 0; filter: blur(4px); transform: translateY(-8px);
}
.feat-anim-delay { transition-delay: 0.4s; }
.feat-anim.in-view { opacity: 1; filter: blur(0px); transform: translateY(0); }

.features { padding: 60px 24px; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; transition: all 0.3s;
}
.feature:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: #999;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.feature:nth-child(2) .feature-icon { background: #222; }
.feature:nth-child(3) .feature-icon { background: #333; }
.feature:nth-child(4) .feature-icon { background: #444; }
.feature:nth-child(5) .feature-icon { background: #555; }
.feature:nth-child(6) .feature-icon { background: #222; }
.feature h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing {
  padding: 72px 20px 88px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.pricing .section-header { margin-bottom: 52px; }
.pricing .section-header h2 { font-size: clamp(30px, 3.5vw, 38px); }
.pricing-intro-text {
  max-width: 720px; margin: 0 auto 40px; font-size: 17px;
  line-height: 1.8; color: #555; text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 38px 36px 28px; position: relative; transition: all 0.3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-featured {
  background: #212020;
  border: none; transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.price-featured.bg-\[\#353638\] { background: #353638; }
.price-featured:hover { transform: scale(1.02) translateY(-8px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #111;
  color: #fff; padding: 6px 20px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.price-badge.bg-\[\#4f46e5\] { background: #4f46e5 !important; }
.price-header h3 { font-size: 24px; font-weight: 800; color: var(--dark); }
.price-featured .price-header h3 { color: #fff; }
.price-header p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.price-featured .price-header p { color: rgba(255,255,255,.7); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin: 20px 0; }
.price-currency { font-size: 20px; font-weight: 700; color: #111; }
.price-featured .price-currency { color: #fff; }
.price-number { font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; }
.price-featured .price-number { color: #fff; }
.price-period { font-size: 15px; color: var(--text-muted); }
.price-featured .price-period { color: rgba(255,255,255,.65); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.price-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; line-height: 1.45; color: var(--text); }
.price-featured .price-features li { color: rgba(255,255,255,.88); }
.price-features li i { font-size: 12px; }
.price-features li .fa-check { color: #111; }
.price-featured .price-features li .fa-check { color: #ccc; }
.price-features li .fa-times { color: #ccc; }
.price-features li.disabled { color: var(--text-muted); }
.price-featured .price-features li.disabled { color: rgba(255,255,255,.35); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #111; border: 2px solid #111;
  padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.2s; width: 100%;
}
.btn-outline:hover { background: #111; color: #fff; }
.price-featured .btn-primary { background: #fff; color: #111; }
.price-featured .btn-primary:hover { box-shadow: 0 8px 24px rgba(255,255,255,.15); }
.btn-block { width: 100%; justify-content: center; }
.pricing-note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   WHY / USE CASES / FAQ
   ═══════════════════════════════════════════════════════════════ */
.chatbot-why      { padding: 100px 0; background: #212020; }
.chatbot-usecases {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0;
  background: #ffffff;
  color: #111827;
  border-top: 1px solid #e2e8f0;
}
.chatbot-usecases::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .8;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.chatbot-usecases > .container { position: relative; z-index: 1; }
.chatbot-usecases .section-header h2 { color: #111827; }
.chatbot-usecases .section-header h2.text-\[38px\] { font-size: 38px; }
.chatbot-usecases .section-header .highlight { color: #4f46e5; }
.chatbot-usecases .section-header p { color: #64748b; }
.chatbot-faq {
  padding: 108px 0 112px;
  background: #ffffff;
  color: #0f172a;
}
.chatbot-faq > .container {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.chatbot-faq .section-header {
  position: static;
  height: auto;
  margin: 0;
  text-align: left;
}
.chatbot-faq .section-tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0 0 22px;
  padding: 6px 12px;
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}
.chatbot-faq .section-header h2 {
  max-width: 460px;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0;
}
.chatbot-faq .section-header p {
  max-width: 420px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 20px 0 0;
}
.chatbot-faq .section-header .highlight { color: #4f46e5; }

.chatbot-faq .faq-list {
  max-width: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  gap: 12px;
}
.chatbot-faq .faq-item {
  width: 100%;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}
.chatbot-faq .faq-item:hover,
.chatbot-faq .faq-item[open] {
  border-color: #818cf8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .10), 0 6px 16px rgba(15, 23, 42, .06);
}
.chatbot-faq .faq-item summary {
  min-height: 68px;
  color: #1e293b;
}
.chatbot-faq .faq-item summary::after {
  color: #475569;
}
.chatbot-faq .faq-item > p {
  color: #64748b;
  overflow-wrap: anywhere;
}

/* Keep the heading content available to screen readers without hiding it visually. */
.chatbot-faq .section-header h2,
.chatbot-faq .section-header p {
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.usecase-card {
  background: #ffffff;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.usecase-card:hover {
  border-color: #a5b4fc;
  box-shadow: 0 16px 32px rgba(15,23,42,.10);
  transform: translateY(-4px);
}
.usecase-icon {
  width: 48px; height: 48px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #4f46e5;
  margin-bottom: 18px;
}
.usecase-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: #111827; }
.usecase-card p  { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }

/* AI provider flexibility */
.ai-provider-section {
  padding: 104px 24px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.ai-provider-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.ai-provider-copy {
  max-width: 480px;
  padding-inline-end: 36px;
  border-inline-end: 1px solid rgba(148, 163, 184, .4);
}
.ai-provider-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.ai-provider-copy h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.ai-provider-copy p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.75;
}
.ai-provider-proof {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.ai-provider-proof i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #4f46e5;
  color: #fff;
  font-size: 10px;
}
.ai-provider-visual {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.ai-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 72px);
  grid-template-rows: repeat(4, 72px);
  gap: 16px;
  width: 336px;
  height: 336px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 16%, rgba(0,0,0,.9) 57%, transparent 87%);
  mask-image: radial-gradient(ellipse at center, #000 16%, rgba(0,0,0,.9) 57%, transparent 87%);
}
.ai-provider-empty,
.ai-provider-tile {
  width: 72px;
  height: 72px;
  border-radius: 13px;
}
.ai-provider-empty {
  border: 1px solid rgba(148, 163, 184, .3);
  background: rgba(226, 232, 240, .42);
}
.ai-provider-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, .36);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  color: #334155;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ai-provider-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .15);
}
.ai-provider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #fff;
}
.ai-provider-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}
.ai-provider-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ai-provider-gemini { grid-column: 2; grid-row: 1; }
.ai-provider-gemini .ai-provider-icon { background: #0f172a; }
.ai-provider-gemini .ai-provider-icon img { width: 24px; height: 28px; }
.ai-provider-qwen { grid-column: 3; grid-row: 1; }
.ai-provider-qwen .ai-provider-icon {
  background: #332e91;
  border: 1px solid #4f46e5;
}
.ai-provider-qwen .ai-provider-icon img { width: 24px; height: 24px; }
.ai-provider-kimi { grid-column: 2; grid-row: 2; }
.ai-provider-kimi .ai-provider-icon { background: #2b2a29; }
.ai-provider-kimi .ai-provider-icon img { width: 24px; height: 24px; }
.ai-provider-ollama { grid-column: 3; grid-row: 2; }
.ai-provider-ollama .ai-provider-icon {
  background: #fff;
  border: 1px solid #e2e8f0;
}
.ai-provider-ollama .ai-provider-icon img { width: 24px; height: 24px; }
.ai-provider-openai { grid-column: 4; grid-row: 2; }
.ai-provider-openai .ai-provider-icon { background: #111827; }
.ai-provider-openai .ai-provider-icon img { width: 24px; height: 24px; }
.ai-provider-deepseek { grid-column: 1; grid-row: 3; }
.ai-provider-deepseek .ai-provider-icon {
  background: #eff6ff;
  border: 1px solid #dbeafe;
}
.ai-provider-deepseek .ai-provider-icon img { width: 25px; height: 24px; }
.ai-provider-grok { grid-column: 2; grid-row: 3; }
.ai-provider-grok .ai-provider-icon {
  background: #fff;
  border: 1px solid #e2e8f0;
}
.ai-provider-grok .ai-provider-icon img {
  display: block;
  width: 23px;
  height: 23px;
}
.ai-provider-copilot { grid-column: 3; grid-row: 3; }
.ai-provider-copilot .ai-provider-icon {
  width: 34px;
  height: 32px;
  overflow: hidden;
  border-radius: 9px;
  background: transparent;
  border: 0;
}
.ai-provider-copilot .ai-provider-icon img {
  display: block;
  width: 34px;
  height: 31px;
  object-fit: contain;
}
.ai-provider-claude { grid-column: 3; grid-row: 4; }
.ai-provider-claude .ai-provider-icon {
  background: #fff;
  border: 1px solid #e2e8f0;
}
.ai-provider-claude .ai-provider-icon img { width: 24px; height: 24px; }
.ai-provider-llama { grid-column: 4; grid-row: 4; }
.ai-provider-llama .ai-provider-icon {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  background: #0784f9;
}
.ai-provider-llama .ai-provider-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: cover;
}
.ai-provider-empty-a { grid-column: 1; grid-row: 1; }
.ai-provider-empty-b { grid-column: 3; grid-row: 2; }
.ai-provider-empty-c { grid-column: 2; grid-row: 4; }

/* FAQ */
.chatbot-faq .faq-list {
  max-width: 658px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #f8f8fa;
  border: 1px solid rgba(79, 70, 229, .8);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, .3), 0 0 12px rgba(79, 70, 229, .2);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: rgba(79, 70, 229, .95);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, .45), 0 0 16px rgba(79, 70, 229, .28);
}
.faq-item summary {
  min-height: 64px;
  padding: 16px 22px;
  font-size: 14px; font-weight: 700; color: #17171b;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px; line-height: 1; font-weight: 400; color: #17171b;
  flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > p {
  padding: 0 22px 20px;
  font-size: 14px; color: #36363c; line-height: 1.7; margin: 0;
  background: transparent;
}

@media (max-width: 900px) { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .chatbot-faq > .container {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .chatbot-faq .section-header h2,
  .chatbot-faq .section-header p {
    max-width: 680px;
  }
}
@media (max-width: 600px) {
  .usecases-grid { grid-template-columns: 1fr; }
  .chatbot-why, .chatbot-usecases { padding: 60px 0; }
  .chatbot-faq { padding: 64px 16px; }
  .chatbot-faq .section-tag { margin-bottom: 18px; }
  .chatbot-faq .section-header h2 { font-size: 32px; }
  .chatbot-faq .section-header p { font-size: 15px; margin-top: 16px; }
  .chatbot-faq .faq-list { gap: 10px; }
  .faq-item summary { min-height: 62px; padding: 16px 18px; font-size: 14px; }
  .faq-item > p { padding: 0 18px 18px; font-size: 14px; }
}

@media (max-width: 768px) {
  .home-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  body.home-page .home-shell::before,
  body.home-page .home-shell::after {
    display: none;
  }
  body.home-page .nav { top: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */
.cta {
  padding: 100px 24px;
  background: #212020;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 60%);
}
.cta::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 60%);
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px;
}
.cta-content p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #111; padding: 18px 40px; border-radius: 12px;
  font-weight: 700; font-size: 17px; transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(255,255,255,.12);
}
.btn-cta:hover {
  transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,.18); color: #111;
}
.cta-trust {
  display: flex; justify-content: center; gap: 24px; margin-top: 24px;
  font-size: 14px; color: rgba(255,255,255,.55);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { padding: 80px 0 0; background: #212020; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-brand { max-width: 100%; }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px;
}
.footer-logo img { width: 36px; height: 36px; border-radius: 10px; object-fit: contain; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,.55); transition: all 0.2s;
}
.footer-social a:hover { background: #fff; color: #111; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 0;
  padding: 32px 24px 40px;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: 100vw;
  height: 1px;
  background: #e2e8f0;
  pointer-events: none;
  transform: translateX(-50%);
}
.footer-bottom p { font-size: 13px; color: #64748b; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content {
    align-items: center;
    padding-inline-end: 0;
    border-inline-end: none;
  }
  .hero-desc { max-width: 100%; }
  .hero-cta { align-items: center; }
  .widget-preview { margin: 0 auto; }
  .dual-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-dashed-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card:nth-child(3n) { border-right: 1px dashed rgba(0,0,0,0.15); }
  .feat-card:nth-child(2n) { border-right: none; }
  .feat-card:nth-last-child(-n+3) { border-bottom: 1px dashed rgba(0,0,0,0.15); }
  .feat-card:nth-last-child(-n+2) { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { top: 10px; width: calc(100% - 24px); border-radius: 12px; }

  .hero { padding: 110px 20px 48px; }
  .hero-title { font-size: 32px; }
  .hero-visual { transform: none; }
  .widget-frame { width: 100%; max-width: 340px; }

  .dual-mode { padding: 60px 20px; }
  .dual-card { padding: 28px 24px; }
  .dual-grid { gap: 20px; }
  .integrations-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 72px;
    padding-top: 52px;
  }
  .integrations-copy { max-width: 520px; }
  .integrations-visual { justify-content: center; }

  .ai-provider-section { padding: 72px 20px; }
  .ai-provider-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .ai-provider-copy {
    max-width: 520px;
    padding-inline-end: 0;
    border-inline-end: none;
  }
  .ai-provider-visual { justify-content: center; }
  .ai-provider-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 320px);
    height: 320px;
  }
  .ai-provider-empty,
  .ai-provider-tile {
    width: 100%;
    height: 100%;
  }

  .how { padding-top: 60px; }
  .how-split { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }
  .how-orbit-panel { display: none; }
  .how-content-panel { max-width: 420px; min-width: 0; }
  .how-top { padding-bottom: 24px; }
  .how-top-left { flex: 1 1 auto; max-width: 100%; min-width: 0; }
  .how-headline,
  .how-headline.text-\[38px\] { font-size: clamp(26px,8vw,38px); line-height: 1.1; overflow-wrap: break-word; }
  .svc-inner { flex-direction: column; gap: 1em; padding: 1.25em 1.25em; min-height: 0; border-radius: 1.5em; }
  .svc-content { gap: .75em; }
  .svc-title-row { gap: 10px; }
  .svc-content h2 { font-size: 20px; }
  .svc-content p { font-size: 14px; line-height: 1.55; }
  .svc-visual { aspect-ratio: 16/7; font-size: 56px; }
  .how-cta { padding-bottom: 60px; }

  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 24px 20px; }
  .feat-grid-section { padding: 60px 16px; }
  .feat-dashed-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none !important; }
  .feat-card:not(:last-child) { border-bottom: 1px dashed rgba(0,0,0,0.15) !important; }
  .feat-card:last-child { border-bottom: none !important; }

  .pricing { padding: 60px 20px; }
  .pricing .section-header { margin-bottom: 38px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; gap: 24px; }
  .pricing-intro-text { font-size: 15px; max-width: 100%; padding: 0; margin-bottom: 24px; }
  .price-card { padding: 30px 26px 26px; }
  .price-featured { transform: none; box-shadow: 0 12px 40px rgba(0,0,0,.3); }
  .price-featured:hover { transform: translateY(-4px); }
  .price-number { font-size: 48px; }
  .pricing-note { font-size: 13px; padding: 0 4px; line-height: 1.8; display: flex; flex-direction: column; gap: 6px; align-items: center; }

  .cta { padding: 60px 20px; }
  .cta-content h2 { font-size: clamp(22px, 5vw, 32px); }
  .cta-content p { font-size: 16px; }
  .btn-cta { font-size: 15px; padding: 14px 24px; width: 100%; justify-content: center; box-sizing: border-box; }
  .cta-trust { flex-direction: column; gap: 8px; align-items: center; font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand { max-width: 100%; grid-column: 1 / -1; }
  .footer-bottom { padding-top: 24px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .btn-hero { padding: 14px 20px; font-size: 15px; width: 100%; justify-content: center; }
  .widget-float-badge { display: none; }

  .price-card { padding: 24px 18px; }
  .price-number { font-size: 40px; }
  .price-features li { font-size: 13px; }
  .price-features { gap: 10px; }
  .pricing-note { font-size: 12px; }

  .feature { padding: 20px 16px; }
  .feature h3 { font-size: 16px; }
  .cta-content p { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-social { justify-content: flex-start; }
}

/* ── Pricing loader ── */
.price-card-loading {
  display: flex; align-items: center; justify-content: center;
  padding: 60px; color: #aaa; font-size: 24px; grid-column: 1 / -1;
}

/* ═══════════════════════════════════════════════════════════════
   WIDGET SHOWCASE
   ═══════════════════════════════════════════════════════════════ */
.widget-showcase {
  position: relative;
  isolation: isolate;
  padding: 96px 0 72px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}
.widget-showcase::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .84) 72%,
    #ffffff 100%
  );
}
.widget-showcase > .container {
  position: relative;
  z-index: 2;
}
.ws-header { text-align: center; margin-bottom: 60px; }
.ws-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; color: #111; }
.ws-header h2.text-\[38px\] { font-size: 38px; }
.ws-header p  { font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.ws-body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.ws-preview { order: 1; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.ws-panel   { order: 2; position: sticky; top: 100px; }

.ws-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
  overflow: hidden;
  position: sticky;
  top: 100px;
  height: 600px;
  display: flex;
  flex-direction: column;
}
.ws-panel-inner {
  padding: 20px 22px;
  display: flex; flex-direction: column; flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}
.ws-section-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.ws-section-label i { color: #555; font-size: 10px; }
.ws-divider { height: 1px; background: var(--border); margin: 12px 0; }

.ws-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.ws-swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 3px solid transparent; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.ws-swatch:hover  { transform: scale(1.18); box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.ws-swatch.active { border-color: #111; transform: scale(1.12); }

.ws-toggle-group { display: flex; gap: 8px; flex-wrap: wrap; }
.ws-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff; font-size: 12.5px; font-weight: 600;
  color: var(--text); cursor: pointer; font-family: inherit;
  transition: all .15s;
}
.ws-toggle-btn:hover  { border-color: #111; color: #111; }
.ws-toggle-btn.active { border-color: #111; background: rgba(0,0,0,.06); color: #111; }

.ws-input {
  width: 100%; padding: 9px 13px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 13.5px; font-family: inherit; color: var(--dark);
  outline: none; transition: border-color .2s; background: #fff;
}
.ws-input:focus { border-color: #111; }

.ws-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding: 12px 20px;
  background: #111;
  color: #fff; border-radius: 12px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.ws-cta-btn:hover { opacity: .85; transform: translateY(-1px); color: #fff; }

/* Phone preview */
.ws-preview { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.ws-phone {
  position: relative; width: 300px; flex-shrink: 0;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.28));
}
.ws-phone-btn { position: absolute; background: #111; border-radius: 3px; }
.ws-phone-btn-vol1  { left: -5px; top: 100px; width: 4px; height: 32px; }
.ws-phone-btn-vol2  { left: -5px; top: 144px; width: 4px; height: 32px; }
.ws-phone-btn-power { right: -5px; top: 120px; width: 4px; height: 44px; }

.ws-phone-frame {
  position: relative;
  width: 300px; height: 600px;
  background: linear-gradient(160deg,#111 0%,#0a0a0a 100%);
  border-radius: 46px;
  border: 10px solid #111;
  box-shadow: 0 0 0 1px #333, inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}

.ws-phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 30px;
  background: #0a0a0a;
  border-radius: 0 0 20px 20px;
  z-index: 20;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ws-phone-camera {
  width: 10px; height: 10px; border-radius: 50%;
  background: #1a1a1a; border: 2px solid #333;
}
.ws-phone-speaker {
  width: 36px; height: 5px; border-radius: 3px;
  background: #1a1a1a; border: 1px solid #333;
}

.ws-phone-screen {
  position: relative; width: 100%; height: 100%;
  background: #f8f8f8;
  border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
}

.ws-status-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 30px; z-index: 15;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 16px 4px;
  background: transparent;
}
.ws-status-time   { font-size: 9px; font-weight: 700; color: #111; }
.ws-status-icons  { display: flex; align-items: center; gap: 4px; color: #111; }

.ws-site-content { padding: 34px 12px 10px; flex-shrink: 0; }
.ws-site-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; padding: 2px 0;
}
.ws-site-logo-wrap { display: flex; align-items: center; gap: 5px; }
.ws-site-logo {
  width: 18px; height: 18px; border-radius: 5px;
  background: #111;
}
.ws-site-logo-text { width: 32px; height: 7px; background: #111; border-radius: 3px; }
.ws-site-nav-links { display: flex; gap: 6px; }
.ws-site-link { width: 20px; height: 6px; background: #ccc; border-radius: 3px; }
.ws-site-hero { margin-bottom: 12px; }
.ws-site-tag {
  width: 60px; height: 8px; border-radius: 20px; margin-bottom: 10px;
  background: #e0e0e0; border: 1px solid #ccc;
}
.ws-site-line { height: 8px; background: #111; border-radius: 4px; margin-bottom: 7px; opacity: .15; }
.ws-site-line.lg { width: 78%; opacity: .3; height: 10px; background: #0a0a0a; }
.ws-site-line.md { width: 58%; opacity: .18; }
.ws-site-line.sm { width: 40%; opacity: .12; }
.ws-site-btn-fake {
  width: 64px; height: 20px; border-radius: 20px; margin-top: 10px;
  background: #111;
  transition: background .3s;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.ws-site-cards { display: flex; gap: 7px; margin-top: 2px; }
.ws-site-card {
  flex: 1; height: 52px; background: #f5f5f5;
  border-radius: 8px; border: 1px solid #e0e0e0;
  padding: 7px; display: flex; flex-direction: column; gap: 5px;
}
.ws-site-card-icon { width: 16px; height: 16px; border-radius: 4px; background: #e0e0e0; }
.ws-site-card-icon.accent { background: #111; }
.ws-site-card-line { height: 5px; background: #e0e0e0; border-radius: 3px; width: 80%; }
.ws-site-card-line.sm { width: 55%; }

.ws-site-stats { display: flex; gap: 6px; margin-bottom: 10px; }
.ws-site-stat {
  flex: 1; background: #f5f5f5; border: 1px solid #e0e0e0;
  border-radius: 7px; padding: 7px 6px;
  display: flex; flex-direction: column; gap: 4px;
}
.ws-site-stat-num { height: 10px; width: 60%; background: #333; border-radius: 3px; opacity: .25; }
.ws-site-stat-num.accent { background: #111; opacity: 1; }
.ws-site-stat-lbl { height: 5px; width: 80%; background: #e0e0e0; border-radius: 3px; }

.ws-site-features { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.ws-site-feat { display: flex; align-items: center; gap: 6px; }
.ws-site-feat-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: #ccc; }
.ws-site-feat-dot.accent { background: #111; }
.ws-site-feat-line { height: 6px; background: #e0e0e0; border-radius: 3px; }
.ws-site-feat-line.lg { width: 75%; }
.ws-site-feat-line.md { width: 58%; }
.ws-site-feat-line.sm { width: 40%; }

.ws-site-testimonial {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; background: #f5f5f5;
  border: 1px solid #e0e0e0; border-radius: 8px; padding: 8px;
}
.ws-site-testi-av { width: 24px; height: 24px; border-radius: 50%; background: #111; flex-shrink: 0; }
.ws-site-testi-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ws-site-testi-line { height: 5px; background: #e0e0e0; border-radius: 3px; }
.ws-site-testi-line.lg { width: 90%; }
.ws-site-testi-line.md { width: 70%; }
.ws-site-testi-stars { height: 5px; width: 44px; background: #aaa; border-radius: 3px; margin-top: 2px; }

/* Chat button pulse */
.ws-chat-btn:not(.ws-hidden)::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid; border-color: inherit;
  opacity: .4; animation: wsChatPulse 2s ease-out infinite;
}
@keyframes wsChatPulse {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.ws-tap-hint {
  position: absolute; bottom: 66px; right: 8px;
  background: #fff; color: #111;
  font-size: 9.5px; font-weight: 700;
  padding: 5px 10px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,.15);
  border: 1px solid #e0e0e0;
  display: flex; align-items: center; gap: 4px;
  animation: wsHintFloat 3s ease-in-out infinite;
  pointer-events: none; z-index: 11;
}
.ws-tap-hint i { color: #555; font-size: 9px; }
.ws-tap-hint.ws-hidden { display: none; }
@keyframes wsHintFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.ws-widget-win {
  position: absolute; top: 30px; left: 0; right: 0; bottom: 0;
  width: 100%; background: #1a1a1a;
  border-radius: 20px 20px 36px 36px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: none;
  transition: transform .4s cubic-bezier(.22,1,.36,1), background .3s;
  transform: translateY(110%);
}
.ws-widget-win.ws-open  { transform: translateY(0); }
.ws-widget-win.left-pos { right: 0; left: 0; }

.ws-widget-hdr {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; flex-shrink: 0; transition: background .3s;
}
.ws-widget-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; flex-shrink: 0;
}
.ws-widget-hdr-info { flex: 1; min-width: 0; }
.ws-widget-hdr-title { font-size: 13px; font-weight: 700; color: #fff; }
.ws-widget-hdr-sub {
  font-size: 10px; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 4px; margin-top: 2px;
}
.ws-online-dot { width: 6px; height: 6px; background: #bbb; border-radius: 50%; display: inline-block; }
.ws-widget-close {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.ws-widget-msgs {
  flex: 1; overflow-y: auto; padding: 12px;
  display: flex; flex-direction: column; gap: 8px; transition: background .3s;
}
.ws-msg { display: flex; gap: 6px; align-items: flex-end; max-width: 85%; }
.ws-msg-bot  { align-self: flex-start; }
.ws-msg-user { flex-direction: row-reverse; align-self: flex-end; }
.ws-msg-av {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #fff; flex-shrink: 0; transition: background .3s;
}
.ws-msg-bubble {
  padding: 9px 12px; border-radius: 12px;
  font-size: 11px; line-height: 1.5; word-break: break-word;
  color: #e0e0e0; background: #2a2a2a;
  border: 1px solid rgba(255,255,255,.07);
  transition: background .3s, color .3s, border-color .3s;
}
.ws-msg-user-bubble { color: #fff; border: none; transition: background .3s; }
.ws-widget-bar {
  display: flex; gap: 8px; align-items: center;
  padding: 10px 12px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  transition: background .3s, border-color .3s;
}
.ws-widget-inp {
  flex: 1; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 8px 12px;
  color: #e0e0e0; font-size: 11px; font-family: inherit; outline: none;
  transition: background .3s, border-color .3s, color .3s;
}
.ws-widget-send {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; cursor: pointer;
  flex-shrink: 0; transition: background .3s;
}

.ws-chat-btn {
  position: absolute; bottom: 14px; right: 14px;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background .3s, right .35s, left .35s, transform .2s, opacity .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.ws-chat-btn:hover     { transform: scale(1.1); }
.ws-chat-btn.left-pos  { right: auto; left: 14px; }
.ws-chat-btn.ws-hidden { opacity: 0; pointer-events: none; transform: scale(0.7); }

.ws-phone-glow {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 50px; border-radius: 50%; filter: blur(24px);
  opacity: .3; transition: background .3s; pointer-events: none;
  background: #444;
}

/* Light theme in widget */
.ws-widget-win.theme-light                       { background: #fff; }
.ws-widget-win.theme-light .ws-widget-msgs       { background: #fff; }
.ws-widget-win.theme-light .ws-widget-bar        { background: #f5f5f5; border-color: #e0e0e0; }
.ws-widget-win.theme-light .ws-widget-inp        { background: #fff; border-color: #e0e0e0; color: #111; }
.ws-widget-win.theme-light .ws-msg-bubble        { background: #f0f0f0; color: #111; border-color: #e0e0e0; }
.ws-widget-win.theme-light .ws-widget-hdr-title  { color: #fff; }

.ws-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  width: 100%; max-width: 300px;
}
.ws-badge {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  font-size: 12.5px; font-weight: 600; color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.ws-badge i { color: #333; font-size: 14px; }

/* Responsive showcase */
@media (max-width: 1100px) {
  .ws-body { grid-template-columns: 1fr 380px; gap: 36px; }
  .ws-phone-frame { width: 270px; height: 540px; }
  .ws-phone { width: 270px; }
  .ws-panel { height: 540px; }
}
@media (max-width: 860px) {
  .ws-body { grid-template-columns: 1fr; gap: 40px; }
  .ws-preview { order: 1; width: 100%; }
  .ws-panel   { order: 2; position: static; width: 100%; max-width: 480px; margin: 0 auto; height: auto; }
  .ws-phone   { margin: 0 auto; }
  .ws-badges  { max-width: 100%; grid-template-columns: repeat(4,1fr); }
  .ws-badge span { display: none; }
  .ws-badge   { justify-content: center; }
}
@media (max-width: 480px) {
  .ws-phone-frame { width: 260px; height: 510px; }
  .ws-phone { width: 260px; }
  .ws-badges { grid-template-columns: repeat(2,1fr); }
  .ws-badge span { display: inline; font-size: 11.5px; }
}

/* ── Pricing loader ── */
.price-card-loading { display:flex; align-items:center; justify-content:center; padding:60px; color:#aaa; font-size:24px; grid-column:1/-1; }

/* ── Advanced Plan ── */
.price-advanced {
  border: 2px solid #111 !important;
  background: #f5f5f5 !important;
  position: relative;
}
.adv-badge { background: #111 !important; color: #fff !important; }
.tier-selector {
  display: grid;
  gap: 0;
  padding: 14px 14px 12px;
  margin: 18px 0 4px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}
.tier-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tier-slider-title {
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}
.tier-current {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 7px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.tier-slider-control {
  padding: 0 8px;
}
.tier-range {
  --tier-progress: 0%;
  display: block;
  width: 100%;
  height: 4px;
  margin: 20px 0 16px;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #111827 0%,
    #111827 var(--tier-progress),
    #e2e8f0 var(--tier-progress),
    #e2e8f0 100%
  );
  cursor: pointer;
}
.tier-range::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  appearance: none;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #111827;
  box-shadow: 0 2px 8px rgba(15,23,42,.28), 0 0 0 1px rgba(15,23,42,.12);
}
.tier-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #111827;
  box-shadow: 0 2px 8px rgba(15,23,42,.28), 0 0 0 1px rgba(15,23,42,.12);
}
.tier-range:focus-visible {
  outline: 3px solid rgba(79,70,229,.25);
  outline-offset: 5px;
}
.tier-slider-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
}
.tier-label {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color .18s, font-weight .18s;
}
.tier-label:first-child { text-align: left; }
.tier-label:last-child { text-align: right; }
.tier-label:only-child {
  grid-column: 1 / -1;
  text-align: center;
}
.tier-label.active {
  color: #111827;
  font-weight: 800;
}
.price-advanced .price-number  { color: #111 !important; }
.price-advanced .price-currency { color: #111 !important; }
.price-advanced .price-period  { color: #555 !important; }
.price-advanced .price-features li { color: var(--text) !important; }
.price-advanced .adv-btn { border-color: #111 !important; color: #111 !important; }
.price-advanced .adv-btn:hover { background: #111 !important; color: #fff !important; }

/* Full-width separators between landing-page sections */
.section-divider {
  position: relative;
  z-index: 5;
  width: 100vw;
  height: 1px;
  margin-left: calc(50% - 50vw);
  background: #e2e8f0;
  pointer-events: none;
}
.home-shell > section,
.home-shell > footer.footer {
  border-top: 0;
  border-bottom: 0;
}
