/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #8b5cf6;
  --secondary-dark: #7c3aed;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #1e293b;
  --dark-light: #334155;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 25px !important;
  border-radius: 25px !important;
  font-size: 0.95rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: var(--white);
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 10px;
  opacity: 0.95;
  font-weight: 600;
}

.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat p {
  opacity: 0.9;
}

/* Dashboard Preview */
.dashboard-preview {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.preview-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.preview-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.preview-card {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
}

.preview-card h4 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.preview-card h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.preview-card .success {
  color: var(--success);
  font-weight: 600;
}

.preview-card .warning {
  color: var(--warning);
  font-weight: 600;
}

.preview-card .insight {
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px;
  background: var(--light);
  border-radius: 15px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.step p {
  color: var(--text-light);
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
}

.price span {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  color: var(--text);
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-light);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-features {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact {
  margin-bottom: 25px;
}

.footer-contact li {
  margin-bottom: 15px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--primary);
}

.contact-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

.footer-address {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.footer-address strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--white);
}

.footer-address p {
  opacity: 0.8;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive Design */

/* Trust Section */
.trust-section {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.trust-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  font-size: 2rem;
}

.trust-badge p {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: var(--light);
  overflow: hidden;
}

.partners-slider {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 220px;
}

.partner-box {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid var(--border);
  height: 100%;
}

.partner-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.partner-box h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.partner-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Technology Stack Section */
.tech-stack {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.tech-stack .section-header h2,
.tech-stack .section-header p {
  color: var(--white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 50px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.tech-card:last-child {
  border-right: none;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  z-index: 10;
  border-color: var(--primary);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.tech-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.tech-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.tech-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Live Stats Section */
.live-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.live-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.live-stats .section-header {
  position: relative;
  z-index: 1;
}

.live-stats .section-header h2,
.live-stats .section-header p {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.2;
}

.stat-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.95;
  color: var(--white);
}

.stat-trend {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Security Section */
.security-section {
  padding: 100px 0;
  background: var(--light);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.security-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid var(--border);
  text-align: center;
}

.security-card:hover {
  transform: translateY(-8px);
  border-color: var(--success);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.security-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.security-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.security-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Comparison Section */
.comparison-section {
  padding: 100px 0;
  background: var(--white);
}

.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table th.highlight {
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.comparison-table td.highlight {
  background: rgba(99, 102, 241, 0.05);
  font-weight: 600;
  color: var(--primary);
}

.comparison-table tbody tr:hover {
  background: var(--light);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link::after {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* Additional Responsive Styles for Premium Sections */
@media (max-width: 768px) {
  .trust-badges {
    gap: 20px;
  }

  .tech-cta {
    flex-direction: column;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    width: 180px;
  }

  .partner-box {
    padding: 30px 15px;
  }

  .partner-box h3 {
    font-size: 1.2rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Business Model Section */
.business-model {
  padding: 100px 0;
  background: var(--white);
}

.model-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.flow-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
}

.flow-step h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: center;
}

.flow-step .hindi {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.flow-step ul {
  list-style: none;
  padding: 0;
}

.flow-step ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-left: 25px;
}

.flow-step ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.flow-arrow {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

.revenue-model {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 50px;
  border-radius: 20px;
  color: var(--white);
  margin-top: 60px;
}

.revenue-model h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.revenue-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.revenue-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.revenue-card p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.revenue-example {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

/* Problem Solution Section */
.problem-solution {
  padding: 100px 0;
  background: var(--light);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.ps-card {
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ps-card.problem {
  background: #fee;
  border: 3px solid #fcc;
}

.ps-card.solution {
  background: #efe;
  border: 3px solid #cfc;
}

.ps-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 20px;
}

.ps-card h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  color: var(--dark);
}

.ps-card ul {
  list-style: none;
  padding: 0;
}

.ps-card ul li {
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.ps-arrow {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
}

.ps-arrow span {
  display: block;
  background: var(--primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.5rem;
}

/* Value Proposition Section */
.value-prop {
  padding: 100px 0;
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.value-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  margin-top: 20px;
}

.value-card .hindi {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 600;
  font-style: italic;
}

.value-card p {
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .model-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-arrow {
    transform: rotate(90deg);
  }

  .revenue-model {
    padding: 30px 20px;
  }

  .revenue-model h3 {
    font-size: 1.5rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}

/* PREMIUM ENHANCEMENTS */

/* Glassmorphism Effects */
.hero-badge,
.stat-card,
.revenue-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Premium Shadows */
.partner-box:hover,
.value-card:hover,
.security-card:hover {
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

/* Smooth Transitions */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Gradients */
.business-model {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.problem-solution {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Animated Underlines for Links */
.nav-link {
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

/* Premium Card Hover Effects */
.flow-step,
.value-card,
.security-card,
.partner-box {
  position: relative;
  overflow: hidden;
}

.flow-step::before,
.value-card::before,
.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s;
}

.flow-step:hover::before,
.value-card:hover::before,
.security-card:hover::before {
  left: 100%;
}

/* Premium Typography */
.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.dashboard-preview {
  animation: float 6s ease-in-out infinite;
}

/* Pulse Animation for Stats */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.stat-icon {
  animation: pulse 2s ease-in-out infinite;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Premium Button Effects */
.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

/* Premium Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.partner-box,
.value-card,
.security-card {
  background-size: 200% 100%;
}

/* Premium Focus States */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Premium Table Styling */
.comparison-table table {
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table tbody tr {
  transition: all 0.3s;
}

.comparison-table tbody tr:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Premium Revenue Cards */
.revenue-card {
  position: relative;
  overflow: hidden;
}

.revenue-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.revenue-card:hover::after {
  opacity: 1;
}

/* Premium Mobile Optimizations */
@media (max-width: 768px) {
  .section-header h2::after {
    width: 40px;
    height: 3px;
  }
  
  .dashboard-preview {
    animation: none;
  }
}

/* WORLD-CLASS PREMIUM DESIGN - ZIGZAG LAYOUT */

/* Hero Floating Elements */
.hero-float-1, .hero-float-2, .hero-float-3 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  z-index: 0;
}

.hero-float-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.hero-float-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-float-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 30%;
  animation: float 7s ease-in-out infinite 2s;
}

/* Trust Section Overlap */
.trust-overlap {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding: 0 0 60px 0;
}

.trust-card {
  background: var(--white);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

/* Section Labels */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Zigzag Model Steps */
.model-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.model-step-right {
  /* Content left, visual right */
}

.model-step-left {
  /* Visual left, content right */
}

.model-step-left .step-visual {
  order: 1;
}

.model-step-left .step-content {
  order: 2;
}

.step-number-large {
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.2;
  position: absolute;
  top: -40px;
  left: 0;
}

.step-content {
  position: relative;
  padding: 40px;
  background: var(--light);
  border-radius: 30px;
  border: 2px solid var(--border);
  transition: all 0.4s;
}

.step-content:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.step-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  margin-top: 40px;
}

.step-content .hindi {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 600;
  font-style: italic;
}

.step-list {
  list-style: none;
  padding: 0;
}

.step-list li {
  padding: 12px 0;
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.step-list li:last-child {
  border-bottom: none;
}

.step-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 60px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.visual-icon {
  font-size: 8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.visual-card p {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Revenue Showcase - Premium Design */
.revenue-showcase {
  margin-top: 120px;
  padding: 80px 60px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.revenue-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.revenue-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.revenue-header h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.revenue-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}

.revenue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.revenue-card-premium {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  position: relative;
}

.revenue-card-premium:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
}

.revenue-card-premium.featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: scale(1.08);
}

.revenue-card-premium.featured:hover {
  transform: translateY(-15px) scale(1.13);
}

.revenue-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.revenue-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.revenue-card-premium h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.revenue-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.revenue-card-premium p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.revenue-card-premium .revenue-example {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive for Zigzag Layout */
@media (max-width: 1024px) {
  .model-step {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .model-step-left .step-visual,
  .model-step-left .step-content {
    order: initial;
  }

  .step-number-large {
    font-size: 4rem;
    top: -20px;
  }

  .revenue-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .revenue-card-premium.featured {
    transform: scale(1);
  }

  .hero-float-1, .hero-float-2, .hero-float-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .trust-overlap {
    margin-top: -40px;
  }

  .trust-card {
    padding: 30px 20px;
  }

  .step-content {
    padding: 30px 20px;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }

  .visual-card {
    padding: 60px 40px;
  }

  .visual-icon {
    font-size: 5rem;
  }

  .revenue-showcase {
    padding: 50px 30px;
  }

  .revenue-amount {
    font-size: 2rem;
  }
}
