:root {
  --primary: #1e1b4b;
  --accent: #4f46e5;
  --success: #059669;
  --text-main: #111827;
  --text-muted: #4b5563;
  --bg-light: #f8fafc;
  --white: var(--nav-card, #ffffff);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
}

/* Section Layout */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--nav-border);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Split Section */
.split-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.split-section:nth-child(even) {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-content h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.split-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.split-image {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* List Styling */
.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.feature-list li::before {
  content: "\f272";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Ecosystem Background */
.ecosystem-section {
  background-color: var(--bg-light);
}

/* Why Choose Us Section */
.why-choose {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.why-choose h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.why-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.why-item i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #818cf8;
}

/* Footer Promo */
.footer-promo {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: var(--white);
}

.footer-promo h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--accent);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  margin-top: 30px;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .split-section {
    flex-direction: column !important;
    gap: 30px;
  }
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0 60px;
  }
}
