@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --primary: #1e1b4b;
  --accent: #f78d1e;
  --pink: #ff4d7a;
  --bg: linear-gradient(180deg, #ffffff, #eef2ff);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  background: var(--bg);
  scroll-behavior: smooth;
}

/* NAVIGATION */
header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ddd;
  z-index: 100;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  height: 45px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
}
nav a:hover {
  color: var(--accent);
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
}
.hero-logo { height: 100px; }
.hero h1 {
  font-size: 2.6rem;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin: 20px 0;
}
.hero p {
  color: #444;
  font-size: 1.1rem;
}
.buttons { margin-top: 30px; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 8px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--pink));
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--primary);
}

/* SECTIONS */
section {
  padding: 80px 20px;
  text-align: center;
}
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.section-desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.card:hover { transform: translateY(-6px); }
.card img { height: 60px; }
.card h3 { margin-top: 15px; font-size: 1.2rem; }
.card p { color: #555; margin-top: 8px; font-size: 0.9rem; }

/* FEATURES */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* PRICING */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.price-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 270px;
}
.price-card.highlight {
  border: 2px solid var(--pink);
}
.price-card h3 { color: var(--accent); }
.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
}
.price-card ul {
  list-style: none;
  color: #555;
}
.price-card li { margin: 8px 0; }

/* CONTACT */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
button {
  background: linear-gradient(90deg, var(--accent), var(--pink));
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
}
footer a {
  color: var(--accent);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: white;
    padding: 10px 0;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .price-card {
    width: 100%;
  }
}


/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 20px 20px;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}
.footer-box {
  width: 280px;
}
.footer-box h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-box p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-box a {
  color: #fff;
  text-decoration: none;
}
.footer-box a:hover {
  color: var(--accent);
}
.copyright {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #ccc;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
