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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #06060f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== GLOW EFFECTS ========== */
.gradient-text {
  background: linear-gradient(135deg, #818cf8, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.logo-accent {
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(129,140,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(129,140,248,0.15), rgba(6,182,212,0.15));
  border: 1px solid rgba(129,140,248,0.25);
  color: #a5b4fc;
  width: fit-content;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  color: #fff;
  box-shadow: 0 4px 24px rgba(129,140,248,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(129,140,248,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.hero-platforms {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.platform-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.platform-icon svg {
  width: 18px;
  height: 18px;
}

/* ========== CHAT PREVIEW ========== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.chat-preview {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.chat-preview-header {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.chat-preview-dot:first-child { background: #ef4444; }
.chat-preview-dot:nth-child(2) { background: #f59e0b; }
.chat-preview-dot:nth-child(3) { background: #22c55e; }

.chat-preview-body {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.chat-messages {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  animation: msgIn 0.3s ease forwards;
  opacity: 0;
}

.chat-msg.customer {
  background: rgba(129,140,248,0.15);
  border: 1px solid rgba(129,140,248,0.2);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg.bot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 16px 20px;
  align-self: flex-start;
}

.chat-msg.typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748b;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }

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

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.floating-bubble.b1 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(129,140,248,0.15), transparent);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.floating-bubble.b2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent);
  bottom: 5%;
  left: -10%;
  animation-delay: 2s;
}

.floating-bubble.b3 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(167,139,250,0.15), transparent);
  bottom: 20%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ========== STATS ========== */
.stats {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: #64748b;
}

.stat-item p {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(129,140,248,0.12), rgba(6,182,212,0.12));
  border: 1px solid rgba(129,140,248,0.2);
  color: #a5b4fc;
  width: fit-content;
  margin: 0 auto;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 17px;
  color: #94a3b8;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 32px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(129,140,248,0.12), rgba(6,182,212,0.12));
  border: 1px solid rgba(129,140,248,0.15);
  color: #a5b4fc;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ========== GLASS CARD ========== */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.glass:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(129,140,248,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ========== WHY CHOOSE US ========== */
.why-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(129,140,248,0.05) 0%, transparent 60%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 28px 24px;
  border-radius: 16px;
}

.why-icon {
  margin-bottom: 16px;
}

.why-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  background: radial-gradient(ellipse at 50% 100%, rgba(6,182,212,0.04) 0%, transparent 60%);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(129,140,248,0.3);
  position: relative;
  z-index: 2;
}

.step-content {
  padding: 24px;
  border-radius: 16px;
  flex: 1;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.step-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(129,140,248,0.4), rgba(6,182,212,0.2));
  margin: 0 0 0 25px;
}

/* ========== PRICING ========== */
.pricing-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(167,139,250,0.05) 0%, transparent 60%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(129,140,248,0.3);
  box-shadow: 0 0 40px rgba(129,140,248,0.08);
  transform: scale(1.05);
}

.pricing-badge {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
}

.pricing-badge.popular {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(129,140,248,0.15), rgba(6,182,212,0.15));
  border: 1px solid rgba(129,140,248,0.2);
  color: #a5b4fc;
  font-size: 11px;
  width: fit-content;
}

.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.pricing-card .btn {
  margin-top: auto;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(129,140,248,0.2), rgba(6,182,212,0.2));
  color: #a5b4fc;
}

.testimonial-author div strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.testimonial-author div span {
  font-size: 12px;
  color: #64748b;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-section {
  background: radial-gradient(ellipse at 50% 100%, rgba(129,140,248,0.05) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.contact-form {
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(129,140,248,0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.contact-channel:hover {
  border-color: rgba(129,140,248,0.3);
  transform: translateX(4px);
}

.contact-channel svg {
  color: #818cf8;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  font-size: 14px;
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

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

/* ========== CHATBOT WIDGET ========== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  color: #fff;
  box-shadow: 0 4px 24px rgba(129,140,248,0.4);
  transition: all 0.3s ease;
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(129,140,248,0.5);
}

.chatbot-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 360px;
  max-height: 520px;
  background: rgba(10,10,26,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

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

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(129,140,248,0.1), rgba(6,182,212,0.05));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

.chatbot-header button:hover {
  color: #fff;
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 320px;
}

.chatbot-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  animation: msgSlide 0.3s ease forwards;
}

.chatbot-msg.bot-msg {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #e2e8f0;
}

.chatbot-msg.user-msg {
  background: rgba(129,140,248,0.15);
  border: 1px solid rgba(129,140,248,0.2);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #e2e8f0;
}

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

.chatbot-actions {
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.chatbot-btn {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(129,140,248,0.2);
  background: rgba(129,140,248,0.08);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-btn:hover {
  background: rgba(129,140,248,0.15);
  border-color: rgba(129,140,248,0.35);
}

.chatbot-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Contact form select */
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form select:focus {
  border-color: rgba(129,140,248,0.4);
}

.contact-form select option {
  background: #0a0a1a;
  color: #e2e8f0;
}

.contact-form-status {
  text-align: center;
  font-size: 14px;
  padding: 8px;
  border-radius: 8px;
  display: none;
}

.contact-form-status.success {
  display: block;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
}

.contact-form-status.error {
  display: block;
  color: #ef4444;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
}

@keyframes chatTypeBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* ========== DEMO MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.open {
  display: flex;
}

.modal-panel {
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  animation: modalSlideUp 0.35s ease;
  background: rgba(10,10,26,0.96);
  border-color: rgba(255,255,255,0.08);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 14px;
  color: #94a3b8;
}

.modal-progress {
  margin-bottom: 32px;
}

.progress-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  transition: width 0.4s ease;
}

.progress-bar.fill-25::after { width: 25%; }
.progress-bar.fill-50::after { width: 50%; }
.progress-bar.fill-75::after { width: 75%; }
.progress-bar.fill-100::after { width: 100%; }

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  color: #64748b;
  border: 2px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.progress-step.active {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(129,140,248,0.3);
}

/* Modal Steps */
.modal-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.modal-step.active {
  display: block;
}

.modal-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.option-card {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
}

.option-card:hover {
  border-color: rgba(129,140,248,0.25);
  background: rgba(129,140,248,0.06);
}

.option-card input {
  display: none;
}

.option-card:has(input:checked) {
  border-color: rgba(129,140,248,0.4);
  background: rgba(129,140,248,0.1);
  color: #a5b4fc;
}

.option-card input:checked + span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  vertical-align: middle;
  flex-shrink: 0;
}

.option-card span {
  display: flex;
  align-items: center;
}

.option-card span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  vertical-align: middle;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.option-card:has(input[type="checkbox"]) span::before {
  border-radius: 4px;
}

.modal-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-fields input,
.modal-fields textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
}

.modal-fields input:focus,
.modal-fields textarea:focus {
  border-color: rgba(129,140,248,0.4);
}

.modal-fields input::placeholder,
.modal-fields textarea::placeholder {
  color: #64748b;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

.btn-back {
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: rgba(255,255,255,0.1);
  color: #e2e8f0;
}

#modalNext,
#modalSubmit {
  margin-left: auto;
}

#modalSubmit {
  display: none;
}

.modal-success {
  text-align: center;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.modal-success svg {
  margin-bottom: 8px;
}

.modal-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: #22c55e;
}

.modal-success p {
  font-size: 15px;
  color: #94a3b8;
  max-width: 380px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ========== DEMO PAGE ========== */
.demo-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.demo-hero .hero-badge {
  margin: 0 auto 20px;
}

.demo-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.demo-hero p {
  font-size: 17px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto;
}

.platform-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 60px;
  flex-wrap: wrap;
}

.platform-card {
  width: 200px;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.platform-card:hover {
  border-color: rgba(129,140,248,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.platform-card.selected {
  border-color: rgba(129,140,248,0.4);
  background: rgba(129,140,248,0.08);
  box-shadow: 0 0 30px rgba(129,140,248,0.08);
}

.platform-card svg {
  width: 48px;
  height: 48px;
  color: #818cf8;
  margin-bottom: 16px;
}

.platform-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.platform-card p {
  font-size: 13px;
  color: #64748b;
}

.demo-interface {
  display: none;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.demo-interface.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.demo-chat {
  border-radius: 0;
  overflow: visible;
  border: none;
  background: none;
}

.demo-chat-btn {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(129,140,248,0.2);
  background: rgba(129,140,248,0.08);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-chat-btn:hover {
  background: rgba(129,140,248,0.15);
  border-color: rgba(129,140,248,0.35);
}

.demo-chat-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Behind-the-scenes panel */
.demo-sidebar {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.demo-sidebar-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(129,140,248,0.05));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-sidebar-header svg {
  color: #06b6d4;
}

.demo-sidebar-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-event {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: #94a3b8;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.sidebar-event.show {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-event .event-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}

.sidebar-event .event-icon.success {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.sidebar-event .event-icon.info {
  background: rgba(6,182,212,0.15);
  color: #06b6d4;
}

.sidebar-event .event-icon.warn {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
}

/* ========== SCROLL 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) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-platforms {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 0;
    background: rgba(6,6,15,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.05);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .chatbot-panel {
    width: 320px;
    right: -16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 48px);
    right: -8px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .modal-panel {
    padding: 28px 20px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .demo-interface.active {
    grid-template-columns: 1fr;
  }

  .platform-selector {
    gap: 12px;
  }

  .platform-card {
    width: 160px;
    padding: 24px 16px;
  }
}

/* ========== INDUSTRIES ========== */
.industries-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.04) 0%, transparent 60%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  padding: 28px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(129,140,248,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.industry-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(129,140,248,0.12), rgba(6,182,212,0.12));
  border: 1px solid rgba(129,140,248,0.15);
  color: #a5b4fc;
}

.industry-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.industry-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.industry-chat {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 12px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.industry-chat-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  animation: msgSlide 0.3s ease forwards;
}

.industry-chat-msg.bot {
  background: rgba(129,140,248,0.12);
  border: 1px solid rgba(129,140,248,0.15);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  color: #cbd5e1;
}

.industry-chat-msg.user {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  color: #e2e8f0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
  background: rgba(129,140,248,0.1);
  border: 1px solid rgba(129,140,248,0.2);
  color: #a5b4fc;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  width: fit-content;
}

.btn-sm:hover {
  background: rgba(129,140,248,0.2);
  border-color: rgba(129,140,248,0.4);
}

/* ========== COMPARISON SLIDER ========== */
.comparison-section {
  background: radial-gradient(ellipse at 50% 100%, rgba(129,140,248,0.04) 0%, transparent 60%);
}

.comparison-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.comparison-container {
  position: relative;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.comparison-before,
.comparison-after {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: flex 0.1s ease;
}

.comparison-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

.label-before {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.2);
  color: #ef4444;
}

.label-after {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  color: #22c55e;
}

.comparison-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.comp-negative {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.08);
  color: #fca5a5;
}

.comp-positive {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.08);
  color: #86efac;
}

.comp-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.comparison-divider-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(129,140,248,0.6), rgba(6,182,212,0.6));
  box-shadow: 0 0 12px rgba(129,140,248,0.3), 0 0 24px rgba(6,182,212,0.15);
  animation: dividerPulse 3s ease-in-out infinite;
}

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

/* ========== ROI CALCULATOR ========== */
.calculator-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(167,139,250,0.04) 0%, transparent 60%);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-control label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.calc-control label span {
  color: #a5b4fc;
  font-weight: 700;
  font-size: 16px;
  min-width: 40px;
  text-align: right;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  outline: none;
  transition: all 0.3s ease;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(129,140,248,0.3);
  transition: all 0.3s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.15);
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-result-card {
  padding: 24px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.calc-result-icon {
  font-size: 28px;
}

.calc-result-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.calc-result-number.suffix-hrs::after {
  content: ' hrs';
  font-size: 16px;
  color: #64748b;
  -webkit-text-fill-color: #64748b;
}

.calc-result-number.suffix-x::after {
  content: 'x';
  font-size: 16px;
  color: #64748b;
  -webkit-text-fill-color: #64748b;
}

.calc-result-number.suffix-pct::after {
  content: '%';
  font-size: 16px;
  color: #64748b;
  -webkit-text-fill-color: #64748b;
}

.calc-result-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-disclaimer {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.5;
}

/* ========== INTEGRATIONS ========== */
.integrations-section {
  background: radial-gradient(ellipse at 50% 100%, rgba(6,182,212,0.03) 0%, transparent 60%);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.integration-card {
  padding: 28px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129,140,248,0.3);
  box-shadow: 0 8px 32px rgba(129,140,248,0.08);
}

.integration-card::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(10,10,26,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  max-width: 260px;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  text-align: center;
}

.integration-card:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.integration-icon {
  font-size: 32px;
  line-height: 1;
}

.integration-name {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

/* ========== ACTIVITY NOTIFICATIONS ========== */
.activity-notification {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(10,10,26,0.92);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.activity-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(129,140,248,0.1);
  border: 1px solid rgba(129,140,248,0.15);
  flex-shrink: 0;
}

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

.activity-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.activity-text span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
}

/* ========== FOUNDER ========== */
.founder-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(167,139,250,0.04) 0%, transparent 60%);
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  max-width: 750px;
  margin: 0 auto;
}

.founder-avatar {
  flex-shrink: 0;
}

.founder-avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(129,140,248,0.15), rgba(6,182,212,0.15));
  border: 2px solid rgba(129,140,248,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
}

.founder-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: #a5b4fc;
  font-weight: 500;
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-stats {
  display: flex;
  gap: 32px;
}

.founder-stat {
  text-align: center;
}

.founder-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.founder-stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* ========== CALENDLY ========== */
.calendly-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(129,140,248,0.05) 0%, transparent 60%);
}

.calendly-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.calendly-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calendly-content .section-badge {
  margin: 0;
}

.calendly-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.calendly-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

.calendly-preview {
  display: flex;
  justify-content: center;
}

.calendly-embed-placeholder {
  width: 100%;
  max-width: 340px;
  padding: 48px 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.calendly-embed-placeholder p {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 600;
}

.calendly-note {
  font-size: 12px;
  color: #64748b;
}

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

  .calculator-wrapper {
    grid-template-columns: 1fr;
  }

  .calendly-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .calendly-content .section-badge {
    margin: 0 auto;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .founder-stats {
    justify-content: center;
  }

  .integration-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .integration-card {
    padding: 20px 12px;
  }

  .integration-icon {
    font-size: 24px;
  }

  .integration-name {
    font-size: 12px;
  }

  .calculator-results {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-container {
    flex-direction: column;
    min-height: auto;
  }

  .comparison-divider {
    display: none;
  }

  .founder-stats {
    gap: 20px;
  }

  .founder-stat-number {
    font-size: 24px;
  }

  .activity-notification {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .integration-card {
    padding: 16px 8px;
  }

  .integration-icon {
    font-size: 20px;
  }

  .integration-name {
    font-size: 11px;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }
}

/* ========== WHATSAPP DEMO ========== */
.wa-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b141a;
}

.wa-header {
  background: #075e54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}

.wa-back {
  cursor: pointer;
  opacity: 0.8;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.wa-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wa-name {
  font-size: 14px;
  font-weight: 600;
}

.wa-status {
  font-size: 11px;
  opacity: 0.8;
}

.wa-header-icons {
  display: flex;
  gap: 16px;
  opacity: 0.7;
}

.wa-chat {
  flex: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  overflow-y: auto;
  padding: 16px;
  position: relative;
}

.wa-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}

.wa-msg {
  max-width: 75%;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: msgSlide 0.3s ease forwards;
}

.wa-bot-msg {
  background: #1f2c33;
  color: #e9edef;
  align-self: flex-start;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.wa-user-msg {
  background: #005c4b;
  color: #e9edef;
  align-self: flex-end;
  border-radius: 8px 8px 2px 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.wa-actions {
  background: #0b141a;
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.wa-actions .demo-chat-btn {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e9edef;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wa-actions .demo-chat-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.wa-actions .demo-chat-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #075e54;
}

.wa-bar {
  background: #1f2c33;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wa-bar-icon {
  font-size: 20px;
  cursor: pointer;
  opacity: 0.6;
  color: #8696a0;
  display: flex;
  align-items: center;
}

.wa-bar-input {
  flex: 1;
  background: #2a3942;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: #8696a0;
  cursor: text;
}

/* ========== TELEGRAM DEMO ========== */
.tg-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0f0f1a;
}

.tg-header {
  background: #17212b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tg-back {
  cursor: pointer;
  opacity: 0.7;
}

.tg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2b5278;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.tg-avatar svg {
  width: 18px;
  height: 18px;
}

.tg-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tg-name {
  font-size: 14px;
  font-weight: 600;
}

.tg-status {
  font-size: 11px;
  color: #6ab5f7;
}

.tg-search {
  opacity: 0.5;
  cursor: pointer;
}

.tg-chat {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 8px;
  position: relative;
}

.tg-date {
  text-align: center;
  font-size: 11px;
  color: #708499;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tg-messages {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tg-msg {
  max-width: 75%;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: msgSlide 0.3s ease forwards;
}

.tg-bot-msg {
  background: #182533;
  color: #e8e8e8;
  align-self: flex-start;
  border-radius: 12px 12px 12px 4px;
}

.tg-user-msg {
  background: #2b5278;
  color: #fff;
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
}

.tg-actions {
  background: #0f0f1a;
  padding: 6px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.tg-actions .demo-chat-btn {
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid rgba(107,181,247,0.2);
  background: rgba(107,181,247,0.08);
  color: #6ab5f7;
  font-size: 12px;
  font-weight: 500;
  font-family: monospace;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-actions .demo-chat-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.tg-actions .demo-chat-btn:hover {
  background: rgba(107,181,247,0.15);
  border-color: rgba(107,181,247,0.4);
}

.tg-bar {
  background: #17212b;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tg-bar-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  color: #708499;
  cursor: text;
}

.tg-bar-send {
  color: #6ab5f7;
  cursor: pointer;
  flex-shrink: 0;
}

/* ========== WEBSITE CHAT DEMO ========== */
.wc-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
}

.wc-browser {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wc-browser-bar {
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}

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

.wc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.wc-dot:first-child { background: #ef4444; }
.wc-dot:nth-child(2) { background: #f59e0b; }
.wc-dot:nth-child(3) { background: #22c55e; }

.wc-browser-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wc-browser-menu {
  display: flex;
  gap: 3px;
}

.wc-browser-menu span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.wc-page {
  flex: 1;
  position: relative;
  background: rgba(255,255,255,0.01);
  display: flex;
  flex-direction: column;
}

.wc-page-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-page-greeting {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.wc-page-line {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  width: 80%;
}

.wc-page-line.wc-short {
  width: 50%;
}

/* Floating widget */
.wc-widget {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10,10,26,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.wc-widget-header {
  background: linear-gradient(135deg, rgba(129,140,248,0.1), rgba(6,182,212,0.05));
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.wc-widget-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.wc-widget-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wc-widget-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.wc-widget-status {
  font-size: 10px;
  color: #64748b;
}

.wc-widget-close {
  opacity: 0.3;
  cursor: pointer;
  color: #94a3b8;
}

.wc-widget-body {
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.wc-messages {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  max-height: 160px;
}

.wc-msg {
  max-width: 80%;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: msgSlide 0.3s ease forwards;
}

.wc-bot-msg {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.04);
  color: #cbd5e1;
  align-self: flex-start;
  border-radius: 12px 12px 12px 4px;
}

.wc-user-msg {
  background: rgba(129,140,248,0.15);
  border: 1px solid rgba(129,140,248,0.15);
  color: #e2e8f0;
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
}

.wc-actions {
  padding: 6px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.wc-actions .demo-chat-btn {
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(129,140,248,0.2);
  background: rgba(129,140,248,0.06);
  color: #a5b4fc;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wc-actions .demo-chat-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.wc-actions .demo-chat-btn:hover {
  background: rgba(129,140,248,0.12);
  border-color: rgba(129,140,248,0.35);
}

.wc-widget-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.wc-bar-input {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 11px;
  color: #64748b;
  cursor: text;
}

.wc-bar-send {
  color: #818cf8;
  cursor: pointer;
  flex-shrink: 0;
}

/* ========== DEMO RESPONSIVE ========== */
@media (max-width: 1024px) {
  .wc-widget {
    width: 240px;
  }

  .wc-widget-body {
    min-height: 150px;
  }

  .wc-messages {
    max-height: 130px;
  }
}

@media (max-width: 768px) {
  .wa-container,
  .tg-container,
  .wc-container {
    min-height: 440px;
  }

  .wa-msg,
  .tg-msg {
    max-width: 85%;
    font-size: 12px;
    padding: 7px 12px;
  }

  .wa-name,
  .tg-name {
    font-size: 13px;
  }

  .wa-bar-input,
  .tg-bar-input {
    font-size: 12px;
  }

  .wc-widget {
    width: 220px;
    bottom: 12px;
    right: 12px;
  }

  .wc-widget-body {
    min-height: 130px;
  }

  .wc-messages {
    max-height: 110px;
    padding: 8px;
  }

  .wc-msg {
    font-size: 11px;
    padding: 6px 10px;
  }

  .wc-page-content {
    padding: 16px 14px;
  }

  .wc-page-greeting {
    font-size: 14px;
  }

  .wc-page-line {
    height: 8px;
  }
}

@media (max-width: 480px) {
  .wa-container,
  .tg-container,
  .wc-container {
    min-height: 380px;
  }

  .wc-widget {
    width: 200px;
    bottom: 10px;
    right: 10px;
  }

  .wc-messages {
    max-height: 100px;
  }

  .wc-widget-body {
    min-height: 120px;
  }

  .wc-widget-header {
    padding: 8px 10px;
  }

  .wc-widget-name {
    font-size: 11px;
  }
}

/* ========== REVIEW SECTION ========== */
.review-section {
  background: radial-gradient(ellipse at 50% 100%, rgba(6,182,212,0.03) 0%, transparent 60%);
  padding-bottom: 60px;
}

.review-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 20px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 8px;
}

.review-star {
  font-size: 36px;
  color: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  line-height: 1;
}

.review-star:hover,
.review-star.active {
  color: #f59e0b;
  text-shadow: 0 0 12px rgba(245,158,11,0.3);
}

.review-star:hover ~ .review-star {
  color: rgba(255,255,255,0.08);
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: rgba(129,140,248,0.4);
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #64748b;
}

.review-form .btn {
  align-self: flex-start;
}

.review-form-status {
  text-align: center;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  display: none;
}

.review-form-status.success {
  display: block;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
}

.review-form-status.error {
  display: block;
  color: #ef4444;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
}

@media (max-width: 480px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px 20px;
  }

  .review-star {
    font-size: 30px;
  }
}
