:root{
  --primary-color: #4d9aff;
  --darker-background: #eeeeeeb2;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fafafa;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
}

.nav-inner {
  max-width: 1000px;
  margin: auto;
  padding: 16px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 3rem;
  height: 3rem;
}

.logo img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

.nav-links a:hover {
  opacity: 0.6;
}

#nav-button{
  height: 2rem;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  #nav-button {
    width: 100%;
  }
}


/* HERO */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: #eeeeeeb2;
  height: 30rem;
}

.hero-text{
  width: 35rem;
  text-align: left;
}

.button{
  background-color: #4d9aff;
  border: none;
  border-radius: 1.5rem;
  height: 3rem;
  color: white;
  width: 10rem;
}

.hero-content {
  padding-left: 4rem;
  padding-right: 4rem;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero-video iframe,
.hero-video video {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 16px;
  }

  .hero-content {
    flex-direction: column;
    padding: 0;
    gap: 24px;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-video video {
    height: auto;
    max-height: 300px;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }
}


/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 16px;
  }
}


h1, h2, h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

ul {
  padding-left: 20px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .features-grid {
    gap: 16px;
  }
}



/* HOW IT WORKS STEPS */
.step {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 40px 0;
}

.step img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  background: #ddd;
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .step img {
    width: 180px;
  }
}


/* SOCIAL PROOF */
.testimonial {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.quote {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.author {
  font-size: 14px;
  color: #666;
}

.author strong {
  display: block;
  color: #222;
}


/* PRICING TABLE */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.pricing-column {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  background: #fff;
}

.pricing-column h3 {
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.pricing-features li {
  margin: 12px 0;
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #222;
}

/* Highlight Pro */
.pricing-column.highlighted {
  border-color: #222;
}


/* Mobile */
@media (max-width: 600px) {
  .pricing-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-column .button {
    width: 100%;
  }
}



/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #666;
}

/* MOBILE */
@media (max-width: 600px) {
  .step {
    flex-direction: column;
    text-align: center;
  }

  .step img {
    margin: auto;
  }
}