/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-highlight: rgba(255, 255, 255, 0.45);
  --glass-blur: blur(24px);
  --text-dark: #1a1a2e;
  --text-body: #2d2d44;
  --text-muted: #555570;
  --accent: #5b8ec9;
  --accent-light: #7baed9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background:
    linear-gradient(180deg,
      rgba(160, 190, 215, 0.45) 0%,
      rgba(180, 205, 225, 0.5) 40%,
      rgba(195, 215, 232, 0.55) 70%,
      rgba(210, 225, 238, 0.6) 100%
    ),
    url('https://images.unsplash.com/photo-1517483000871-1dbf64a6e1c6?w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  flex-shrink: 0;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--text-dark);
}

.logo-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-btn {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--text-dark);
  border-radius: 50px;
  transition: all 0.2s;
  color: var(--text-dark);
}

.contact-btn:hover {
  background: var(--text-dark);
  color: #fff;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero h1 em { font-style: italic; }

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.demo-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  color: var(--text-dark);
  transition: all 0.25s;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.demo-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ===== Stats ===== */
.stats {
  padding: 0 2rem 5rem;
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.stat-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text-dark);
}

/* ===== Features ===== */
.features {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.features-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
}

.features-inner h2 em { font-style: italic; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.feature-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }

.feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CTA ===== */
.cta-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--text-dark);
  color: #fff;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ===== Contact ===== */
.contact-section {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  outline: none;
  color: var(--text-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 142, 201, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(45, 45, 68, 0.35);
}

.contact-form .submit-btn {
  width: 100%;
  padding: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--text-dark);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.contact-form .submit-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.contact-form .submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== Footer ===== */
.footer {
  background: rgba(26, 26, 46, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #fff;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
  -webkit-text-fill-color: #fff;
}

.footer-brand .logo-accent {
  background: linear-gradient(135deg, #7bb8e8, #a8d4f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-links h5 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Chatbot ===== */
.chatbot-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.chatbot-window {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 380px;
  max-height: 520px;
  background: rgba(220, 232, 242, 0.65);
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: chatSlideUp 0.3s ease;
}

.chatbot-window.open { display: flex; }

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.chatbot-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
}

.chatbot-close:hover { color: var(--text-dark); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 300px;
}

.chat-msg { display: flex; max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }

.chat-bubble {
  padding: 0.65rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-msg.bot .chat-bubble {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom-left-radius: 4px;
  color: var(--text-body);
}

.chat-msg.user .chat-bubble {
  background: var(--text-dark);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chatbot-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-input input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  outline: none;
  color: var(--text-body);
  transition: border-color 0.2s;
}

.chatbot-input input:focus {
  border-color: var(--accent);
}

.chatbot-input button {
  width: 38px;
  height: 38px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.chatbot-input button:hover { opacity: 0.8; }

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .navbar.open .nav-links,
  .navbar.open .nav-actions { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  .navbar.open .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 1rem 0 0;
    gap: 1rem;
  }
  .navbar.open .nav-actions {
    width: 100%;
    padding: 0.5rem 0;
    justify-content: center;
  }
  .stats-grid,
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .chatbot-window {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 5rem;
    max-height: 70vh;
  }
}

/* ===== Hero Enhancements ===== */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.demo-btn.primary {
  background: var(--text-dark);
  color: #fff;
  border: none;
}

.demo-btn.primary:hover {
  opacity: 0.9;
}

.demo-btn.secondary {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
}

.demo-btn.secondary:hover {
  background: var(--text-dark);
  color: #fff;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust > span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logos span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== Stat Label ===== */
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 auto 1.25rem;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===== Chatbot Enhancements ===== */
.chatbot-status {
  display: block;
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 500;
}

.chat-bubble.typing .dots {
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

/* ===== Footer Social ===== */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .demo-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding-bottom: 2rem;
}

/* ===== Product Showcase ===== */
.product-showcase {
  margin-top: 4rem;
}

.showcase-item {
  margin-bottom: 2rem;
}

.showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.showcase-window {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots span:first-child { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:last-child { background: #28ca42; }

.window-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.window-content {
  min-height: 300px;
}

/* Dashboard Preview */
.dashboard-preview {
  display: flex;
  min-height: 380px;
}

.dash-sidebar {
  width: 180px;
  padding: 1rem;
  background: rgba(26, 26, 46, 0.9);
  color: #fff;
}

.dash-logo {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
}

.dash-nav-item {
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
}

.dash-nav-item.active {
  background: rgba(91, 142, 201, 0.3);
  color: #fff;
}

.dash-main {
  flex: 1;
  padding: 1.5rem;
  background: rgba(245, 247, 250, 0.95);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dash-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dash-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dash-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.dash-stat-change {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.dash-stat-change.positive {
  color: #22c55e;
}

.dash-chart {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chart-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 100px;
}

.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.chart-bar-item .bar {
  width: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}

.chart-bar-item span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Showcase Row */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.showcase-item.small .window-content {
  min-height: 280px;
}

/* Chat Preview */
.chat-preview {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(180deg, rgba(240, 245, 250, 0.95), rgba(230, 238, 245, 0.95));
}

.chat-preview-msg {
  display: flex;
  gap: 0.5rem;
  max-width: 85%;
}

.chat-preview-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.chat-preview-msg .chat-text {
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.chat-preview-msg.bot .chat-text {
  background: #fff;
  color: var(--text-body);
  border-bottom-left-radius: 4px;
}

.chat-preview-msg.user .chat-text {
  background: var(--text-dark);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.typing-dots {
  display: inline-block;
  animation: typingPulse 1s infinite;
}

@keyframes typingPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Analytics Preview */
.analytics-preview {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(245, 247, 250, 0.95);
}

.analytics-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
}

.analytics-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.analytics-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.analytics-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.analytics-item span:first-child {
  width: 90px;
  flex-shrink: 0;
}

.analytics-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  flex: 1;
}

.analytics-item span:last-child {
  width: 30px;
  text-align: right;
}

.satisfaction-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0.5rem auto;
}

.satisfaction-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 3;
}

.ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
}

.ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard-preview {
    flex-direction: column;
  }
  
  .dash-sidebar {
    width: 100%;
    padding: 0.75rem;
  }
  
  .dash-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
  }
  
  .dash-nav-item {
    white-space: nowrap;
  }
  
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-row {
    grid-template-columns: 1fr;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Trust Metrics */
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  text-align: center;
}

.trust-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-dark);
}

.trust-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .logos-track {
    gap: 2.5rem;
  }
  
  .logo-item {
    font-size: 1.25rem;
  }
}

