/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0e0f13;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: #111218;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
}

.logo span {
  color: #f6851b;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f6851b;
}

.btn-primary {
  background: #f6851b;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ff983e;
}

/* Hero */
.hero {
  padding: 4rem 0;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}

/* Features */
.features {
  background: #16171f;
  padding: 4rem 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #1e2029;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 80px;
  margin-bottom: 1rem;
}

/* Login Section */
.login {
  padding: 4rem 0;
  display: flex;
  align-items: center;
}

.login-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.login-text {
  flex: 1;
}

.login-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}

/* Security */
.security {
  background: #121318;
  padding: 4rem 0;
  text-align: center;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.security-item {
  background: #1e2029;
  border-radius: 12px;
  padding: 1.5rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: #1e2029;
  border-radius: 12px;
  padding: 1.5rem;
  color: #ccc;
}

/* Footer */
.footer {
  background: #0b0c0f;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: #f6851b;
  margin: 0 1rem;
  text-decoration: none;
}

.footer-note {
  font-size: 0.8rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content,
  .login-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}
