* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background-color: #fefefe;
  color: #111827;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-sub {
  text-align: center;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
}

/* 1. Ultra Dark Floating Glass Header Controls */
.floating-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
}
.header-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.75) 0%, rgba(27, 13, 58, 0.75) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.4);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(125deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo span {
  color: #60a5fa;
  background: none;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #ffffff;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #60a5fa;
  transition: width 0.2s;
}
.nav-links a:hover::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}
.btn-primary {
  background: linear-gradient(95deg, #0f2b5e, #2563eb);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 48px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(37,99,235,0.3);
}
.form-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.form-btn-wrapper .btn-primary {
  width: 80%;
}
.btn-outline {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #1e3a8a;
  padding: 10px 28px;
  border-radius: 48px;
  font-weight: 700;
  text-decoration: none;
}
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(125deg, #fafcff, #eef2ff);
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
}
.hero-badge {
  background: #dbeafe;
  color: #1e40af;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-highlight {
  color: #2563eb;
}
.hero-content p {
  font-size: 1.2rem;
  color: #2d3a4b;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-image i {
  font-size: 13rem;
  color: #2563eb;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.1));
}
.ai-hero-section {
  background: linear-gradient(135deg, #0a0f2a 0%, #0f1a3a 50%, #1a2a5e 100%);
  margin: 0;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59,130,246,0.3);
  border-bottom: 1px solid rgba(59,130,246,0.3);
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3);
}
.ai-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.ai-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.ai-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(59,130,246,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 24px;
  border-radius: 60px;
  margin-bottom: 28px;
  border: 1px solid rgba(59,130,246,0.5);
  font-weight: 600;
  color: #a5b4fc;
  letter-spacing: 1px;
}
.ai-badge i {
  font-size: 1.3rem;
  color: #60a5fa;
}
.ai-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #93c5fd 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.ai-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.ai-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.ai-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0 2rem;
}
.ai-feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 1.2rem 1.8rem;
  flex: 1 1 200px;
  text-align: center;
  border: 1px solid rgba(59,130,246,0.3);
  transition: all 0.3s;
}
.ai-feature-card:hover {
  background: rgba(59,130,246,0.15);
  transform: translateY(-5px);
  border-color: #3b82f6;
}
.ai-feature-card i {
  font-size: 2.2rem;
  color: #60a5fa;
  margin-bottom: 0.8rem;
}
.ai-feature-card h4 {
  color: white;
  font-size: 1.1rem;
}
.ai-feature-card p {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.ai-cta {
  margin-top: 2rem;
}
.btn-ai {
  background: linear-gradient(95deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 14px 36px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(59,130,246,0.4);
  border: none;
  transition: all 0.3s;
}
.btn-ai:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(139,92,246,0.5);
}
.pricing-section {
  padding: 90px 0;
  background: #ffffff;
}
.tiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}
.tier-card {
  background: #f9fafc;
  border-radius: 36px;
  padding: 2rem 1.8rem;
  flex: 1 1 280px;
  text-align: center;
  border: 1px solid #eef2ff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.tier-card:hover {
  transform: translateY(-10px);
  border-color: #bfdbfe;
}
.free-trial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.tier-icon { font-size: 3rem; color: #2563eb; margin-bottom: 1rem; }
.tier-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin: 0.5rem 0 0.25rem;
}
.tier-price span { font-size: 1rem; font-weight: 500; color: #4b5563; }
.annual-price {
  font-size: 0.95rem;
  background: #e0e7ff;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
  margin: 0.5rem 0;
  color: #1e40af;
  font-weight: 600;
}
.annual-price i {
  margin-right: 6px;
  font-size: 0.8rem;
}
.tier-name { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.business-types { background: #eef2ff; border-radius: 40px; padding: 8px 12px; display: inline-block; margin: 1rem 0; font-weight: 600; font-size: 0.85rem; color: #1e40af; }
.tier-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.tier-features li { margin-bottom: 0.6rem; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.tier-features i { color: #2563eb; width: 20px; }
.tier-card .btn-primary { margin-top: 1rem; width: 100%; justify-content: center; }

.scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  position: relative;
}
.scroll-container::-webkit-scrollbar { height: 6px; }
.scroll-container::-webkit-scrollbar-track { background: #e2e8f0; border-radius: 10px; }
.scroll-container::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 10px; }

.team-wrapper {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.5rem 0.2rem;
}
.team-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  text-align: center;
  width: 260px;
  flex-shrink: 0;
  border: 1px solid #eef2ff;
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-6px); }

/* 2. Dual Row Client Scroll System Elements */
.clients-double-scroll {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
}
.clients-double-scroll::-webkit-scrollbar { height: 6px; }
.clients-double-scroll::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.clients-double-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.clients-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.client-mini-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 310px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}
.client-mini-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
}
.client-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.client-link:hover {
  color: #2563eb;
}

.avatar-frame {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  overflow: hidden;
  border: 4px solid #2563eb;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}
.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name { font-size: 1.35rem; font-weight: 700; }
.team-role { color: #2563eb; font-weight: 600; font-size: 0.9rem; }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #f9fafc;
  border-radius: 32px;
  padding: 2rem;
  flex: 1 1 260px;
  text-align: center;
  border: 1px solid #eef2ff;
}
.service-icon { font-size: 2.8rem; color: #2563eb; margin-bottom: 1rem; }
.form-grid { display: flex; gap: 2rem; flex-wrap: wrap; }
.contact-info, .sales-info { flex: 1; background: #f0f4fe; border-radius: 36px; padding: 2rem; }
.contact-form, .sales-form, .client-form { flex: 1; background: white; border-radius: 36px; padding: 2rem; box-shadow: 0 20px 35px rgba(0,0,0,0.05); border: 1px solid #eef2ff; }
.form-group { margin-bottom: 1.2rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 18px; border-radius: 28px; border: 1.5px solid #e2edf7; font-family: inherit; }
.checkbox-group { display: flex; align-items: center; gap: 12px; margin-top: 0.5rem; }
.form-message { margin-top: 1rem; font-size: 0.9rem; text-align: center; }
.payment-section {
  background: linear-gradient(115deg, #0f172a 0%, #111827 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(59,130,246,0.4);
  border-bottom: 1px solid rgba(59,130,246,0.2);
  position: relative;
  overflow: hidden;
}
.payment-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.payment-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.payment-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.no-cash-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.no-cash {
  background: #dc2626;
  color: white;
  padding: 8px 28px;
  border-radius: 60px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(220,38,38,0.3);
}
.no-cash i { font-size: 1.3rem; }
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.payment-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 2rem;
  flex: 1 1 380px;
  border: 1px solid rgba(59,130,246,0.4);
  transition: all 0.3s;
}
.payment-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  background: rgba(59,130,246,0.1);
}
.payment-icon {
  font-size: 2.5rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}
.payment-card h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}
.payment-detail {
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-detail strong {
  color: white;
  min-width: 100px;
}
.payment-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
  border-top: 1px dashed rgba(255,255,255,0.2);
  padding-top: 1rem;
}
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.modal-content {
  background: white;
  max-width: 500px;
  padding: 2rem;
  border-radius: 32px;
  max-height: 80vh;
  overflow-y: auto;
}
.close-modal {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}
footer {
  background: #0a0c10;
  color: #9ca3af;
  padding: 2rem 0;
  text-align: center;
}
footer a {
  color: #9ca3af;
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover {
  color: #3b82f6;
}
@media (max-width: 880px) {
  .floating-header { padding: 8px 12px; }
  .header-container { border-radius: 20px; padding: 0 16px; }
  .mobile-menu-btn { display: block; }
  .nav-links { 
    display: none; 
    width: 100%; 
    flex-direction: column; 
    background: linear-gradient(135deg, rgba(8, 12, 28, 0.98) 0%, rgba(32, 14, 68, 0.98) 100%); 
    padding: 1.5rem 1rem; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    gap: 1.2rem;
  }
  .nav-links.active { display: flex; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-image i { font-size: 8rem; }
  .payment-card { flex: 1 1 100%; }
  .payment-title { font-size: 1.6rem; }
  .client-mini-card { width: 280px; }
}
section { scroll-margin-top: 105px; }
