/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #020617;
  color: #f1f5f9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* === Header === */
.header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 94%;
  max-width: 1200px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  background: transparent;
  transition: all 0.5s ease;
}
.header.scrolled {
  background: rgba(2,6,23,0.85);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 36px; width: auto; }
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 40px; }
}
.nav-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: #3b82f6; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-login {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e2e8f0;
  transition: all 0.3s;
}
.btn-login:hover { color: white; background: rgba(255,255,255,0.08); }
@media (min-width: 768px) { .btn-login { display: inline-flex; } }
.btn-primary {
  display: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #3b82f6;
  color: white;
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
  transition: all 0.3s;
}
.btn-primary:hover { background: #2563eb; box-shadow: 0 4px 25px rgba(59,130,246,0.4); }
@media (min-width: 1024px) { .btn-primary { display: inline-flex; } }
.menu-toggle {
  display: flex;
  padding: 8px;
  border: none;
  background: transparent;
  color: #e2e8f0;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
}
.menu-toggle:hover { color: white; background: rgba(255,255,255,0.08); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* === Mobile Menu === */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 94%;
  max-width: 500px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-20px);
  pointer-events: none;
  transition: all 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}
.menu-close {
  padding: 8px;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
}
.menu-close:hover { background: #f1f5f9; }
.mobile-menu-links {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.2s;
}
.mobile-link:hover, .mobile-link.active { background: #eff6ff; color: #3b82f6; }
.mobile-link.active::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
}
.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}
.btn-login-mobile, .btn-primary-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-login-mobile {
  border: 1px solid #e2e8f0;
  background: white;
  color: #475569;
}
.btn-login-mobile:hover { background: #f8fafc; }
.btn-primary-mobile {
  background: #3b82f6;
  color: white;
  box-shadow: 0 4px 15px rgba(59,130,246,0.25);
}
.btn-primary-mobile:hover { background: #2563eb; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
  background: #020617;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(37,99,235,0.2);
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: rgba(99,102,241,0.15);
  border-radius: 50%;
  filter: blur(150px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) {
  .hero-content { flex-direction: row; }
}
.hero-text { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  position: relative;
}
.badge-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: 0.3;
  animation: ping 1.5s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2); opacity: 0; }
}
.hero-text h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .hero-text h1 { font-size: 36px; } }
@media (min-width: 768px) { .hero-text h1 { font-size: 42px; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 52px; } }
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 560px;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 18px; } }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.4); }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e2e8f0;
  transition: all 0.3s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: white;
}
.stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === Hero Visual Card === */
.hero-visual { flex: 1; width: 100%; max-width: 500px; }
.hero-card {
  background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(30,41,59,0.5));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-card-header h3 { font-size: 18px; font-weight: 700; color: white; }
.status-text { font-size: 11px; color: #60a5fa; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  margin-bottom: 12px;
  max-width: 80%;
}
.chat-bubble.incoming {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  border-bottom-left-radius: 4px;
}
.chat-bubble.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  max-width: 60%;
}
.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748b;
  animation: typing 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.hero-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.metric { text-align: center; }
.metric-value {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: white;
}
.metric-label {
  font-size: 9px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === How It Works === */
.how-it-works {
  padding: 80px 0;
  background: white;
}
.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 48px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.step:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.step-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step h3 { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.step p { font-size: 15px; color: #64748b; line-height: 1.6; }

/* === Features === */
.features {
  padding: 80px 0;
  background: #f8fafc;
}
.features h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  max-width: 700px;
  margin: 0 auto 16px;
}
.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.feature-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.chat-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.voice-icon { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.followup-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-card h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.feature-tag {
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.feature-card p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* === Stats Bar === */
.stats-bar {
  padding: 60px 0;
  background: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.stat-card { padding: 24px; }
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-desc { font-size: 14px; color: #64748b; font-weight: 500; }

/* === Solutions === */
.solutions {
  padding: 80px 0;
  background: #f8fafc;
}
.solutions h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  max-width: 700px;
  margin: 0 auto 16px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .solutions-grid { grid-template-columns: 1fr 1fr; } }
.solution-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.solution-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.solution-card h3 { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.solution-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 16px; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.solution-tags span {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: #eff6ff;
  color: #3b82f6;
}

/* === Industries === */
.industries {
  padding: 80px 0;
  background: white;
}
.industries h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  max-width: 700px;
  margin: 0 auto 16px;
}
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
.industry-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.industry-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.industry-card h3 { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.industry-card p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* === Rainmaker Product === */
.rainmaker-product {
  padding: 100px 0;
  background: #020617;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rainmaker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 12px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.rainmaker-logo { margin: 0 auto 24px; }
.rainmaker-desc {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.rainmaker-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
}
@media (min-width: 640px) { .rainmaker-features { grid-template-columns: 1fr 1fr; } }
.rf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 500;
}
.rf-item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(59,130,246,0.2);
  flex-shrink: 0;
  position: relative;
}
.rf-item::before {
  background: #3b82f6;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.rainmaker-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) { .rainmaker-cta { flex-direction: row; justify-content: center; } }
.btn-rainmaker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-rainmaker:hover { box-shadow: 0 0 40px rgba(37,99,235,0.4); }
.btn-rainmaker::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 1s;
}
.btn-rainmaker:hover::after { transform: translateX(100%); }
.pricing-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price { font-size: 28px; font-weight: 900; color: white; }
.price-period { font-size: 11px; color: #64748b; font-weight: 500; }
.price-start { font-size: 12px; color: #94a3b8; }
.price-cancel { font-size: 12px; color: #60a5fa; font-weight: 600; }

/* === Multi-Channel === */
.multichannel {
  padding: 60px 0;
  background: #020617;
}
.mc-card {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(30,41,59,0.5));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.mc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mc-header h3 { font-size: 18px; font-weight: 700; color: white; }
.mc-header p { font-size: 11px; color: #60a5fa; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}
.live-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
.mc-channels { display: flex; flex-direction: column; gap: 12px; }
.mc-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.3s;
}
.mc-channel:hover { background: rgba(255,255,255,0.1); }
.mc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.mc-icon.voice { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.mc-icon.sms { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.mc-icon.email { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.mc-channel h4 { font-size: 13px; font-weight: 700; color: white; }
.mc-channel p { font-size: 11px; color: #94a3b8; }
.status-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: auto;
  flex-shrink: 0;
}
.mc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mc-metric { text-align: center; }
.mc-metric span {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: white;
}
.mc-metric p {
  font-size: 9px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === FAQ === */
.faq {
  padding: 80px 0;
  background: white;
  text-align: center;
}
.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0,86,255,0.1);
  font-size: 13px;
  font-weight: 700;
  color: #0056ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.faq h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.faq-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 640px) { .faq-actions { flex-direction: row; justify-content: center; } }
.btn-faq-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  background: #0056ff;
  color: white;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,86,255,0.2);
}
.btn-faq-primary:hover { transform: scale(1.05); }
.btn-faq-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid #0056ff;
  color: #0056ff;
  transition: all 0.3s;
}
.btn-faq-secondary:hover { background: rgba(0,86,255,0.05); transform: scale(1.05); }

/* === CTA === */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: #020617;
  text-align: center;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle at 50% 100%, rgba(0,86,255,0.25), transparent 60%);
  pointer-events: none;
}
.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(59,130,246,0.1);
  font-size: 14px;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}
.cta-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: white;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .cta-section h2 { font-size: 52px; } }
@media (min-width: 1024px) { .cta-section h2 { font-size: 64px; } }
.cta-section p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  background: #3b82f6;
  color: white;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}
.btn-cta:hover { transform: scale(1.05); background: #2563eb; box-shadow: 0 0 30px rgba(37,99,235,0.4); }

/* === Footer === */
.footer {
  padding-top: 100px;
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}
.social-icon:hover { transform: scale(1.1); }
.social-icon.instagram:hover { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); border-color: transparent; box-shadow: 0 4px 20px rgba(225,48,108,0.3); }
.social-icon.facebook:hover { background: #1877F2; border-color: transparent; box-shadow: 0 4px 20px rgba(24,119,242,0.3); }
.social-icon.youtube:hover { background: #FF0000; border-color: transparent; box-shadow: 0 4px 20px rgba(255,0,0,0.3); }
.social-icon.linkedin:hover { background: #0A66C2; border-color: transparent; box-shadow: 0 4px 20px rgba(10,102,194,0.3); }
.social-icon.tiktok:hover { background: linear-gradient(135deg, #00F2EA, #FF0050); border-color: transparent; box-shadow: 0 4px 20px rgba(255,0,80,0.3); }
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .footer-links { grid-template-columns: 1fr 1fr 1fr; } }
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.footer-col a:hover { color: #3b82f6; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 14px; color: #64748b; }
.footer-bottom a { color: #64748b; font-weight: 600; transition: color 0.3s; }
.footer-bottom a:hover { color: white; }

/* === Review Avatars === */
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.review-link:hover .avatar { transform: translateY(-2px); }
.review-avatars { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #020617;
  background-size: cover;
  background-position: center;
  margin-right: -8px;
  transition: all 0.3s;
}
.review-text {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}
.stars { color: #f59e0b; letter-spacing: 2px; }

/* === Hero Tags === */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  color: #93c5fd;
}

/* === Stat Icons === */
.stat-item { position: relative; }
.stat-icon {
  display: block;
  margin: 0 auto 4px;
  color: #3b82f6;
  opacity: 0.7;
}

/* === Performance Badge === */
.performance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 12px;
  color: #94a3b8;
}
.performance-badge strong {
  color: #22c55e;
  font-size: 14px;
}

/* === Client Logos === */
.clients {
  padding: 40px 0;
  background: #0f172a;
  overflow: hidden;
}
.client-logos {
  overflow: hidden;
  position: relative;
}
.logo-track {
  display: flex;
  gap: 40px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}
.client-logo {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Feature Icons === */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Multi-Channel Icons === */
.mc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Chat Bubbles === */
.chat-bubble.outgoing {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.typing-label {
  font-size: 10px;
  color: #64748b;
  margin-left: 4px;
}

/* === Clients Heading === */
.clients-heading {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 24px;
}

/* === How It Works Details === */
.how-details {
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.how-detail-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
}
.how-detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.how-detail-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}
.how-features {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.how-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}
.how-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
}
.how-summary {
  font-style: italic;
  color: #64748b;
  border-left: 3px solid #3b82f6;
  padding-left: 16px;
}
.how-velocity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

/* === Features CTA === */
.features-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

/* === Modular Badge === */
.modular-badge {
  text-align: center;
  margin-top: 24px;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 50px;
  background: rgba(59,130,246,0.1);
  font-size: 13px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* === Solution Badge === */
.solution-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(16,185,129,0.1);
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* === Multi-Industry Badge === */
.multi-industry-badge {
  text-align: center;
  margin-top: 32px;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 50px;
  background: rgba(139,92,246,0.1);
  font-size: 13px;
  font-weight: 700;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* === Explore Link === */
.explore-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  transition: all 0.3s;
}
.explore-link:hover { color: #2563eb; gap: 8px; }

/* === Testimonials === */
.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}
.testimonials h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }
.testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}
.testimonial-author span {
  font-size: 12px;
  color: #64748b;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.hero-text { animation: fadeInUp 0.8s ease forwards; }
.hero-visual { animation: fadeInScale 0.8s ease forwards; }

/* === Responsive === */
@media (max-width: 640px) {
  .hero-text h1 { font-size: 26px; }
  .hero-card { padding: 20px; border-radius: 24px; }
  .hero-card-header h3 { font-size: 16px; }
  .cta-section h2 { font-size: 32px; }
  .how-it-works h2, .faq h2 { font-size: 28px; }
}
