/* Reset & base */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body {
  font-family: “Inter”, sans-serif;
  line-height:1.6;
  color:#333;
  background:#fff;
}
.container {
  width:90%;
  max-width:1200px;
  margin:0 auto;
  padding:60px 0;
}

/* Nav */
.navbar {
  background:#fff;
  box-shadow:0 2px 4px rgba(0,0,0,0.1);
  position:fixed;
  width:100%;
  top:0;
  z-index:100;
}
.navbar .container {
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.navbar .logo {
  font-size:1.5rem;
  font-weight:700;
  color:#222;
  text-decoration:none;
}
.nav-links {
  list-style:none;
  display:flex;
  gap:24px;
}
.nav-links a {
  text-decoration:none;
  color:#222;
  font-weight:500;
}
.btn {
  display:inline-block;
  padding:12px 24px;
  border:none;
  font-size:1rem;
  cursor:pointer;
  text-decoration:none;
}
.btn-primary {
  background:#0052cc;
  color:#fff;
  border-radius:4px;
}
.btn-primary:hover {
  background:#003e99;
}

/* Hero */
.hero {
  display:flex;
  align-items:center;
  padding-top:100px;
}
.hero-content {
  display:flex;
  flex-wrap:wrap;
  gap:40px;
}
.hero-text {
  flex:1;
  min-width:300px;
}
.hero-image {
  flex:1;
  min-width:300px;
}
.hero-image img {
  width:100%;
  height:auto;
}

/* Sections */
.section {
  padding:80px 0;
}
.section h2 {
  font-size:2.4rem;
  text-align:center;
  margin-bottom:40px;
}

/* Features grid */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
  gap:40px;
}
.feature {
  text-align:center;
}
.feature img {
  width:64px;
  height:auto;
  margin:0 auto 20px;
}
.feature h3 {
  font-size:1.2rem;
  margin:10px 0;
}
.feature p {
  color:#555;
}

/* Use-cases grid */
.use-cases-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
  gap:40px;
}
.use-case {
  background:#f9f9f9;
  padding:40px;
  border-radius:8px;
}
.use-case h3 {
  margin:0 0 10px;
}
.use-case p {
  color:#555;
}

/* CTA */
.cta {
  text-align:center;
  padding:100px 0;
  background:#0052cc;
  color:#fff;
}
.cta h2 {
  font-size:2rem;
  margin:0 0 24px;
}
.cta .btn-primary {
  background:#fff;
  color:#0052cc;
}

/* Footer */
.footer {
  background:#222;
  color:#aaa;
  padding:40px 0;
  text-align:center;
}
.footer a {
  color:#aaa;
  text-decoration:none;
}
.footer a:hover {
  color:#fff;
}
.footer-links {
  list-style:none;
  display:flex;
  gap:16px;
  justify-content:center;
  margin:20px 0 0;
}

/* Responsive */
@media (max-width:768px) {
  .hero {
    flex-direction:column;
    padding-top:140px;
  }
}
