/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fb;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.accent {
  color: #0066ff;
}

.nav-links a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0066ff;
}

.btn-primary {
  background-color: #0066ff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 1rem;
}

.btn-secondary {
  background-color: #eee;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 1rem;
}

/* =======================
   HOME PAGE HERO
   ======================= */
.home-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #ffffff, #e6f0ff);
}
.home-hero .hero-content { max-width: 50%; }
.home-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.home-hero .subtitle { font-size: 1.2rem; color: #444; margin-bottom: 2rem; }
.home-hero .hero-animation img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Trusted by */
.trusted {
  background: #f3f6fb;
  border-top: 1px solid #e7ebf0;
  border-bottom: 1px solid #e7ebf0;
  padding: 1rem 2rem;
}
.trusted-head { color: #475467; margin-bottom: .5rem; }
.trusted-logos {
  display: flex; gap: 1rem; flex-wrap: wrap; color: #111;
}
.trusted-logos span {
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 999px;
  padding: .35rem .7rem;
  box-shadow: 0 2px 8px rgba(16,24,40,.05);
}

/* Value cards */
.values { padding: 2rem 2rem; }
.value-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.value-grid article {
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(16,24,40,.06);
}
.value-grid h3 { margin-bottom: .35rem; }

/* Preview */
.preview {
  background: #0b1020;
  color: #eef2ff;
  padding: 2rem 2rem;
  text-align: center;
}
.preview h2 { margin-bottom: .5rem; }
.preview p { margin-bottom: 1rem; color: #cbd5e1; }

/* Problem / Solution */
.problem { background: #f8f9fb; padding: 2rem 2rem; }
.problem .cols {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.problem .cols > div {
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(16,24,40,.06);
}
.problem h3 { margin-bottom: .35rem; }

/* CTA bar */
.cta-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #eef4fb;
}
.cta-bar a { text-decoration: none; }

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #888;
}

/* =======================
   FEATURES PAGE HERO
   ======================= */
.features-hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #f8fbff;
}
.features-hero h1 { font-size: 2.5rem; color: #111; }
.features-hero p { font-size: 1.2rem; color: #555; margin-top: .5rem; }

/* Feature cards grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: #fff;
}
.feature-card {
  background: #f1f6fc;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #0073ff;
}
.feature-card p { color: #333; }

/* Responsive */
@media (max-width: 900px) {
  .home-hero { flex-direction: column; gap: 1.25rem; }
  .home-hero .hero-content { max-width: 100%; }
  .problem .cols { grid-template-columns: 1fr; }
}
