@import url("reset.css");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  color: var(--color-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02", "cv01", "cv02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  background: url("../images/1. Dessert Backgound.jpg") center / cover no-repeat;
  min-height: 100vh;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: url("../images/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../images/about/background_placeholder.png") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../images/about/hero_placeholder.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../images/services/background_placeholder.png") center / cover no-repeat;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.outro_services {
  background: url("../images/services/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* ****************FOOTER**************** */

.footer {
  background: linear-gradient(to bottom, var(--color-dark), #0f172a);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.footer .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  z-index: 1;
}

.footer__logo {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.footer__logo:hover {
  transform: translateY(-2px);
}

.footer__links {
  display: flex;
  gap: 3rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer__links a:hover {
  color: white;
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer__copyright:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 1rem;
  }

  .footer__links a::after {
    display: none;
  }

  .footer__links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .footer__copyright {
    font-size: 0.9rem;
  }
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../images/contact/background_placeholder.png") center / cover no-repeat;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../images/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: #fff;
    border-bottom: 1px solid #000;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
  }

  .actions-header__button {
    padding: 0.75rem;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* Add smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Style sections */
section {
    min-height: 100vh;
    padding: 60px 20px;
}

/* Navigation styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

/* Base styles and variables */
:root {
    --color-primary: #3b82f6;
    --color-primary-dark: #2563eb;
    --color-danger: #ef4444;
    --color-danger-dark: #dc2626;
    --color-dark: #111827;
    --color-light: #f3f4f6;
    --color-gray: #6b7280;
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    --gradient-danger: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 15px rgba(59, 130, 246, 0.5);
    --shadow-danger-glow: 0 0 15px rgba(239, 68, 68, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Enhanced Navigation Styles */
.nav__container {
    position: fixed;
    top: 1rem; /* Added margin from top */
    left: 1rem;
    right: 1rem;
    background: transparent;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px; /* Increased border radius for smooth curves */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state */
.nav__container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo styling */
.nav__logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    transition: all 0.3s ease;
}

.nav__container.scrolled .nav__logo {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Menu items */
.nav__menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav__container.scrolled .nav__menu a {
    color: var(--color-dark);
}

/* Animated underline effect */
.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav__container.scrolled .nav__menu a::after {
    background: var(--gradient-primary);
}

.nav__menu a:hover {
    color: white;
}

.nav__container.scrolled .nav__menu a:hover {
    color: var(--color-primary);
}

.nav__menu a:hover::after {
    width: 100%;
}

/* Enhanced CTA button */
.nav__cta {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease !important;
}

.nav__container.scrolled .nav__cta {
    background: var(--gradient-primary) !important;
    border: none !important;
}

.nav__cta:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

.nav__container.scrolled .nav__cta:hover {
    background: var(--gradient-primary) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3) !important;
}

.nav__cta::after {
    display: none !important;
}

/* Active link indicator */
.nav__menu a.active {
    color: white;
}

.nav__container.scrolled .nav__menu a.active {
    color: var(--color-primary);
}

.nav__menu a.active::after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.nav__container.scrolled .menu-toggle span {
    background: var(--color-dark);
}

.menu-toggle span:not(:last-child) {
    margin-bottom: 6px;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav__container.scrolled .nav__menu {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu a {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav__cta {
        width: auto !important;
        margin-top: 1rem;
    }

    .nav__container {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 1rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 1.5rem;
    text-align: center;
    animation: contentFade 1s ease-out 0.5s both;
}

/* Enhanced Trust Badge */
.hero__trust-badge {
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* Enhanced Headline */
.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Enhanced Subheadline */
.hero p {
    font-size: 1.75rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced CTA Button */
.hero .button--primary {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 50px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 4px 15px rgba(59, 130, 246, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero .button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(59, 130, 246, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero__trust-badge {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
        padding: 0.5rem 1.25rem;
    }

    .hero .button--primary {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Two-column layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

/* Enhanced Why Quit Section */
.why-quit {
    background: linear-gradient(to bottom, #fff, rgba(239, 68, 68, 0.05));
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px; /* Fix gap with hero section */
}

.why-quit .container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-quit .two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start; /* Changed from center to prevent overlap */
    padding: 0;
}

.why-quit__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 600px;
    padding-top: 2rem;
}

.why-quit h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 1.5rem;
}

.why-quit h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-danger);
    border-radius: 2px;
}

.why-quit__content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--color-gray);
    background: rgba(255, 247, 237, 0.8);
    border-left: 4px solid var(--color-danger);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-sm);
}

/* Enhanced Danger List */
.danger-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.danger-list li {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: var(--transition);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    box-shadow: var(--shadow-sm);
}

.danger-list li::before {
    content: "⚠️";
    font-size: 1.5rem;
    grid-row: span 2;
    margin-top: 0.2rem;
}

.danger-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-danger);
    background: rgba(255, 255, 255, 0.95);
}

.danger-list li strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-danger-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Enhanced Image Container */
.why-quit__image {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 500px;
}

.why-quit__image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.why-quit__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-danger);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .why-quit h2 {
        font-size: 2.5rem;
    }
    
    .why-quit .two-columns {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .why-quit h2 {
        font-size: 2.25rem;
    }
    
    .why-quit__content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-quit {
        padding: 5rem 0;
    }

    .why-quit .two-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-quit h2 {
        font-size: 2rem;
        text-align: left;
        padding-bottom: 1rem;
    }

    .why-quit__content {
        order: -1;
        padding-top: 0;
    }

    .why-quit__content p {
        font-size: 1.1rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .danger-list li {
        padding: 1.25rem;
    }

    .why-quit__image {
        min-height: auto;
        margin: 0 auto;
        max-width: 90%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-quit {
        padding: 4rem 0;
    }
    
    .why-quit h2 {
        font-size: 1.75rem;
    }

    .danger-list li {
        padding: 1rem;
    }

    .danger-list li strong {
        font-size: 1.1rem;
    }
    
    .why-quit__image {
        padding: 1rem;
    }
}

/* Animations */
@keyframes heroFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes contentFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add loading animation */
.loading {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 1s forwards;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Scary Facts Section */
.scary-facts {
    background: linear-gradient(
        165deg,
        var(--color-dark) 0%,
        #1f2937 50%,
        var(--color-danger-dark) 100%
    );
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add subtle animated background pattern */
.scary-facts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 30s linear infinite;
    opacity: 0.5;
}

.scary-facts .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Section Title */
.scary-facts h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--color-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.scary-facts h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-danger);
    border-radius: 2px;
}

/* Enhanced Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

/* Enhanced Fact Cards */
.fact-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 16px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform-style: preserve-3d;
}

.fact-card:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.fact-card__image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.fact-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.fact-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fact-card:hover .fact-card__image img {
    transform: scale(1.1);
}

.fact-card__content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: var(--gradient-danger);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1rem;
}

.fact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-danger);
    border-radius: 1px;
}

.fact-card p {
    opacity: 0.9;
    line-height: 1.7;
    color: var(--color-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Enhanced Learn More Button */
.button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes backgroundMove {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .scary-facts {
        padding: 6rem 0;
    }

    .scary-facts h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .fact-card {
        min-height: 380px;
    }

    .fact-card__image {
        height: 200px;
    }

    .fact-card h3 {
        font-size: 1.5rem;
    }

    .fact-card p {
        font-size: 1rem;
    }

    .button--secondary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Enhanced About App Section */
.about-app {
    background: linear-gradient(to bottom, var(--color-light), white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.about-app::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-app__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.about-app h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-app h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-app__content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1rem;
    max-width: 90%;
}

/* Enhanced Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    font-size: 1.2rem;
    padding: 1.5rem;
    padding-left: 4rem;
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--transition);
}

.feature-list li:hover::before {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Enhanced App Image */
.about-app__image {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-app__image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        var(--shadow-lg),
        0 0 0 2px rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s ease-in-out infinite;
}

.about-app__image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        var(--shadow-lg),
        var(--shadow-glow),
        0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-app {
        padding: 4rem 0;
    }

    .about-app h2 {
        font-size: 2.25rem;
        text-align: center;
    }

    .about-app h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-app__content p {
        font-size: 1.1rem;
        text-align: center;
        max-width: 100%;
    }

    .feature-list li {
        font-size: 1.1rem;
        padding: 1.25rem;
        padding-left: 3.5rem;
    }

    .feature-list li::before {
        left: 1rem;
        width: 28px;
        height: 28px;
    }

    .about-app__image {
        margin: 1rem auto;
        max-width: 100%;
        padding: 1rem;
    }

    .about-app__image img {
        max-width: 400px;
    }
}

/* Enhanced Waitlist Section */
.waitlist {
    background: url('../images/5. reset.jpg') center/cover fixed;
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.waitlist::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}

.waitlist .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.waitlist h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.waitlist p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Form */
.waitlist-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.waitlist-form input,
.waitlist-form textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
}

.waitlist-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
    font-family: inherit;
}

.waitlist-form input:hover,
.waitlist-form textarea:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: white;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.waitlist-form .button {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.waitlist-form .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.waitlist-form .button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px rgba(59, 130, 246, 0.3),
        0 0 0 2px rgba(59, 130, 246, 0.4);
}

.waitlist-form .button:hover::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .waitlist {
        padding: 5rem 0;
    }

    .waitlist h2 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
        padding: 0 1rem;
    }

    .waitlist p {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .waitlist-form {
        margin: 0 1rem;
        padding: 2rem;
        border-radius: 20px;
    }

    .form-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .waitlist-form input,
    .waitlist-form textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    .waitlist-form .button {
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* Social Proof Styling */
.social-proof {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: softPulse 2s infinite ease-in-out;
}

.social-proof .highlight {
    font-weight: 700;
    color: white;
    position: relative;
}

.social-proof .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

@keyframes softPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Responsive adjustment for social proof */
@media (max-width: 768px) {
    .social-proof {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .social-proof {
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
        width: calc(100% - 2rem);
    }
}

/* Enhanced Logo Styling */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    transition: all 0.3s ease;
}

.nav__logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav__logo-icon.light {
    opacity: 0;
    position: absolute;
}

.nav__logo-icon.dark {
    opacity: 1;
}

/* Scrolled state logo handling */
.nav__container.scrolled .nav__logo {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav__container.scrolled .nav__logo-icon.light {
    opacity: 1;
    position: static;
}

.nav__container.scrolled .nav__logo-icon.dark {
    opacity: 0;
    position: absolute;
}

/* Base responsive container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p {
        font-size: 1rem;
    }
}

/* Navigation Responsive Styles */
@media (max-width: 768px) {
    .nav__container {
        padding: 1rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease-in-out;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__menu li {
        margin: 1.5rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav__logo span {
        font-size: 1.2rem;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero__content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero__trust-badge {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero__video {
        object-position: center;
    }
}

/* Two Columns Layout Responsive */
@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-quit__image,
    .about-app__image {
        order: -1;
    }

    .why-quit__content,
    .about-app__content {
        text-align: center;
    }
}

/* Facts Grid Responsive */
@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fact-card {
        padding: 1rem;
    }
}

/* Waitlist Form Responsive */
@media (max-width: 768px) {
    .waitlist {
        padding: 3rem 1rem;
    }

    .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group input {
        width: 100%;
    }

    .waitlist-form textarea {
        height: 100px;
    }

    .button {
        width: 100%;
        padding: 0.8rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
        text-align: center;
    }

    .footer__links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__links a {
        display: block;
    }
}

/* Loading and Progress Bar */
@media (max-width: 768px) {
    .scroll-progress {
        height: 3px;
    }
}

/* Button Responsive */
@media (max-width: 768px) {
    .button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Feature List Responsive */
@media (max-width: 768px) {
    .feature-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Danger List Responsive */
@media (max-width: 768px) {
    .danger-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .danger-list li strong {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* Social Proof Responsive */
@media (max-width: 768px) {
    .social-proof {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Additional Small Screen Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero__content {
        padding: 1.5rem 1rem;
    }

    .button {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Tablet Specific Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        width: 95%;
    }
}

/* Typography and Spacing System */
:root {
    /* Colors (keeping existing colors) */
    --color-primary: #7C3AED;
    --color-secondary: #4F46E5;
    --color-accent: #F59E0B;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-background: #FFFFFF;
    --color-background-alt: #F3F4F6;

    /* Spacing System (in rem) */
    --space-3xs: 0.25rem;  /* 4px */
    --space-2xs: 0.5rem;   /* 8px */
    --space-xs: 0.75rem;   /* 12px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */

    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
}

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

p {
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
}

/* Section Spacing */
section {
    padding: var(--space-2xl) 0;
}

.container {
    padding: 0 var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

/* Component Spacing */
.hero__content {
    padding: var(--space-3xl) 0;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
}

.hero p {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.why-quit h2, .about-app h2, .scary-facts h2 {
    margin-bottom: var(--space-xl);
}

.fact-card {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.fact-card h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--text-xl);
}

.fact-card p {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

.feature-list li {
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-xs);
}

.waitlist-form {
    gap: var(--space-md);
    padding: var(--space-xl);
}

.form-group {
    gap: var(--space-sm);
}

.waitlist-form input,
.waitlist-form textarea {
    padding: var(--space-sm);
    font-size: var(--text-base);
}

/* Button Styles */
.button {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Navigation */
.nav__menu a {
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2xs) var(--space-xs);
}

.nav__logo {
    font-size: var(--text-xl);
    font-weight: 700;
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0;
}

.footer__links a {
    font-size: var(--text-sm);
    margin: 0 var(--space-sm);
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --text-xl: 1.125rem;
    }

    section {
        padding: var(--space-xl) 0;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero__content {
        padding: var(--space-2xl) var(--space-sm);
    }

    .fact-card {
        padding: var(--space-md);
    }
}

/* Small Screen Typography */
@media (max-width: 480px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
        --text-xl: 1rem;
    }

    section {
        padding: var(--space-lg) 0;
    }

    .hero__content {
        padding: var(--space-xl) var(--space-xs);
    }
}

/* Fix Navigation Bar on Mobile */
@media (max-width: 768px) {
    .nav__container {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background: var(--color-background);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Ensure menu toggle is visible */
    .menu-toggle {
        display: block;
        z-index: 101;
    }
}

/* Fix Feature List Checkmarks */
.feature-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.2em;
    color: var(--color-primary);
    font-weight: bold;
    width: var(--space-lg);
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .feature-list li {
        padding-left: var(--space-xl);
    }
    
    .feature-list li::before {
        left: 0;
        width: var(--space-lg);
    }
}

/* Improve Feature List Checkmarks Visibility */
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.2em;
    color: white; /* Change to white for better contrast */
    background-color: var(--color-primary); /* Keep the background purple */
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fix Mobile Navigation - Create Sidebar Panel */
@media (max-width: 768px) {
    /* Container always visible */
    .nav__container {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--color-background);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Menu toggle button */
    .menu-toggle {
        display: block;
        z-index: 1001;
        cursor: pointer;
    }
    
    /* Sidebar panel styling */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    /* When menu is active */
    .nav__menu.active {
        right: 0; /* Slide in from right */
    }
    
    /* Style menu items */
    .nav__menu li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav__menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Add backdrop when menu is open */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Menu toggle button styling */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

/* Fixed Mobile Navigation with better specificity */
@media (max-width: 768px) {
    .nav__container {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: var(--color-background) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        padding: 1rem !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    /* Active state for toggle button */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Fixed sidebar panel */
    .nav__menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Start off-screen */
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: white !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 5rem 2rem 2rem !important;
        transition: right 0.3s ease !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
        overflow-y: auto !important;
    }
    
    /* When menu is active */
    .nav__menu.active {
        right: 0 !important; /* Slide in from right */
    }
}

/* Properly fix the feature list checkmarks for all screen sizes */
.feature-list li {
    position: relative;
    padding-left: 2.5rem !important; /* Fixed left padding */
    margin-bottom: 1rem !important;
    min-height: 2rem !important; /* Ensure enough height */
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.3rem; /* Adjusted top position */
    color: white;
    background-color: var(--color-primary);
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile specific adjustments for feature list */
@media (max-width: 768px) {
    .feature-list li {
        padding-left: 2.5rem !important; /* Enhanced specificity */
        line-height: 1.6 !important;
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .feature-list li::before {
        top: 0.25rem !important; /* Better alignment for mobile */
    }
}

/* Make sure JavaScript is loaded */
.js-loading::before {
    content: "JavaScript is required for this site to work properly. Please enable JavaScript.";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: red;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 9999;
}

/* Consolidated Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Container styling */
    .nav__container {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 60px !important; /* Fixed height */
        z-index: 100 !important; /* Lower than toggle but higher than content */
        background: var(--color-background) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        padding: 1rem !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Menu toggle positioned above the nav container */
    .menu-toggle {
        display: flex !important;
        position: fixed !important; 
        right: 1rem !important;
        top: 1rem !important;
        z-index: 1002 !important; /* Higher than everything */
    }
    
    /* Sidebar panel */
    .nav__menu {
        position: fixed !important;
        top: 0 !important; /* Start from the very top */
        right: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: white !important;
        display: flex !important;
        flex-direction: column !important;
        padding-top: 70px !important; /* Space for the toggle button */
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-bottom: 2rem !important;
        transition: right 0.3s ease !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
        z-index: 101 !important; /* Between toggle and container */
        overflow-y: auto !important;
    }
    
    /* Active sidebar */
    .nav__menu.active {
        right: 0 !important;
    }
    
    /* When menu is active, adjust toggle button appearance */
    .menu-toggle.active {
        position: fixed !important;
        right: 1rem !important;
    }
    
    /* Backdrop should be below the toggle but above everything else */
    .menu-backdrop {
        z-index: 99 !important;
    }
    
    /* Add body class when menu is open */
    body.menu-open {
        overflow: hidden !important; /* Prevent scrolling */
    }
    
    /* Clean menu items styling */
    .nav__menu li {
        margin: 1rem 0 !important;
        width: 100% !important;
    }
    
    .nav__menu a {
        display: block !important;
        padding: 0.75rem 0 !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
}

/* Toggle button animations */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg) !important;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg) !important;
}

/* Updated Mobile Navigation for ALL Mobile Devices */
@media screen and (max-width: 768px) {
    /* Reset any conflicting styles */
    .nav__container {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 60px !important;
        z-index: 100 !important;
        background: var(--color-background) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        padding: 1rem !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Always show menu toggle button on mobile */
    .menu-toggle {
        display: flex !important;
        position: fixed !important;
        right: 1rem !important;
        top: 1rem !important;
        z-index: 2000 !important; /* Extremely high z-index */
        background: transparent !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
    }
    
    /* Better visibility for toggle button */
    .menu-toggle span {
        display: block !important;
        height: 3px !important;
        width: 30px !important;
        margin-bottom: 5px !important;
        border-radius: 3px !important;
        background-color: var(--color-primary) !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-toggle span:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Improved mobile sidebar */
    .nav__menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100% !important;
        background-color: white !important;
        z-index: 1999 !important;
        overflow-y: auto !important;
        padding-top: 80px !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-bottom: 2rem !important;
        transition: right 0.3s ease-in-out !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Active state for sidebar */
    .nav__menu.active {
        right: 0 !important;
    }
    
    /* Menu items styling */
    .nav__menu li {
        display: block !important;
        margin: 1.5rem 0 !important;
        width: 100% !important;
        text-align: left !important;
    }
    
    .nav__menu a {
        display: block !important;
        padding: 0.75rem 0 !important;
        font-size: 1.1rem !important;
        color: var(--color-text) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Animation for hamburger to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
    
    /* Backdrop */
    .menu-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        z-index: 1998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease !important;
    }
    
    .menu-backdrop.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }
}

/* Extra small devices (phones) */
@media screen and (max-width: 480px) {
    /* Ensure menu toggle is visible and properly positioned */
    .menu-toggle {
        right: 1rem !important;
        top: 1rem !important;
        z-index: 2000 !important;
    }
    
    /* Adjust sidebar width for smaller screens */
    .nav__menu {
        width: 85% !important;
    }
}

/* Fixed Mobile Navigation - Full Height Fix */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background-color: #000000 !important;
        color: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 80px 20px 20px !important;
        transition: right 0.3s ease !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
    }
    
    .nav__menu.active {
        right: 0 !important;
    }
    
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 21px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10000 !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
    }
    
    .menu-toggle span {
        display: block !important;
        height: 3px !important;
        width: 100% !important;
        border-radius: 3px !important;
        background-color: #ffffff !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: rgba(0, 0, 0, 0.7) !important;
        z-index: 9998 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-backdrop.active {
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    
    .nav__menu li {
        margin: 10px 0 !important;
        opacity: 0 !important;
        transform: translateY(20px) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav__menu.active li {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition-delay: calc(0.1s * var(--i)) !important;
    }
    
    .nav__menu.active li:nth-child(1) { transition-delay: 0.1s !important; }
    .nav__menu.active li:nth-child(2) { transition-delay: 0.2s !important; }
    .nav__menu.active li:nth-child(3) { transition-delay: 0.3s !important; }
    .nav__menu.active li:nth-child(4) { transition-delay: 0.4s !important; }
    
    .nav__menu a {
        display: block !important;
        padding: 15px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 1.2rem !important;
        text-align: center !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        background: transparent !important;
    }
    
    .nav__menu a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        transform: translateY(-2px) !important;
    }
}