:root {
  --primary: #6366F1;
  --primary-light: #A5B4FC;
  --primary-lighter: #E0E7FF;
  --dark: #1f1f1f;
  --text: #4b4b4b;
  --bg: #ffffff;
}

html{
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}


/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav-logo img {
  max-height: 200px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 25px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding-top: 140px;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-btn {
  padding: 14px 32px;
  background: white;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.hero-image-wrapper {
  width: 380px;
  overflow: hidden;
}

#heroImage {
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* SECTION GENERAL */
.section {
  padding: 80px 8%;
  text-align: center;
}

.section h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--dark);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--primary-lighter);
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* HOW IT WORKS */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.step {
  max-width: 250px;
}

.step-circle {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 auto 15px auto;
}

/* PRICING SECTION */
.pricing-grid {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.pricing-card {
  background: var(--primary-lighter);
  padding: 30px;
  width: 350px;
  max-width: 350px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.pricing-card.premium h3 {
  color: var(--primary-light);

}

.pricing-card.premium {
  background: var(--primary);
  color: white;
}

.pricing-card.premium .cta-btn {
  background: white;
  color: var(--primary);
}

/* TEAM SECTION */
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.team-card {
  background: var(--primary-lighter);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid white;
}

.team-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: white;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
