/* [project]/app/components/Section.module.css [app-client] (css) */
.Section-module__7jGEVW__section {
  min-height: auto;
  padding: 80px 24px;
}

.Section-module__7jGEVW__container {
  max-width: 1100px;
  margin: 0 auto;
}

.Section-module__7jGEVW__dark {
  color: #fff;
  background-color: #1a1a2e;
}

@media (max-width: 768px) {
  .Section-module__7jGEVW__section {
    padding: 60px 20px;
  }
}

/* [project]/app/components/Button.module.css [app-client] (css) */
.Button-module__Nm1E8a__button {
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.Button-module__Nm1E8a__primary {
  color: #fff;
  background-color: #2563eb;
}

.Button-module__Nm1E8a__primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #2563eb4d;
}

.Button-module__Nm1E8a__secondary {
  color: #2563eb;
  background-color: #0000;
  border-color: #2563eb;
}

.Button-module__Nm1E8a__secondary:hover {
  color: #fff;
  background-color: #2563eb;
}

.Button-module__Nm1E8a__outline {
  color: #374151;
  background-color: #0000;
  border-color: #d1d5db;
}

.Button-module__Nm1E8a__outline:hover {
  background-color: #f3f4f6;
  border-color: #374151;
}

.Button-module__Nm1E8a__large {
  padding: 18px 36px;
  font-size: 18px;
}

/* [project]/app/components/Hero.module.css [app-client] (css) */
.Hero-module__gNeX-G__hero {
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  display: flex;
}

.Hero-module__gNeX-G__content {
  max-width: 800px;
}

.Hero-module__gNeX-G__title {
  color: #1a1a2e;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

.Hero-module__gNeX-G__highlight {
  color: #2563eb;
  display: block;
}

.Hero-module__gNeX-G__subtitle {
  color: #4b5563;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.Hero-module__gNeX-G__tagline {
  color: #6b7280;
  margin-bottom: 40px;
  font-size: 20px;
}

.Hero-module__gNeX-G__buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  display: flex;
}

@media (max-width: 768px) {
  .Hero-module__gNeX-G__title {
    font-size: 40px;
  }

  .Hero-module__gNeX-G__subtitle {
    font-size: 20px;
  }

  .Hero-module__gNeX-G__tagline {
    font-size: 18px;
  }

  .Hero-module__gNeX-G__hero {
    min-height: 80vh;
    padding: 40px 20px;
  }
}

/* [project]/app/components/TheProblem.module.css [app-client] (css) */
.TheProblem-module__UsU6Rq__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.TheProblem-module__UsU6Rq__title {
  color: #1a1a2e;
  margin-bottom: 32px;
  font-size: 42px;
  font-weight: 700;
}

.TheProblem-module__UsU6Rq__highlight {
  color: #dc2626;
}

.TheProblem-module__UsU6Rq__description {
  color: #4b5563;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.7;
}

.TheProblem-module__UsU6Rq__competitor {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 18px;
}

.TheProblem-module__UsU6Rq__quote {
  color: #1a1a2e;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 32px;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
}

@media (max-width: 768px) {
  .TheProblem-module__UsU6Rq__title {
    font-size: 32px;
  }

  .TheProblem-module__UsU6Rq__description {
    font-size: 18px;
  }

  .TheProblem-module__UsU6Rq__quote {
    padding: 24px;
    font-size: 22px;
  }
}

/* [project]/app/components/OurSolution.module.css [app-client] (css) */
.OurSolution-module__wWFRcq__content {
  text-align: center;
}

.OurSolution-module__wWFRcq__title {
  color: #fff;
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 700;
}

.OurSolution-module__wWFRcq__highlight {
  color: #60a5fa;
}

.OurSolution-module__wWFRcq__subtitle {
  color: #9ca3af;
  margin-bottom: 48px;
  font-size: 20px;
}

.OurSolution-module__wWFRcq__features {
  text-align: left;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  display: grid;
}

.OurSolution-module__wWFRcq__feature {
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  padding: 28px;
  transition: all .3s;
}

.OurSolution-module__wWFRcq__feature:hover {
  background: #ffffff1a;
  transform: translateY(-2px);
}

.OurSolution-module__wWFRcq__featureTitle {
  color: #60a5fa;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.OurSolution-module__wWFRcq__featureDescription {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
}

.OurSolution-module__wWFRcq__stats {
  border-top: 1px solid #ffffff1a;
  justify-content: center;
  gap: 64px;
  padding-top: 32px;
  display: flex;
}

.OurSolution-module__wWFRcq__stat {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.OurSolution-module__wWFRcq__statValue {
  color: #2563eb;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 700;
}

.OurSolution-module__wWFRcq__statLabel {
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .OurSolution-module__wWFRcq__title {
    font-size: 32px;
  }

  .OurSolution-module__wWFRcq__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .OurSolution-module__wWFRcq__stats {
    flex-direction: column;
    gap: 32px;
  }
}

/* [project]/app/components/Card.module.css [app-client] (css) */
.Card-module__6ZsZ5q__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all .3s;
}

.Card-module__6ZsZ5q__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #00000014;
}

.Card-module__6ZsZ5q__featured {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-color: #2563eb;
  position: relative;
}

.Card-module__6ZsZ5q__featured:before {
  content: "Most Popular";
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #2563eb;
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* [project]/app/components/ServicesPricing.module.css [app-client] (css) */
.ServicesPricing-module__24PbYq__content {
  text-align: center;
}

.ServicesPricing-module__24PbYq__title {
  color: #1a1a2e;
  margin-bottom: 48px;
  font-size: 42px;
  font-weight: 700;
}

.ServicesPricing-module__24PbYq__grid {
  text-align: left;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  display: grid;
}

.ServicesPricing-module__24PbYq__serviceCard {
  flex-direction: column;
  display: flex;
}

.ServicesPricing-module__24PbYq__serviceName {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.ServicesPricing-module__24PbYq__serviceDescription {
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}

.ServicesPricing-module__24PbYq__features {
  flex-grow: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.ServicesPricing-module__24PbYq__feature {
  color: #4b5563;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  position: relative;
}

.ServicesPricing-module__24PbYq__feature:before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.ServicesPricing-module__24PbYq__priceContainer {
  margin-bottom: 20px;
}

.ServicesPricing-module__24PbYq__price {
  color: #2563eb;
  font-size: 32px;
  font-weight: 700;
}

.ServicesPricing-module__24PbYq__priceType {
  color: #6b7280;
  margin-left: 8px;
  font-size: 14px;
}

.ServicesPricing-module__24PbYq__button {
  width: 100%;
}

@media (max-width: 900px) {
  .ServicesPricing-module__24PbYq__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ServicesPricing-module__24PbYq__title {
    font-size: 32px;
  }
}

/* [project]/app/components/HowItWorks.module.css [app-client] (css) */
.HowItWorks-module__iI9NfG__content {
  text-align: center;
}

.HowItWorks-module__iI9NfG__title {
  color: #fff;
  margin-bottom: 48px;
  font-size: 42px;
  font-weight: 700;
}

.HowItWorks-module__iI9NfG__steps {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.HowItWorks-module__iI9NfG__step {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 0 12px;
  display: flex;
  position: relative;
}

.HowItWorks-module__iI9NfG__stepNumber {
  color: #fff;
  z-index: 2;
  background: #2563eb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.HowItWorks-module__iI9NfG__stepTitle {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.HowItWorks-module__iI9NfG__stepDescription {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}

.HowItWorks-module__iI9NfG__connector {
  z-index: 1;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  width: 80%;
  height: 2px;
  position: absolute;
  top: 28px;
  left: 60%;
}

@media (max-width: 900px) {
  .HowItWorks-module__iI9NfG__steps {
    flex-direction: column;
    gap: 32px;
  }

  .HowItWorks-module__iI9NfG__step {
    padding: 0;
  }

  .HowItWorks-module__iI9NfG__connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .HowItWorks-module__iI9NfG__title {
    font-size: 32px;
  }
}

/* [project]/app/components/WhyKhryslrops.module.css [app-client] (css) */
.WhyKhryslrops-module__Xz6e0q__content {
  text-align: center;
}

.WhyKhryslrops-module__Xz6e0q__title {
  color: #1a1a2e;
  margin-bottom: 48px;
  font-size: 42px;
  font-weight: 700;
}

.WhyKhryslrops-module__Xz6e0q__reasons {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  display: grid;
}

.WhyKhryslrops-module__Xz6e0q__reason {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all .3s;
}

.WhyKhryslrops-module__Xz6e0q__reason:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #00000014;
}

.WhyKhryslrops-module__Xz6e0q__icon {
  margin-bottom: 20px;
}

.WhyKhryslrops-module__Xz6e0q__reasonTitle {
  color: #1a1a2e;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
}

.WhyKhryslrops-module__Xz6e0q__reasonDescription {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .WhyKhryslrops-module__Xz6e0q__reasons {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .WhyKhryslrops-module__Xz6e0q__title {
    font-size: 32px;
  }
}

/* [project]/app/components/ReadyToWin.module.css [app-client] (css) */
.ReadyToWin-module__VLxg6G__cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.ReadyToWin-module__VLxg6G__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ReadyToWin-module__VLxg6G__title {
  color: #fff;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
}

.ReadyToWin-module__VLxg6G__offer {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
}

.ReadyToWin-module__VLxg6G__guarantee {
  color: #9ca3af;
  margin-bottom: 40px;
  font-size: 18px;
}

.ReadyToWin-module__VLxg6G__button {
  padding: 18px 40px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .ReadyToWin-module__VLxg6G__title {
    font-size: 36px;
  }

  .ReadyToWin-module__VLxg6G__offer {
    font-size: 22px;
  }

  .ReadyToWin-module__VLxg6G__guarantee {
    font-size: 16px;
  }
}

/* [project]/app/components/FAQ.module.css [app-client] (css) */
.FAQ-module__xrt3Fa__content {
  max-width: 800px;
  margin: 0 auto;
}

.FAQ-module__xrt3Fa__title {
  text-align: center;
  color: #1a1a2e;
  margin-bottom: 48px;
  font-size: 42px;
  font-weight: 700;
}

.FAQ-module__xrt3Fa__faqList {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.FAQ-module__xrt3Fa__faqItem {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all .2s;
  overflow: hidden;
}

.FAQ-module__xrt3Fa__faqItem:hover {
  border-color: #d1d5db;
}

.FAQ-module__xrt3Fa__faqItem.FAQ-module__xrt3Fa__open {
  border-color: #2563eb;
  box-shadow: 0 2px 12px #2563eb1a;
}

.FAQ-module__xrt3Fa__question {
  cursor: pointer;
  text-align: left;
  color: #1a1a2e;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  transition: background .2s;
  display: flex;
}

.FAQ-module__xrt3Fa__question:hover {
  background: #f9fafb;
}

.FAQ-module__xrt3Fa__icon {
  color: #2563eb;
  background: #eff6ff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 24px;
  font-weight: 400;
  display: flex;
}

.FAQ-module__xrt3Fa__answer {
  max-height: 0;
  transition: max-height .3s, padding .3s;
  overflow: hidden;
}

.FAQ-module__xrt3Fa__faqItem.FAQ-module__xrt3Fa__open .FAQ-module__xrt3Fa__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.FAQ-module__xrt3Fa__answer p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .FAQ-module__xrt3Fa__title {
    font-size: 32px;
  }

  .FAQ-module__xrt3Fa__question {
    padding: 16px 20px;
    font-size: 16px;
  }

  .FAQ-module__xrt3Fa__answer p {
    font-size: 15px;
  }
}

/* [project]/app/components/Footer.module.css [app-client] (css) */
.Footer-module__nhiC3q__footer {
  background: #1a1a2e;
  padding: 48px 24px 24px;
}

.Footer-module__nhiC3q__container {
  max-width: 1100px;
  margin: 0 auto;
}

.Footer-module__nhiC3q__content {
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.Footer-module__nhiC3q__brand {
  text-align: left;
}

.Footer-module__nhiC3q__logo {
  color: #fff;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 700;
}

.Footer-module__nhiC3q__tagline {
  color: #9ca3af;
  font-size: 14px;
}

.Footer-module__nhiC3q__contact {
  text-align: right;
}

.Footer-module__nhiC3q__contact p {
  color: #60a5fa;
  font-size: 16px;
}

.Footer-module__nhiC3q__bottom {
  text-align: center;
}

.Footer-module__nhiC3q__copyright {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .Footer-module__nhiC3q__content {
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }

  .Footer-module__nhiC3q__brand, .Footer-module__nhiC3q__contact {
    text-align: center;
  }
}

/*# sourceMappingURL=app_components_65402b33._.css.map*/