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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1e1b4b;
  background: #faf8ff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}
.btn--outline {
  background: #ffffff;
  color: #7c3aed;
  border: 1.5px solid rgba(124, 58, 237, 0.25);
}
.btn--outline:hover {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.04);
  transform: translateY(-2px);
}

.section {
  padding: 100px 0;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section__subtitle {
  font-size: 16px;
  color: #64748b;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.is-scrolled {
  border-bottom-color: rgba(124, 58, 237, 0.12);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo_wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.22);
}
.header__logo {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}
.header__name {
  font-size: 20px;
  font-weight: 700;
  color: #1e1b4b;
}
.header__tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  letter-spacing: 0.05em;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__link {
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  transition: color 0.3s ease;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.header__link:hover, .header__link.is-active {
  color: #7c3aed;
}
.header__link:hover::after, .header__link.is-active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fdf2f8 0%, #f3e8ff 40%, #ede9fe 70%, #faf8ff 100%);
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 100px;
}
.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #7c3aed;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 9999px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  color: #1e1b4b;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title-highlight {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(8px);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat strong {
  font-size: 28px;
  font-weight: 700;
  color: #1e1b4b;
}
.hero__stat span {
  font-size: 13px;
  color: #94a3b8;
}
.hero__star {
  color: #f59e0b;
  font-size: 20px;
  margin-left: 2px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(124, 58, 237, 0.15);
}

.features {
  background: #ffffff;
}
.features__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  padding: 6px;
  background: #f1f5f9;
  border-radius: 9999px;
  width: fit-content;
  justify-content: center;
}
.features__tab {
  padding: 10px 32px;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.features__tab:hover {
  color: #7c3aed;
}
.features__tab.is-active {
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
}
.features__tab.is-active.theme-purple {
  background: #e0e7ff;
  color: #6d28d9;
}
.features__tab.is-active.theme-pink {
  background: #e0e7ff;
}
.features__tab.is-active {
  background: #e0e7ff !important;
  color: #6d28d9 !important;
}
.features__card-wrapper {
  width: 100%;
  border-radius: 24px;
  padding: 56px 80px;
  transition: background 0.4s ease;
}
.features__card-wrapper.fade-in {
  animation: fadeIn 0.4s ease;
}
.features__card-wrapper.theme-purple {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}
.features__card-wrapper.theme-pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}
.features__card-wrapper.theme-orange {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
.features__card-wrapper.theme-green {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.features__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features__card-left {
  flex: 1;
  padding-right: 64px;
}
.features__card-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features__card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: #1e1b4b;
  line-height: 1.6;
}
.features__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
}
.features__card-right {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__circle-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.4s ease, transform 0.4s ease;
}
.features__circle-icon.theme-purple {
  background: #8b5cf6;
}
.features__circle-icon.theme-pink {
  background: #ec4899;
}
.features__circle-icon.theme-orange {
  background: #f59e0b;
}
.features__circle-icon.theme-green {
  background: #10b981;
}
.features__circle-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__circle-icon-inner svg {
  width: 64px;
  height: 64px;
}

.steps {
  background: #faf8ff;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps__card {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}
.steps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}
.steps__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(124, 58, 237, 0.08);
  line-height: 1;
}
.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 16px;
  color: #7c3aed;
  margin-bottom: 24px;
}
.steps__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e1b4b;
}
.steps__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
}

.testimonials {
  background: #ffffff;
}
.testimonials__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials__body {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  margin-bottom: 40px;
}
.testimonials__body.fade-in {
  animation: fadeIn 0.4s ease;
}
@media (max-width: 768px) {
  .testimonials__body {
    flex-direction: column;
    gap: 32px;
  }
}
.testimonials__indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonials__dot.is-active {
  width: 24px;
  background: #7c3aed;
}
.testimonials__dot:hover:not(.is-active) {
  background: #cbd5e1;
}
.testimonials__quote {
  flex: 1;
}
.testimonials__quote blockquote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  color: #1e1b4b;
  margin-bottom: 20px;
  font-style: normal;
}
.testimonials__quote cite {
  font-size: 14px;
  color: #94a3b8;
  font-style: normal;
}
.testimonials__card {
  flex-shrink: 0;
  width: 380px;
  padding: 28px;
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 50%, #fde68a 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}
.testimonials__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.testimonials__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: #92400e;
}
.testimonials__user {
  flex: 1;
}
.testimonials__user strong {
  display: block;
  font-size: 15px;
  color: #78350f;
}
.testimonials__user span {
  font-size: 12px;
  color: #a16207;
}
.testimonials__rating {
  font-size: 14px;
  color: #d97706;
  letter-spacing: 1px;
}
.testimonials__card-text {
  font-size: 14px;
  line-height: 1.8;
  color: #78350f;
  margin-bottom: 16px;
}
.testimonials__card-footer {
  display: flex;
  gap: 8px;
}
.testimonials__tag {
  padding: 4px 12px;
  font-size: 12px;
  color: #92400e;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

.faq {
  background: #faf8ff;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  margin-bottom: 12px;
  background: #ffffff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq__item:hover {
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
}
.faq__item.is-open {
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}
.faq__item.is-open .faq__arrow {
  transform: rotate(180deg);
}
.faq__item.is-open .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
  opacity: 1;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1e1b4b;
  text-align: left;
  transition: color 0.3s ease;
}
.faq__question:hover {
  color: #7c3aed;
}
.faq__arrow {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq__answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
}

.about {
  background: #ffffff;
}
.about__body {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.about__content {
  flex: 1;
}
.about__content .section__title {
  text-align: left;
  margin-bottom: 24px;
}
.about__text {
  font-size: 15px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 16px;
}
.about__text:last-child {
  margin-bottom: 0;
}
.about__contact {
  flex-shrink: 0;
  width: 400px;
}
.about__card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}
.about__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 24px;
}
.about__contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.about__contact-list li:last-child {
  border-bottom: none;
}
.about__contact-list a {
  color: #7c3aed;
  transition: opacity 0.3s ease;
}
.about__contact-list a:hover {
  opacity: 0.8;
}
.about__contact-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer {
  background: #1e1033;
  padding: 56px 0 40px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer__logo-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}
.footer__name {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__slogan {
  font-size: 14px;
  color: rgba(167, 139, 250, 0.85);
}
.footer__meta {
  text-align: center;
}
.footer__meta p {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.75);
  line-height: 1.6;
}

.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}
.back-to-top.is-visible:hover {
  transform: translateY(-4px);
}

.scroll-animate {
  opacity: 0;
}
.scroll-animate.is-visible {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/*# sourceMappingURL=index.css.map */
