:root {
  /* Theme Colors */
  --all-selection-color: #934b33;
  --aichatbot-black_white: #f4f4f4;
  --border-color: #374151;
  --blur: 0px;
  --aichatbot-content-bg-color-full: #1b1a1a;
  --aichatbot-content-bg-color-pop: #484848;
  --aichatbot-content-bg-color-pop2: #000000;
  --aichatbot-content-bg-color-pop-text: white;
  --aichatbot-content-bg-color-pop-back: #fffc;
  --opacity: 1;
  --aichatbot-site-loader-color: #111111;
  --aichatbot-site-bg-color: #111111;
  --aichatbot-site-detail-panel-bg: #111111;
  --aichatbot-quote-bg-color: #1d1a17;
  --aichatbot-code-bg-color: #1d1a17;
  --aichatbot-inline-code-bg: #2a2a2a;
  --aichatbot-content-bg-color: #0f0f10;
  --aichatbot-content-tr-bg-color: #0f0f10;
  --aichatbot-header-bg-color: #171717;
  --aichatbot-some-r-bg-color: #171717;
  --aichatbot-some-sb-bg-color: #271911;
  --aichatbot-some-sc-bg-color: #1d1a17;
  --aichatbot-text-secondary: #fff4ef;
  --aichatbot-text-color: #ffffff;
  --aichatbot-accent: #fff5ee;
  --aichatbot-some-sc-bg-color-2: linear-gradient(180deg, #151518, #101014);
  --aichatbot-some-a-bg-color: #2a2a2a;
  --aichatbot-main-color: #e64a19;
  --aichatbot-main-color1: #d84315;
  --aichatbot-main-color2: #4e342e;
  --aichatbot-main-color2t: #3c281cb8;
  --aichatbot-heading-color: #ffffff;
  --aichatbot-body-color: #ffffff;
  --aichatbot-border-color: #ce591d;
  --aichatbot-card-bg-color: #1f2841;
  --aichatbot-button-bg-color: #1c1925;
  --aichatbot-hover-color: #fff;
  --aichatbot-main-gradient1: #e64a19;
  --aichatbot-main-gradient2: #e64a19;
  --logo-bg: #f5e9dc;

  /* App-specific mappings */
  --bg: #111111;
  --bg-alt: #0f0f10;
  --card-bg: #171717;
  --border-subtle: rgba(206, 89, 29, 0.2);
  --accent: #e64a19;
  --accent-soft: rgba(230, 74, 25, 0.18);
  --text-main: #ffffff;
  --text-muted: #fff4ef;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: radial-gradient(
    1200px 800px at 70% -10%,
    rgba(230, 74, 25, 0.12),
    transparent 60%
  ),
  radial-gradient(
    800px 600px at -10% 110%,
    rgba(217, 131, 36, 0.1),
    transparent 60%
  ),
  var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0px;
}

/* Header */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(206, 89, 29, 0.4);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--aichatbot-header-bg-color);
  border-color: var(--aichatbot-border-color);
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--aichatbot-content-bg-color);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-close {
  background: transparent;
  border: 1px solid rgba(206, 89, 29, 0.4);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--aichatbot-header-bg-color);
  border-color: var(--aichatbot-border-color);
}

.mobile-menu-nav {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--aichatbot-header-bg-color);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mobile-menu-item:hover {
  background: var(--aichatbot-some-a-bg-color);
  border-color: var(--aichatbot-border-color);
  color: var(--text-main);
  transform: translateX(-4px);
}

.mobile-menu-item i {
  width: 24px;
  font-size: 18px;
  text-align: center;
  color: var(--accent);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-cta {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-header-bg-color);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-cta:hover {
  background: var(--aichatbot-some-a-bg-color);
  border-color: var(--aichatbot-border-color);
}

.mobile-menu-cta--primary {
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  border-color: rgba(206, 89, 29, 0.4);
}

.mobile-menu-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.4);
}

.header-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.header-link:hover {
  color: var(--text-main);
}

.header-link:hover::before {
  width: calc(100% - 32px);
}

.header-link:active {
  transform: scale(0.95);
}

.header-btn-primary {
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.header-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 74, 25, 0.5);
}

.header-btn-primary:hover::before {
  width: 200px;
  height: 200px;
}

.header-btn-primary:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile Header Buttons (visible on tablet/mobile) */
.header-btn-mobile {
  display: none;
  border-radius: 8px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: transparent;
  color: var(--text-main);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-btn-mobile:hover {
  background: var(--aichatbot-header-bg-color);
  border-color: var(--aichatbot-border-color);
}

.header-btn-mobile:active {
  transform: scale(0.95);
}

.header-btn-mobile--primary {
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  border-color: var(--aichatbot-main-color);
}

.header-btn-mobile--primary:hover {
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--aichatbot-main-gradient2) 0, var(--aichatbot-main-gradient1) 35%, #1a0502 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--logo-bg);
  box-shadow: 0 0 0 2px rgba(206, 89, 29, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.brand-image {
  height: 60px;
  display: block;
}

.brand-icon {
  height: 48px;
  width: 48px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

.top-pill {
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-header-bg-color);
  color: var(--text-muted);
  font-size: 11px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-pill::before {
  content: "•";
  font-size: 9px;
  color: var(--accent);
}

/* Main */

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Screens */

.screen {
  display: none;
}

.screen--active {
  display: block;
}

/* Chat Screen */

.hero {
  text-align: center;
  padding: 40px 0 32px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  word-wrap: break-word;
}

.hero-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.4;
}

.chat-card {
  margin: 40px auto 16px;
  max-width: 900px;
  width: 100%;
  background: radial-gradient(circle at top left, rgba(230, 74, 25, 0.12) 0, var(--bg) 50%);
  border-radius: 40px;
  padding: 40px 38px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.chat-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.prompt-placeholder {
  color: #e5e7eb;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  text-align: left;
  min-height: 90px;
  display: flex;
  align-items: center;
  flex: 1;
}

.chat-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.35);
  background: var(--aichatbot-header-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.icon-btn--primary {
  background: var(--aichatbot-main-color);
  border-color: rgba(206, 89, 29, 0.35);
  color: #0b0b0b;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--aichatbot-border-color);
}

/* Detail Screen (Notion-like) */

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 36px;
  padding: 20px 0 12px;
  align-items: stretch;
}

.detail-left {
  background: radial-gradient(circle at top, var(--aichatbot-header-bg-color), var(--aichatbot-content-bg-color));
  border-radius: var(--radius-xl);
  padding: 26px 26px 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--aichatbot-header-bg-color);
  border: 1px solid rgba(206, 89, 29, 0.45);
  color: var(--text-muted);
  align-self: flex-start;
}

.detail-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--aichatbot-main-gradient2) 0, var(--aichatbot-main-gradient1) 60%);
}

.detail-left h2 {
  margin: 0;
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.25;
}

#detailSubtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.5;
}

.detail-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.highlight-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--aichatbot-some-a-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

.highlight-text {
  font-size: clamp(12px, 2vw, 13px);
  color: #e5e7eb;
  line-height: 1.5;
}

.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(206, 89, 29, 0.4);
}

.meta-item {
  display: flex;
  gap: 8px;
  font-size: 11px;
  flex-wrap: wrap;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.meta-value {
  color: #e5e7eb;
}

/* Right Mock Window */

.detail-right {
  display: flex;
  align-items: stretch;
}

.mock-window {
  width: 100%;
  border-radius: var(--radius-xl);
  background: #f5f5f6;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 350px;
  max-height: 500px;
}

/* Video Container */
.mock-video-container {
  width: 100%;
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.mock-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Video Fullscreen Button */
.video-fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-fullscreen-btn:hover {
  background: var(--aichatbot-main-color);
  transform: scale(1.1);
}

.video-fullscreen-btn:active {
  transform: scale(0.95);
}

/* Video Fullscreen Overlay */
.video-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-fullscreen-overlay.active {
  display: flex;
  opacity: 1;
}

.video-fullscreen-overlay video {
  max-width: 100%;
  max-height: calc(100% - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.video-fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-fullscreen-close:hover {
  background: var(--aichatbot-main-color);
  transform: scale(1.1);
}

.video-fullscreen-title {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* Show fullscreen button on tablet/mobile */
@media (max-width: 1024px) {
  .video-fullscreen-btn {
    display: flex;
  }
}

.mock-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(to right, #e2e8f0, #f8fafc);
  border-bottom: 1px solid #e5e7eb;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e5e7eb;
}

.dots span:nth-child(1) {
  background: #fb7185;
}
.dots span:nth-child(2) {
  background: #facc15;
}
.dots span:nth-child(3) {
  background: #22c55e;
}

.mock-title {
  font-size: clamp(11px, 2vw, 13px);
  color: #0f172a;
  font-weight: 500;
}

.mock-body {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(0, 35%);
  height: 100%;
  overflow: auto;
}

/* Left panel inside mock window */

.mock-toolbar {
  padding: 14px 16px 8px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.toolbar-pill {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-size: 11px;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
}

.toolbar-pill--active {
  background: #0f172a;
  color: #f9fafb;
  border-color: #0f172a;
}

.toolbar-pill--ghost {
  background: #ffffff;
  border-style: dashed;
  border-color: #d1d5db;
  color: #111827;
}

/* Floating demo window */

.demo-window {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 260px;
  max-width: calc(100% - 36px);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  border: 1px solid #e5e7eb;

  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.demo-window--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.demo-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 6px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(to right, #f3f4f6, #ffffff);
}

.demo-title {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
}

.demo-close {
  border: none;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
}

.demo-close:hover {
  color: #111827;
}

.demo-window-body {
  padding: 8px 10px 10px;
}

.demo-line {
  margin: 0 0 4px;
  font-size: 11px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 4px;
  flex-shrink: 0;
}

.demo-dot--green {
  background: #22c55e;
}
.demo-dot--blue {
  background: #3b82f6;
}
.demo-dot--amber {
  background: #f59e0b;
}

.demo-footer {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.demo-pill {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
}

.demo-cta {
  border-radius: 999px;
  border: none;
  font-size: 10px;
  padding: 4px 9px;
  background: #0f172a;
  color: #f9fafb;
  cursor: pointer;
}

/* Table & timeline */

.mock-table {
  padding: 10px 16px 14px;
  border-right: 1px solid #e5e7eb;
  overflow-x: auto;
}

.mock-table-header {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 8px;
  min-width: 400px;
}

.mock-row {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  align-items: center;
  padding: 6px 0;
  border-radius: 6px;
  font-size: 12px;
  min-width: 400px;
}

.mock-row:nth-child(2) {
  background: #f9fafb;
}

.row-label {
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 8px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.tag {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
}

.tag--green {
  background: #dcfce7;
  color: #166534;
}
.tag--amber {
  background: #fef9c3;
  color: #854d0e;
}
.tag--gray {
  background: #e5e7eb;
  color: #374151;
}

.status {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
}

.status--progress {
  background: #dbeafe;
  color: #1d4ed8;
}
.status--queued {
  background: #fef3c7;
  color: #d97706;
}
.status--done {
  background: #e0f2fe;
  color: #0369a1;
}

/* Right mini-sidebar */

.mock-sidebar {
  padding: 12px 14px;
  background: #f9fafb;
  overflow-y: auto;
}

.mock-sidebar-title {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-item {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #4b5563;
  line-height: 1.4;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 3px;
  background: #cbd5f5;
  flex-shrink: 0;
}

.timeline-label {
  flex: 1;
}

/* Dock Container */

.dock-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  margin-top: 16px;
  margin-bottom: 16px;
  position: relative;
}

/* Dock Scroll Indicators */
.dock-scroll-hint {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aichatbot-main-color) 0%, var(--aichatbot-main-color1) 100%);
  color: var(--logo-bg);
  border: none;
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(230, 74, 25, 0.5);
  transition: all 0.3s ease;
  animation: scrollHintPulse 2s ease-in-out infinite;
}

.dock-scroll-hint:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(230, 74, 25, 0.7);
}

.dock-scroll-hint--left {
  left: 8px;
}

.dock-scroll-hint--right {
  right: 8px;
}

.dock-scroll-hint.visible {
  display: flex;
}

@keyframes scrollHintPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(230, 74, 25, 0.5); }
  50% { box-shadow: 0 4px 24px rgba(230, 74, 25, 0.8), 0 0 12px rgba(230, 74, 25, 0.4); }
}

/* Dock Scroll Indicator Text (Mobile) */
.dock-scroll-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-muted);
  animation: scrollIndicatorFade 3s ease-in-out forwards;
}

.dock-scroll-indicator i {
  color: var(--accent);
  animation: scrollArrowBounce 1s ease-in-out infinite;
}

.dock-scroll-indicator i:first-child {
  animation-direction: reverse;
}

@keyframes scrollIndicatorFade {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Dock */

.dock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  background: rgba(23, 23, 23, 0.5);
  border: 1px solid var(--border-subtle);
  scroll-behavior: smooth;
}

.dock::-webkit-scrollbar {
  display: none;
}

.dock-item {
  border: none;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.2s ease;
  min-width: 70px;
  flex-shrink: 0;
  text-align: center;
}

.dock-item:hover {
  transform: translateY(-6px);
}

.dock-item--active {
  transform: translateY(-6px);
  color: var(--text-main);
}

.dock-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  margin: 0 auto;
}

.dock-item--active .dock-icon {
  border-color: var(--aichatbot-border-color);
  color: var(--logo-bg);
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.4);
}

.dock-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

/* Pricing Section */

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pricing-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(14px, 2vw, 16px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.pricing-loader i {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent);
}

.pricing-loader p {
  margin: 0;
  font-size: 14px;
}

.pricing-card {
  background: radial-gradient(circle at top, var(--aichatbot-header-bg-color), var(--aichatbot-content-bg-color));
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
}

.pricing-card--featured {
  border-color: var(--aichatbot-border-color);
  background: radial-gradient(circle at top, rgba(230, 74, 25, 0.15), var(--aichatbot-content-bg-color));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-main);
}

.pricing-description {
  font-size: clamp(12px, 2vw, 13px);
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-currency {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: var(--text-main);
}

.pricing-amount {
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.pricing-period {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: clamp(12px, 2vw, 13px);
  color: #e5e7eb;
  line-height: 1.5;
}

.pricing-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--aichatbot-some-a-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-icon i {
  font-size: 10px;
  color: var(--accent);
}

.pricing-cta {
  width: 100%;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-header-bg-color);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  background: var(--aichatbot-some-a-bg-color);
  border-color: var(--aichatbot-border-color);
}

.pricing-cta--primary {
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  border-color: rgba(206, 89, 29, 0.4);
}

.pricing-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 74, 25, 0.5);
}

.pricing-card--free .pricing-amount {
  color: var(--accent);
}

/* Site Footer */
.site-footer {
  margin-top: 40px;
  padding: 32px 0 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-alt);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--text-main);
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-copyright {
  margin-top: 8px;
}

.footer-copyright p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-company-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-company-link:hover {
  color: var(--aichatbot-main-color1);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
  
  .dock-container {
    padding: 0 24px;
  }
  
  .detail-layout {
    gap: 24px;
  }
  
  .dock {
    gap: 8px;
    padding: 10px 14px;
  }

  .dock-item {
    min-width: 65px;
    padding: 6px 10px;
  }
  
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

/* Tablets (960px and below) */
@media (max-width: 960px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .mock-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .mock-table {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .mock-sidebar {
    padding-top: 8px;
  }

  .chat-card {
    padding: 28px 22px;
    border-radius: 32px;
  }
  
  .hero {
    padding: 32px 0 24px;
  }
}

/* Tablets and Large Phones (768px and below) */
@media (max-width: 768px) {
  .header-link {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  
  .dock-container {
    padding: 0 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  
  .top-bar {
    margin-bottom: 8px;
  }
  
  .brand-image {
    height: 52px;
  }
  
  .hero h1 {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .chat-card {
    margin: 32px auto 12px;
    padding: 24px 20px;
    border-radius: 28px;
  }
  
  .detail-left {
    padding: 22px 20px 18px;
  }
  
  .pricing-container {
    padding: 32px 16px;
  }
  
  .pricing-header {
    margin-bottom: 36px;
  }
}

/* Small Phones (640px and below) */
@media (max-width: 640px) {
  .dock-container {
    padding: 0 12px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .top-bar {
    gap: 8px;
  }

  .chat-input-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .prompt-placeholder {
    min-height: 60px;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .chat-actions {
    align-self: center;
    justify-content: center;
  }
  
  .chat-card {
    padding: 24px 16px;
    border-radius: 24px;
    margin: 24px auto 12px;
  }

  .dock {
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 16px;
  }

  .dock-item {
    min-width: 60px;
    padding: 8px 6px;
    gap: 3px;
  }

  .dock-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .dock-label {
    font-size: 9px;
    line-height: 1.2;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .header-btn-primary {
    display: none;
  }
  
  .top-pill {
    display: none;
  }
  
  .brand-image {
    height: 48px;
  }
  
  .hero {
    padding: 24px 0 20px;
  }
  
  .detail-left {
    padding: 20px 16px 16px;
    border-radius: 24px;
  }
  
  .detail-left h2 {
    font-size: 20px;
  }
  
  .mock-window {
    border-radius: 24px;
    min-height: 350px;
  }
  
  .mock-table-header,
  .mock-row {
    min-width: 350px;
  }
  
  .demo-window {
    width: 220px;
    right: 12px;
    bottom: 12px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pricing-card {
    padding: 28px 20px;
  }
  
  .pricing-header h2 {
    font-size: 24px;
  }
  
  .site-footer {
    margin-top: 20px;
    padding: 24px 12px 20px;
  }
  
  .footer-links {
    gap: 12px;
    flex-direction: column;
  }
  
  .footer-link {
    font-size: 13px;
  }
  
  .footer-copyright p {
    font-size: 12px;
    padding: 0 12px;
  }
}

/* Extra Small Phones (480px and below) */
@media (max-width: 480px) {
  
  .dock-container {
    padding: 0 10px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  .hero h1 {
    font-size: 22px;
    padding: 0 8px;
  }
  
  .hero-subtitle {
    font-size: 13px;
    padding: 0 8px;
  }
  
  .chat-card {
    padding: 20px 14px;
    border-radius: 20px;
  }
  
  .prompt-placeholder {
    font-size: 14px;
    min-height: 50px;
    padding: 0 4px;
  }
  
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  
  .dock {
    gap: 2px;
    padding: 8px 6px;
  }
  
  .dock-item {
    min-width: 54px;
    padding: 6px 4px;
  }
  
  .dock-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  
  .dock-label {
    font-size: 8px;
  }
  
  .detail-left h2 {
    font-size: 18px;
  }
  
  #detailSubtitle {
    font-size: 12px;
  }
  
  .highlight-text {
    font-size: 11px;
  }
  
  .mock-window {
    min-height: 300px;
  }
  
  .demo-window {
    width: 200px;
  }
  
  .pricing-card {
    padding: 24px 16px;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .footer-links {
    gap: 10px;
  }
  
  .footer-link {
    font-size: 12px;
  }
  
  .footer-copyright p {
    font-size: 11px;
  }
}

/* Landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    padding: 20px 0 16px;
  }
  
  .hero h1 {
    margin-bottom: 6px;
  }
  
  .chat-card {
    margin: 20px auto 12px;
  }
  
  .prompt-placeholder {
    min-height: 40px;
  }
  
  .detail-layout {
    padding: 12px 0 8px;
  }
  
  .mock-window {
    min-height: 280px;
  }
}

/* Header */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(206, 89, 29, 0.4);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--aichatbot-header-bg-color);
  border-color: var(--aichatbot-border-color);
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--aichatbot-content-bg-color);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-close {
  background: transparent;
  border: 1px solid rgba(206, 89, 29, 0.4);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--aichatbot-header-bg-color);
  border-color: var(--aichatbot-border-color);
}

.mobile-menu-nav {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--aichatbot-header-bg-color);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mobile-menu-item:hover {
  background: var(--aichatbot-some-a-bg-color);
  border-color: var(--aichatbot-border-color);
  color: var(--text-main);
  transform: translateX(-4px);
}

.mobile-menu-item i {
  width: 24px;
  font-size: 18px;
  text-align: center;
  color: var(--accent);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-cta {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-header-bg-color);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-cta:hover {
  background: var(--aichatbot-some-a-bg-color);
  border-color: var(--aichatbot-border-color);
}

.mobile-menu-cta--primary {
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  border-color: rgba(206, 89, 29, 0.4);
}

.mobile-menu-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.4);
}


.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--aichatbot-main-gradient2) 0, var(--aichatbot-main-gradient1) 35%, #1a0502 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--logo-bg);
  box-shadow: 0 0 0 2px rgba(206, 89, 29, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.brand-image {
  height: 60px;

}
.brand-icon {
  height: 48px;
  width: 48px;
  
}



.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

.top-pill {
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-header-bg-color);
  color: var(--text-muted);
  font-size: 11px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-pill::before {
  content: "ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒâ€šÃ‚Â";
  font-size: 9px;
  color: var(--accent);
}

/* Main */

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Screens */

.screen {
  display: none;
}

.screen--active {
  display: block;
}

/* Chat Screen */

.hero {
  text-align: center;
  padding: 40px 0 32px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.chat-card {
  margin: 40px auto 16px;
  max-width: 900px;
  background: radial-gradient(circle at top left, rgba(230, 74, 25, 0.12) 0, var(--bg) 50%);
  border-radius: 40px;
  padding: 40px 38px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.chat-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.prompt-placeholder {
  color: #e5e7eb;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  min-height: 90px;
}

.chat-actions {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.35);
  background: var(--aichatbot-header-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.icon-btn--primary {
  background: var(--aichatbot-main-color);
  border-color: rgba(206, 89, 29, 0.35);
  color: #0b0b0b;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--aichatbot-border-color);
}

/* Detail Screen (Notion-like) */

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 36px;
  padding: 20px 0 12px;
  align-items: stretch;
}

.detail-left {
  background: radial-gradient(circle at top, var(--aichatbot-header-bg-color), var(--aichatbot-content-bg-color));
  border-radius: var(--radius-xl);
  padding: 26px 26px 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--aichatbot-header-bg-color);
  border: 1px solid rgba(206, 89, 29, 0.45);
  color: var(--text-muted);
}

.detail-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--aichatbot-main-gradient2) 0, var(--aichatbot-main-gradient1) 60%);
}

.detail-left h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

#detailSubtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.detail-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.highlight-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--aichatbot-some-a-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

.highlight-text {
  font-size: 13px;
  color: #e5e7eb;
}

.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(206, 89, 29, 0.4);
}

.meta-item {
  display: flex;
  gap: 8px;
  font-size: 11px;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.meta-value {
  color: #e5e7eb;
}

/* Right Mock Window */

.detail-right {
  display: flex;
  align-items: stretch;
}

.mock-window {
  width: 100%;
  border-radius: var(--radius-xl);
  background: #f5f5f6;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Video Container */
.mock-video-container {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mock-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(to right, #e2e8f0, #f8fafc);
  border-bottom: 1px solid #e5e7eb;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e5e7eb;
}

.dots span:nth-child(1) {
  background: #fb7185;
}
.dots span:nth-child(2) {
  background: #facc15;
}
.dots span:nth-child(3) {
  background: #22c55e;
}

.mock-title {
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
}

.mock-body {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(0, 35%);
  height: 100%;
}

/* Left panel inside mock window */

.mock-toolbar {
  padding: 14px 16px 8px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.toolbar-pill {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-size: 11px;
  color: #374151;
  cursor: pointer;
}

.toolbar-pill--active {
  background: #0f172a;
  color: #f9fafb;
  border-color: #0f172a;
}

.toolbar-pill--ghost {
  background: #ffffff;
  border-style: dashed;
  border-color: #d1d5db;
  color: #111827;
}

/* Floating demo window */

.demo-window {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 260px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  border: 1px solid #e5e7eb;

  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.demo-window--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.demo-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 6px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(to right, #f3f4f6, #ffffff);
}

.demo-title {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
}

.demo-close {
  border: none;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
}

.demo-close:hover {
  color: #111827;
}

.demo-window-body {
  padding: 8px 10px 10px;
}

.demo-line {
  margin: 0 0 4px;
  font-size: 11px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 4px;
}

.demo-dot--green {
  background: #22c55e;
}
.demo-dot--blue {
  background: #3b82f6;
}
.demo-dot--amber {
  background: #f59e0b;
}

.demo-footer {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.demo-pill {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
}

.demo-cta {
  border-radius: 999px;
  border: none;
  font-size: 10px;
  padding: 4px 9px;
  background: #0f172a;
  color: #f9fafb;
  cursor: pointer;
}

/* Table & timeline */

.mock-table {
  padding: 10px 16px 14px;
  border-right: 1px solid #e5e7eb;
}

.mock-table-header {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 8px;
}

.mock-row {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  align-items: center;
  padding: 6px 0;
  border-radius: 6px;
  font-size: 12px;
}

.mock-row:nth-child(2) {
  background: #f9fafb;
}

.row-label {
  color: #111827;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.tag {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
}

.tag--green {
  background: #dcfce7;
  color: #166534;
}
.tag--amber {
  background: #fef9c3;
  color: #854d0e;
}
.tag--gray {
  background: #e5e7eb;
  color: #374151;
}

.status {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
}

.status--progress {
  background: #dbeafe;
  color: #1d4ed8;
}
.status--queued {
  background: #fef3c7;
  color: #d97706;
}
.status--done {
  background: #e0f2fe;
  color: #0369a1;
}

/* Right mini-sidebar */

.mock-sidebar {
  padding: 12px 14px;
  background: #f9fafb;
}

.mock-sidebar-title {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-item {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #4b5563;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 3px;
  background: #cbd5f5;
}

.timeline-label {
  flex: 1;
}

/* Dock */

.dock {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 10px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* background-color: #0369a1; */
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
}

.dock::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.dock-item {
  border: none;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 12px;
  /* border-radius: 999px; */
  transition: all 0.2s ease;
  min-width: 70px;
  flex-shrink: 0;
  /* border: 1px solid rgba(206, 89, 29, 0.2); */
}

.dock-item:hover {
  /* background: var(--aichatbot-main-color2); */
  transform: translateY(-6px);
  border-color: var(--aichatbot-border-color);
}

.dock-item--active {
  transform: translateY(-6px);
  /* background: var(--accent-soft);  */
  color: var(--text-main);
  /* border-color: var(--aichatbot-border-color); */
}

.dock-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* background: var(--aichatbot-header-bg-color); */
  /* border: 1px solid rgba(206, 89, 29, 0.3); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.dock-item--active .dock-icon {
  /* background: linear-gradient(135deg, var(--aichatbot-main-gradient2) 0%, var(--aichatbot-main-gradient1) 50%, var(--aichatbot-main-color1) 100%); */
  border-color: var(--aichatbot-border-color);
  color: var(--logo-bg);
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.4);
}

.dock-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Dock Tooltip */
.dock-tooltip {
  position: fixed;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--aichatbot-main-color) 0%, var(--aichatbot-main-color1) 100%);
  color: var(--logo-bg);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(230, 74, 25, 0.6);
  z-index: 9999;
  pointer-events: none;
  cursor: pointer;
  animation: tooltipBounce 1.5s ease-in-out infinite, tooltipPulseGlow 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

/* Down arrow pointing to dock */
.dock-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--aichatbot-main-color1);
}

.dock-tooltip i {
  margin-right: 8px;
  display: inline-block;
  animation: pointerBounce 0.8s ease-in-out infinite;
}

@keyframes tooltipBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes tooltipPulseGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(230, 74, 25, 0.6); }
  50% { box-shadow: 0 12px 48px rgba(230, 74, 25, 0.9), 0 0 30px rgba(230, 74, 25, 0.5); }
}

@keyframes pointerBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* Fade out animation for tooltip */
.dock-tooltip.fade-out {
  animation: tooltipFadeOut 0.5s ease-out forwards;
}

@keyframes tooltipFadeOut {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* Sequential Dock Illumination */
.dock-item.illuminate {
  animation: dockIlluminate 0.8s ease-out forwards;
}

.dock-item.illuminate .dock-icon {
  animation: iconPulseGlow 0.8s ease-out forwards;
}

@keyframes dockIlluminate {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-6px) scale(1.08); }
  60% { transform: translateY(-3px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes iconPulseGlow {
  0% { 
    box-shadow: 0 0 0 rgba(230, 74, 25, 0);
    border-color: rgba(206, 89, 29, 0.3);
  }
  30% { 
    box-shadow: 0 0 24px rgba(230, 74, 25, 0.7), 0 0 48px rgba(230, 74, 25, 0.4), inset 0 0 12px rgba(230, 74, 25, 0.3);
    border-color: var(--aichatbot-border-color);
    background: linear-gradient(135deg, rgba(230, 74, 25, 0.2) 0%, rgba(230, 74, 25, 0.1) 100%);
  }
  60% {
    box-shadow: 0 0 16px rgba(230, 74, 25, 0.4), 0 0 32px rgba(230, 74, 25, 0.2);
    border-color: rgba(206, 89, 29, 0.5);
  }
  100% { 
    box-shadow: 0 0 0 rgba(230, 74, 25, 0);
    border-color: rgba(206, 89, 29, 0.3);
    background: var(--aichatbot-header-bg-color);
  }
}

/* Pricing Section */

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.pricing-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.pricing-loader i {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent);
}

.pricing-loader p {
  margin: 0;
  font-size: 14px;
}

.pricing-card {
  background: radial-gradient(circle at top, var(--aichatbot-header-bg-color), var(--aichatbot-content-bg-color));
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
}

.pricing-card--featured {
  border-color: var(--aichatbot-border-color);
  background: radial-gradient(circle at top, rgba(230, 74, 25, 0.15), var(--aichatbot-content-bg-color));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-plan-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-main);
}

.pricing-description {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-main);
}

.pricing-amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #e5e7eb;
}

.pricing-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--aichatbot-some-a-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-icon i {
  font-size: 10px;
  color: var(--accent);
}

.pricing-cta {
  width: 100%;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(206, 89, 29, 0.4);
  background: var(--aichatbot-header-bg-color);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  background: var(--aichatbot-some-a-bg-color);
  border-color: var(--aichatbot-border-color);
}

.pricing-cta--primary {
  background: var(--aichatbot-main-color);
  color: var(--logo-bg);
  border-color: rgba(206, 89, 29, 0.4);
}

.pricing-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 74, 25, 0.5);
}

.pricing-card--free .pricing-amount {
  color: var(--accent);
}

/* Responsive */

@media (max-width: 1024px) {
  .dock-container {
    padding: 0 20px;
  }
  
  .dock {
    gap: 8px;
    padding: 10px 14px;
    justify-content: flex-start;
  }

  .dock-item {
    min-width: 65px;
  }
  
  .dock-scroll-hint {
    display: flex;
  }
  
  .dock-scroll-hint--left {
    left: 4px;
  }
  
  .dock-scroll-hint--right {
    right: 4px;
  }
  
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .hero {
    padding: 32px 0 24px;
  }
  
  .chat-card {
    margin: 32px auto 16px;
    border-radius: 28px;
  }
}

@media (max-width: 960px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  
  .detail-left {
    order: 1;
  }
  
  .detail-right {
    order: 2;
  }

  .mock-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .mock-table {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .mock-sidebar {
    padding-top: 8px;
  }

  .chat-card {
    padding: 28px 22px;
  }

  .prompt-placeholder {
    font-size: 18px;
  }
  
  .detail-pill {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .detail-highlights {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  
  .header-link {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .dock-container {
    padding: 0 12px;
  }
  
  .dock {
    gap: 6px;
    padding: 10px 16px;
    border-radius: 20px;
    justify-content: flex-start;
  }
  
  .dock-item {
    min-width: 58px;
    padding: 6px 8px;
  }
  
  .dock-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  
  .dock-label {
    font-size: 9px;
  }
  
  .dock-scroll-indicator {
    display: flex;
  }
  
  .dock-scroll-hint {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .hero h1 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 8px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .chat-card {
    margin: 24px auto 12px;
    padding: 24px 18px;
    border-radius: 24px;
  }
  
  .pricing-container {
    padding: 24px 16px;
  }
  
  .pricing-header {
    margin-bottom: 32px;
  }
  
  .pricing-card {
    padding: 24px 20px;
  }
  
  /* Video container responsive */
  .mock-window {
    min-height: 280px;
    max-height: 400px;
  }
  
  .mock-video-container {
    min-height: 220px;
  }
}

@media (max-width: 640px) {

  .chat-input-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .chat-actions {
    align-self: flex-end;
  }
  
  .prompt-placeholder {
    font-size: 16px;
    line-height: 1.4;
  }

  .dock-container {
    padding: 0 8px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  
  .dock {
    justify-content: flex-start;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .dock-item {
    min-width: 54px;
    padding: 6px 6px;
  }

  .dock-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .dock-label {
    font-size: 8px;
    letter-spacing: 0;
  }
  
  .dock-scroll-hint {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  
  .dock-scroll-hint--left {
    left: 2px;
  }
  
  .dock-scroll-hint--right {
    right: 2px;
  }
  
  .header-actions {
    gap: 6px;
  }
  
  .header-link {
    display: none;
  }
  
  .header-btn-primary {
    display: none;
  }
  
  /* Show mobile header buttons */
  .header-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .top-pill {
    display: none;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-header h2 {
    font-size: 26px;
  }
  
  .pricing-subtitle {
    font-size: 14px;
  }

  .brand-image {
    height: 44px;
  }
  
  .hero {
    padding: 24px 0 16px;
  }
  
  .chat-card {
    margin: 20px auto 10px;
    padding: 20px 16px;
    border-radius: 20px;
  }
  
  /* Detail screen mobile improvements */
  .detail-pill {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .detail-left h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .detail-left p {
    font-size: 14px;
  }
  
  .detail-highlights {
    gap: 8px;
  }
  
  .detail-highlight {
    font-size: 13px;
    padding: 10px 14px;
  }
  
  .detail-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .mock-window {
    border-radius: 16px;
  }
  
  .mock-window-header {
    padding: 10px 14px;
  }
  
  .mock-title {
    font-size: 12px;
  }
  
  .toolbar-pill {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  
  .brand-image {
    height: 40px;
  }
  
  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 22px;
  }
  
  .hero-subtitle {
    font-size: 13px;
  }
  
  .chat-card {
    padding: 16px 14px;
    border-radius: 18px;
  }
  
  .prompt-placeholder {
    font-size: 14px;
  }
  
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  
  .dock-container {
    padding: 0 6px;
  }
  
  .dock {
    padding: 6px 10px;
    gap: 2px;
  }
  
  .dock-item {
    min-width: 48px;
    padding: 4px 4px;
  }
  
  .dock-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  
  .dock-label {
    font-size: 7px;
  }
  
  .dock-scroll-hint {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .pricing-card {
    padding: 20px 16px;
  }
  
  .pricing-amount {
    font-size: 36px;
  }
  
  .pricing-currency {
    font-size: 20px;
  }
  
  .detail-left h2 {
    font-size: 20px;
  }
  
  .detail-highlight {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  /* Video/Mock window responsive for small screens */
  .mock-window {
    min-height: 240px;
    max-height: 320px;
    border-radius: 16px;
  }
  
  .mock-video-container {
    min-height: 180px;
  }
  
  .mock-window-header {
    padding: 8px 12px;
  }
  
  .dots span {
    width: 7px;
    height: 7px;
  }
  
  .mock-title {
    font-size: 10px;
  }
}

/* Site Footer */
.site-footer {
  margin-top: 40px;
  padding: 32px 0 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-alt);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aichatbot-main-color), var(--aichatbot-main-color1));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.footer-link:hover {
  color: var(--text-main);
  transform: translateY(-2px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-link:active {
  transform: translateY(0) scale(0.98);
}

.footer-link::after {
  display: none;
}

.footer-copyright {
  margin-top: 8px;
}

.footer-copyright p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-company-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-company-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.footer-company-link:hover {
  color: var(--aichatbot-main-color1);
  text-decoration: none;
}

.footer-company-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Footer Styles */
@media (max-width: 640px) {
  .site-footer {
    margin-top: 24px;
    padding: 24px 16px 20px;
  }
  
  .footer-links {
    gap: 16px;
    flex-direction: column;
  }
  
  .footer-link {
    font-size: 13px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
}