/* Custom AI Chatbots service — Ink Converse (dark) */
.chatbots-svc-page {
  --cb-bg: #080c14;
  --cb-panel: #101826;
  --cb-panel-2: #152033;
  --cb-line: rgba(45, 212, 191, 0.14);
  --cb-teal: #2dd4bf;
  --cb-teal-dim: rgba(45, 212, 191, 0.12);
  --cb-coral: #fb7185;
  --cb-coral-dim: rgba(251, 113, 133, 0.14);
  --cb-text: #e2e8f0;
  --cb-muted: #94a3b8;
  --cb-white: #f8fafc;
  --cb-display: 'Outfit', system-ui, sans-serif;
  --cb-body: 'Manrope', system-ui, sans-serif;

  --background-color: #080c14;
  --default-color: #e2e8f0;
  --heading-color: #f8fafc;
  --surface-color: #101826;
  --accent-color: #2dd4bf;
  --nav-color: #e2e8f0;
  --nav-hover-color: #2dd4bf;
  --nav-mobile-background-color: #101826;

  font-family: var(--cb-body);
  color: var(--cb-text);
  background:
    radial-gradient(ellipse 70% 45% at 85% 0%, rgba(45, 212, 191, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 30%, rgba(251, 113, 133, 0.08), transparent 50%),
    linear-gradient(180deg, #060910 0%, var(--cb-bg) 40%, #0a1018 100%) !important;
  overflow-x: hidden;
}

.chatbots-svc-page h1,
.chatbots-svc-page h2,
.chatbots-svc-page h3,
.chatbots-svc-page h4 {
  font-family: var(--cb-display);
  color: var(--cb-white);
  letter-spacing: -0.02em;
}

.chatbots-svc-page .header {
  background: rgba(8, 12, 20, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--cb-line) !important;
}
.chatbots-svc-page .header .logo img {
  max-height: 34px;
  filter: brightness(0) invert(1);
}
.chatbots-svc-page .header .navmenu > ul > li > a {
  color: rgba(226, 232, 240, 0.88) !important;
}
.chatbots-svc-page .header .navmenu > ul > li > a.active,
.chatbots-svc-page .header .navmenu > ul > li > a:hover {
  color: var(--cb-teal) !important;
}
.chatbots-svc-page .header .btn-getstarted {
  background: linear-gradient(135deg, var(--cb-teal), #0d9488) !important;
  color: #042f2e !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}
.chatbots-svc-page .header .mobile-nav-toggle { display: none !important; }
.chatbots-svc-page .main { padding-top: 0; }

.chatbots-svc-page .mobile-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(8, 12, 20, 0.96);
  border-bottom: 1px solid var(--cb-line);
  backdrop-filter: blur(12px);
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 10px;
}
.chatbots-svc-page .mobile-nav-container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
}
.chatbots-svc-page .mobile-logo img {
  max-height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.chatbots-svc-page .mobile-nav-actions { display: flex; align-items: center; gap: 8px; }
.chatbots-svc-page .mobile-nav-cta {
  background: linear-gradient(135deg, var(--cb-teal), #0d9488);
  color: #042f2e !important;
  padding: 8px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-decoration: none;
}
.chatbots-svc-page .mobile-menu-toggle {
  width: 38px; height: 38px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(45, 212, 191, 0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; cursor: pointer;
}
.chatbots-svc-page .mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 10040;
  background: rgba(8, 12, 20, 0.6);
  backdrop-filter: blur(3px);
  border: 0; cursor: pointer;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.chatbots-svc-page.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.chatbots-svc-page .mobile-menu {
  position: fixed; top: 0; right: 0; width: min(300px, 86vw); height: 100%;
  background: var(--cb-panel); z-index: 10050;
  transform: translateX(105%); transition: transform 0.25s ease;
  padding: 1.25rem; border-left: 1px solid var(--cb-line);
}
.chatbots-svc-page .mobile-menu.active { transform: translateX(0); }
.chatbots-svc-page .mobile-menu-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem;
}
.chatbots-svc-page .mobile-menu-header span {
  display: block; font-family: var(--cb-display); font-weight: 700; font-size: 1.1rem; color: var(--cb-white);
}
.chatbots-svc-page .mobile-menu-header small { color: var(--cb-muted); }
.chatbots-svc-page .mobile-menu-close {
  border: 0; background: var(--cb-panel-2); color: var(--cb-text);
  width: 36px; height: 36px; border-radius: 10px;
}
.chatbots-svc-page .mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.chatbots-svc-page .mobile-menu a {
  display: block; padding: 0.75rem 0; color: var(--cb-text);
  font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--cb-line);
}

@media (max-width: 1199px) {
  .chatbots-svc-page #header { display: none !important; }
}

.cb-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  border: 0; cursor: pointer; transition: transform 0.15s;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn--teal {
  background: linear-gradient(135deg, var(--cb-teal), #0d9488);
  color: #042f2e;
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.3);
}
.cb-btn--coral {
  background: linear-gradient(135deg, var(--cb-coral), #e11d48);
  color: #fff;
  box-shadow: 0 10px 28px rgba(251, 113, 133, 0.28);
}
.cb-btn--ghost {
  background: transparent; color: var(--cb-text);
  border: 1px solid var(--cb-line);
}

.cb-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: var(--cb-teal-dim); color: var(--cb-teal);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}

.cb-section { padding: clamp(3rem, 6vw, 4.75rem) 0; }
.cb-section--panel {
  background: rgba(16, 24, 38, 0.65);
  border-block: 1px solid var(--cb-line);
}
.cb-head { margin-bottom: 1.75rem; max-width: 640px; }
.cb-head--center { text-align: center; margin-inline: auto; }
.cb-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  margin: 0.65rem 0;
}
.cb-head h2 em { font-style: normal; color: var(--cb-teal); }
.cb-head p { color: var(--cb-muted); margin: 0; line-height: 1.7; }

/* Hero */
.cb-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  padding: clamp(120px, 14vw, 150px) 0 3.5rem;
  overflow: hidden;
}
.cb-hero__media { position: absolute; inset: 0; }
.cb-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  filter: brightness(0.38) saturate(1.08) contrast(1.05);
}
.cb-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 16, 0.95) 0%, rgba(6, 9, 16, 0.72) 48%, rgba(6, 9, 16, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 9, 16, 0.92) 0%, transparent 48%);
}
.cb-hero__content { position: relative; z-index: 2; max-width: 640px; }
.cb-hero__brand {
  font-family: var(--cb-display);
  color: var(--cb-coral);
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.cb-hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.cb-hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--cb-teal), #99f6e4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cb-hero__lead {
  color: var(--cb-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 520px;
}
.cb-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.35rem; }
.cb-hero__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cb-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--cb-line);
  background: rgba(8, 12, 20, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cb-teal);
}

/* Features */
.cb-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cb-feature {
  background: var(--cb-panel);
  border: 1px solid var(--cb-line);
  border-radius: 18px;
  padding: 1.35rem;
  transition: transform 0.2s, border-color 0.2s;
}
.cb-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
}
.cb-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cb-teal-dim);
  color: var(--cb-teal);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.cb-feature:nth-child(2) .cb-feature__icon,
.cb-feature:nth-child(5) .cb-feature__icon {
  background: var(--cb-coral-dim); color: var(--cb-coral);
}
.cb-feature h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-family: var(--cb-body);
  font-weight: 800;
}
.cb-feature p { margin: 0; color: var(--cb-muted); font-size: 0.9rem; line-height: 1.6; }

/* Live studio */
.cb-studio {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}
.cb-studio__visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--cb-line);
  background: #050810;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.cb-studio__visual img {
  width: 100%; display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover; object-position: top;
}
.cb-chat {
  background: var(--cb-panel);
  border: 1px solid var(--cb-line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
}
.cb-chat__head {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--cb-line);
  background: var(--cb-panel-2);
}
.cb-chat__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cb-teal), #0d9488);
  display: grid; place-items: center;
  color: #042f2e; font-size: 1.1rem;
}
.cb-chat__head strong { display: block; font-size: 0.92rem; color: var(--cb-white); }
.cb-chat__head span { font-size: 0.7rem; color: var(--cb-muted); }
.cb-chat__live {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cb-teal);
}
.cb-chat__live i {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cb-teal);
  margin-right: 0.35rem;
  animation: cb-blink 1.2s ease infinite;
}
@keyframes cb-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.cb-chat__msgs {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 280px;
}
.cb-msg {
  max-width: 88%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
}
.cb-msg--bot {
  align-self: flex-start;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-bottom-left-radius: 4px;
}
.cb-msg--user {
  align-self: flex-end;
  background: rgba(251, 113, 133, 0.14);
  border: 1px solid rgba(251, 113, 133, 0.25);
  border-bottom-right-radius: 4px;
}
.cb-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0 1rem 0.75rem;
}
.cb-chip {
  border: 1px solid var(--cb-line);
  background: transparent;
  color: var(--cb-teal);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}
.cb-chip:hover { background: var(--cb-teal-dim); }
.cb-chat__form {
  display: flex; gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--cb-line);
  background: var(--cb-panel-2);
}
.cb-chat__form input {
  flex: 1;
  border: 1px solid var(--cb-line);
  background: var(--cb-bg);
  color: var(--cb-text);
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  font-size: 0.86rem;
  font-family: inherit;
  outline: none;
}
.cb-chat__form input:focus { border-color: rgba(45, 212, 191, 0.45); }
.cb-chat__form button {
  border: 0;
  background: var(--cb-teal);
  color: #042f2e;
  border-radius: 12px;
  padding: 0 1rem;
  font-weight: 800;
  cursor: pointer;
}

/* Showcase grid */
.cb-show {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}
.cb-show__img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--cb-line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.cb-show__img img {
  width: 100%; display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover; object-position: top;
}
.cb-list {
  list-style: none; padding: 0; margin: 1.15rem 0 0;
}
.cb-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-bottom: 0.7rem; font-weight: 600; font-size: 0.92rem;
}
.cb-list i { color: var(--cb-teal); margin-top: 0.15rem; }

.cb-use {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cb-use__card {
  background: var(--cb-panel);
  border: 1px solid var(--cb-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.cb-use__card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-3px);
}
.cb-use__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.cb-use__card div { padding: 1rem 1.1rem 1.2rem; }
.cb-use__card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--cb-body);
  font-weight: 800;
}
.cb-use__card p { margin: 0; color: var(--cb-muted); font-size: 0.86rem; line-height: 1.55; }

.cb-cta { padding: 3.5rem 0 4.5rem; }
.cb-cta__box {
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.12), transparent 45%),
    var(--cb-panel);
  border: 1px solid var(--cb-line);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}
.cb-cta__box h2 { margin: 0 0 0.65rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cb-cta__box p { color: var(--cb-muted); max-width: 540px; margin: 0 auto 1.35rem; }
.cb-cta__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

.chatbots-svc-page .footer {
  background: #050810 !important;
  border-top: 1px solid var(--cb-line);
  color: var(--cb-muted) !important;
}
.chatbots-svc-page .footer a { color: var(--cb-teal) !important; }
.chatbots-svc-page .footer .sitename,
.chatbots-svc-page .footer h4,
.chatbots-svc-page .footer .copyright p { color: var(--cb-white) !important; }
.chatbots-svc-page .footer-newsletter { display: none; }

@media (max-width: 991px) {
  .cb-features,
  .cb-studio,
  .cb-show,
  .cb-use { grid-template-columns: 1fr; }
  .cb-features { grid-template-columns: 1fr 1fr; }
  .cb-hero { min-height: auto; }
}
@media (max-width: 575px) {
  .cb-features,
  .cb-use { grid-template-columns: 1fr; }
}
