
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: url('assets/bg-pitchest.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #222;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  padding: 0 1rem;
  background: linear-gradient(to right, #6a1b9a, #8e24aa);
  backdrop-filter: blur(8px);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 28px;
  padding: 0;
  transform: translateY(2.5px);
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  padding-left: 0;
  margin-top: 1rem;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #e0bbff;
  text-decoration: underline;
  transform: scale(1.05);
}

/* LANGUAGE SWITCHER */
.lang-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#langSwitcher {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: white;
  background-color: transparent;
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
}

#langSwitcher {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: white;
  background-color: transparent;
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
}

#langSwitcher option {
  color: black;
  background-color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

#langSwitcher:focus {
  outline: none;
  background-color: #6a1b9a;
  color: white;
}

/* .lang-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-arrow {
  color: white;
  font-size: 0.8rem;
  margin-left: -0.5rem;
  pointer-events: none;
  z-index: 1;
} */

 /* GENERAL */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: transparent;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.cta {
  background: #7e57c2;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;

}

.cta:hover {
  background: #9575cd;
  color: white;
  cursor: pointer;
}

.purpose {
  text-align: center;
  padding: 2rem 2rem;
  background: transparent;
  color: white;
  text-shadow: 0 1px 3px rgba(95, 92, 92, 0.4);
}

.purpose h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #66248f;
  text-shadow: 0 1px 1px #5e5068;
}

.purpose p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  padding: 0rem 5rem;
  line-height: 1.6;
}

.button {
  display: inline-block;
  background: #7e57c2;
  color: white;
  padding: 0.75rem 1.8rem;
  margin-top: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.button:hover {
  background: #9575cd;
}

.text-secondary {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.checklist li::before {
  content: "✔";
  color: #90ee90;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

section {
  background: transparent;
  color: white;
  border-radius: 16px;
  padding-top: 0.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;

  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

section ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

section li {
  margin-bottom: 0.5rem;
  list-style: none;
}

section li::before {
  content: "• ";
  color: #e0bbff;
  font-weight: bold;
}

section p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

section:last-of-type {
  margin-bottom: 4rem;
}

.steps, .plans {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.plan {
  background: linear-gradient(to right, #6a1b9a, #8e24aa);
  padding: 1rem;
  border-radius: 16px;
  flex: 1 1;
  min-width: 250px;
  max-width: 250px;
  text-align: center;
}

.step {
  background: linear-gradient(to right, #6a1b9a, #8e24aa);
  padding: 1rem;
  border-radius: 16px;
  flex: 1 1;
  min-width: 250px;
  max-width: 250px;
  text-align: center;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.10rem;
  font-weight: 500;
}

/* PLANS */
#plan_founder_price_month {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

#plan_founder_price_quarter {
  font-size: 0.95rem;
  font-style: italic;
  color: #ddd;
  margin-top: 0;
  margin-bottom: 0.8rem;
}
.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plans h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.0rem;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
  letter-spacing: 1.5px;
  /* text-transform: uppercase; */
}

.plan a.button {
  margin-top: 1rem; /* auto */
  margin-bottom: 1rem;
  align-self: center;
}

/* FOOTER */
footer {
  background: #000;
  color: white;
  font-size: 0.9rem;
  padding: 1rem 0;
  width: 100%;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.brand-name {
  color: white;
  font-weight: 600;
  font-size: 19px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.8px;
}

footer {
  margin-top: 0 !important;
}

/* EARLY */
  .early-benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .early-benefits-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    color: #f0f0f0;
    font-size: 1rem;
  }

  .early-benefits-list li::before {
    content: "✔";
    color: #6a1b9a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
  }

/* FAQS */
  #faq {
    counter-reset: faq-counter;
  }

  .faq-item {
    margin-bottom: 0.2rem;
    cursor: pointer;
  }

  .faq-question {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    counter-increment: faq-counter;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    position: relative;
    line-height: 1.4;
  }

  .faq-question::before {
    content: counter(faq-counter) ".";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
  }

  .faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.7rem;
    margin: 0;
    padding-top: 0;
    max-height: 0;
  }

  .faq-item.active .faq-answer {
    padding-top: 0.3rem;
  }

  .faq-question::after {
    content: "▸";
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
    top: 0.1rem;
  }
  .faq-item.active .faq-question::after {
    transform: rotate(90deg);
  }


@media (max-width: 480px) {
 .logo {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    height: 36px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    width: max-content;
  }

  .lang-login {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    flex-direction: row;
    gap: 0.5rem;
  }

  .cta {
    padding: 0.4rem 1rem;
  }

  .nav-links a {
    padding: 0.2rem 0.6rem;
  }


  #langSwitcher {
    width: 100%;
    max-width: 140px;
    text-align: center;
    align-self: center;
  }

  .hero {
    margin-top: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
  }

  .purpose {
    margin-top: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  .purpose p {
    padding: 0rem 0.5rem;
  }
  .section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .steps, .plans {
    flex-direction: column;
    align-items: center;
  }

  #how h2 {
    font-size: 1.55rem;
    text-align: center;
    /* line-height: 1.2;
    padding-left: 0rem;
    padding-right: 0rem;
    white-space: normal; */
  }

  footer {
    font-size: 0.8rem;
  }

  .faq-question::after {
    margin-right: -0.5rem;
  }
}



