@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --primary: #1b4bff;
  --primary-dark: #0f2e9e;
  --secondary: #0b1220;
  --accent: #ffc107;
  --gradient: linear-gradient(135deg, #1b4bff 0%, #0f2e9e 100%);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #e5e7eb;
  line-height: 1.7;
  background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
}

.section-padding {
  padding: 5rem 0;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(17, 24, 39, 0.92);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #e5e7eb;
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

/* Hero */
.hero-hero {
  position: relative;
  min-height: 90vh;
  background: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
}

.hero-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 46, 158, 0.85));
}

.hero-hero .container {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-card .badge {
  border-radius: 50px;
}

.stat .h2 {
  font-family: var(--font-heading);
}

/* Partners */
.logo-tile {
  padding: 1.25rem;
  border-radius: 12px;
  background: #111827;
  border: 1px solid #1f2937;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #e5e7eb;
}

/* Features */
.feature-card {
  background: #0f172a;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #e5e7eb;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 75, 255, 0.12);
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Steps */
.step-card {
  background: #0f172a;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  height: 100%;
  color: #e5e7eb;
}

.step-number {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.4rem;
}

.feature-banner {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 18px;
  padding: 2rem;
}

/* Pricing */
.price-card {
  background: #0f172a;
  border-radius: 16px;
  border: 1px solid #1f2937;
  padding: 1.5rem;
  position: relative;
  color: #e5e7eb;
}

.price-card.highlight {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(27, 75, 255, 0.15);
}

.price-header h5 {
  margin-bottom: 0.25rem;
}

.price-value {
  margin: 1rem 0;
}

/* Use cases */
.usecase-card {
  position: relative;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.usecase-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Testimonials */
.testimonial-card {
  background: #0f172a;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  color: #e5e7eb;
}

/* CTA */
#cta {
  position: relative;
  background: var(--gradient);
}

#cta .card {
  border-radius: 16px;
}

/* Footer */
footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--accent) !important;
}

/* Buttons */
.btn {
  border-radius: 10px;
  font-weight: 700;
}

.btn-warning {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-warning:hover {
  background: #e0a800;
  border-color: #d39e00;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Utility */
.text-muted {
  color: #cbd5e1 !important;
}

.badge {
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-hero {
    min-height: 70vh;
  }
}
