html,
body {
  margin: 0;
  padding: 0;
  overflow-x: visible !important;
}

body {
  background-color: #2f1e2d;
  background-image: url(""),
    -moz-linear-gradient(45deg, #392d2e 15%, #403368 85%);
  background-image: url(""),
    -webkit-linear-gradient(45deg, #392d2e 15%, #403368 85%);
  background-image: url(""),
    -ms-linear-gradient(45deg, #392d2e 15%, #403368 85%);
  background-image: url(""), linear-gradient(45deg, #392d2e 15%, #403368 85%);
}

.pricing-container {
  width: 100vw;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px 30px;
  margin: 40px auto;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#header.alt .logo {
  -moz-transition: opacity 1.25s ease, -moz-transform 0.5s ease;
  -webkit-transition: opacity 1.25s ease, -webkit-transform 0.5s ease;
  -ms-transition: opacity 1.25s ease, -ms-transform 0.5s ease;
  transition: opacity 1.25s ease, transform 0.5s ease;
  -moz-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
  display: block;
  margin: 0 0 1.5em 0;
}

#header.alt .logo img {
  display: block;
  margin: 0 auto;
  max-width: 15%;
}

/* Hero Section */
.hero-section {
  text-align: center;
  color: #fff;
  padding: 120px 0 60px;
}

.hero-section p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing Cards */
.pricing-cards {
  padding: 40px 0;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}

.pricing-cards .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px; /* 抵消卡片的margin */
}

.pricing-cards .col {
  display: flex;
  width: 100%; /* 默认移动端下占满宽度 */
  padding: 10px;
  margin: 10px 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 40px;
  margin: 20px 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  /* 确保所有卡片最小高度一致 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 300px;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.pricing-card.pro {
  background: linear-gradient(
    145deg,
    rgba(100, 255, 218, 0.15),
    rgba(72, 169, 254, 0.15)
  );
  border: 1px solid rgba(100, 255, 218, 0.3);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.pro:hover {
  transform: translateY(-15px) scale(1.07);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -50px;
  background: linear-gradient(45deg, #64ffda, #48a9fe);
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.8em;
  font-weight: bold;
  color: #1a1a1a;
}

.card-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  flex: 0 0 auto;
  /* 头部不伸缩 */
}

.card-header h3 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 25px;
  font-weight: 600;
}

.card-content {
  flex: 1 1 auto;
  /* 内容区域自动填充剩余空间 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price {
  font-size: 3.5em;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.price .currency {
  font-size: 0.4em;
  vertical-align: super;
  margin-right: 5px;
  opacity: 0.8;
}

.price .period {
  font-size: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex: 1 1 auto;
  /* 特性列表占据剩余空间 */
  margin-bottom: 30px;
}

.features li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.features li i {
  margin-right: 15px;
  color: #64ffda;
  font-size: 1.2em;
}

.btn-subscribe {
  display: inline-block;
  width: 100%;
  padding: 16px 30px;
  text-align: center;
  background: linear-gradient(45deg, #64ffda, #48a9fe);
  color: #1a1a1a;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
  margin-top: auto;
  /* 按钮始终位于底部 */
}

.btn-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
}

/* Features Comparison */
.features-comparison {
  padding-bottom: 80px 0;
  position: relative;
}

.features-comparison h2 {
  font-size: 2.8em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-comparison h2::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  z-index: -1;
}

.comparison-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: bold;
}

.comparison-table td:first-child {
  text-align: left;
  color: #fff;
}

.comparison-table i.fa-check {
  color: #64ffda;
}

.comparison-table i.fa-times {
  color: #ff4f5b;
}

/* Feature availability icons styles */
.feature-available,
.feature-unavailable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.feature-available {
  border-color: rgba(100, 255, 218, 0.3);
  background-color: #19b12b81;
  color: white;
}

.feature-unavailable {
  border-color: rgba(100, 255, 218, 0.3);
  background-color: #ff4f5b81;
  color: white;
}

/* Hover effects */
.feature-available:hover {
  transform: scale(1.1);
  border-color: rgba(100, 255, 218, 0.5);
  box-shadow: 0 0 8px rgba(100, 255, 218, 0.3);
}

.feature-unavailable:hover {
  transform: scale(1.1);
  border-color: rgba(255, 79, 91, 0.5);
  box-shadow: 0 0 8px rgba(255, 79, 91, 0.3);
}

/* Icon size adjustment */
.feature-available i,
.feature-unavailable i {
  font-size: 12px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq-section h2 {
  font-size: 2.8em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 40px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  z-index: -1;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
  color: #64ffda;
  font-size: 1.3em;
  margin-bottom: 20px;
  margin-top: 0px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq-item h3 i {
  margin-right: 12px;
  font-size: 1.2em;
  opacity: 0.8;
}

.faq-item h3 .faq-arrow {
  transition: transform 0.3s ease;
  font-size: 1em;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.1em;
  padding-left: 32px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin: 0;
}

.faq-item.active h3 {
  color: #64ffda;
}

.faq-item.active h3 .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 20px;
}

/* Call to Action Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(100, 255, 218, 0.3),
    rgba(72, 169, 254, 0.3)
  );
  border-radius: 20px;
  margin: 40px 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2em;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cta {
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta.primary {
  color: #1a1a1a;
  background-color: #64ffda;
}

.btn-cta.secondary {
  background: transparent;
  border: 2px solid #64ffda;
  color: #64ffda;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Section Background Containers */
.section-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px 30px;

  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(172, 145, 145, 0.55),
    rgba(255, 255, 254, 0.25)
  );
  z-index: -1;
}

.section-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  opacity: 0.7;
  z-index: -1;
}

/* Hero Section */
.section-container h4 {
  text-align: center;
  color: #fff;
  padding-bottom: 50px;
}

/* 添加全局装饰圆形效果 */
.decoration-circle {
  position: fixed;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(100, 255, 218, 0.1),
    rgba(72, 169, 254, 0.1)
  );
  z-index: -1;
  pointer-events: none;
}

.circle-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
}

.circle-2 {
  width: 400px;
  height: 400px;
  top: 30%;
  right: -100px;
}

.circle-3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 15%;
}

.circle-4 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 25%;
}

.circle-5 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: 15%;
}

/* 全局装饰圆形 */
.decoration-circles {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(100, 255, 218, 0.1),
    rgba(72, 169, 254, 0.1)
  );
  animation: floatAnimation 20s infinite linear;
}

/* 定义圆形位置和大小 */
.circle-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
}
/* ...existing circle styles... */

/* 页面内容样式 */
.hero-section {
  text-align: center;
  padding: 120px 0 60px;
  color: #fff;
}

.hero-section h1 {
  font-size: 3em;
  margin: 0 auto 40px;
  padding: 40px;
}

/* 定价卡片样式 */
.pricing-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  transition: transform 0.5s ease;
}

/* 添加动画效果 */
@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .hero-section {
    padding: 80px 0 40px;
  }

  .hero-section h1 {
    font-size: 2.5em;
  }

  .pricing-card {
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  .hero-section h1 {
    font-size: 2em;
  }

  .price {
    font-size: 2em;
  }

  .comparison-table {
    font-size: 0.9em;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-bottom: 10px;
  }

  .features-comparison h2,
  .faq-section h2 {
    font-size: 2.2em;
    padding: 12px 30px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    padding: 60px 0 30px;
  }

  .hero-section h1 {
    font-size: 1.8em;
  }

  .pricing-card {
    padding: 20px;
    margin: 10px 0;
  }

  .features li {
    font-size: 0.9em;
  }

  .comparison-table {
    font-size: 0.8em;
  }

  .faq-item {
    padding: 20px;
  }

  .cta-section h2 {
    font-size: 2em;
  }

  .cta-section p {
    font-size: 1em;
  }
}

/* Pricing Cards 响应式布局修复 */
.pricing-cards .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px; /* 抵消卡片的margin */
}

.pricing-cards .col {
  width: 100%; /* 默认移动端下占满宽度 */
  padding: 10px;
  margin: 10px 0;
}

.pricing-card {
  height: 100%; /* 确保卡片高度一致 */
  margin: 0; /* 移除原有margin */
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* 平板和桌面端的断点 */
@media screen and (min-width: 1200px) {
  .pricing-cards .col {
    width: 25%; /* 大屏幕下三等分 */
  }

  .pricing-card.pro {
    transform: scale(1.05);
  }
}

/* 确保在中等屏幕下也是单列布局 */
@media screen and (max-width: 1199px) {
  .pricing-cards .col {
    width: 100%;
    max-width: 500px; /* 限制最大宽度 */
    margin: 10px auto; /* 水平居中 */
  }

  .pricing-card.pro {
    transform: none; /* 移除放大效果 */
  }

  /* 调整卡片间距 */
  .pricing-card {
    margin: 20px 0;
  }

  /* 调整Popular badge位置 */
  .popular-badge {
    right: -40px;
    top: 15px;
  }
}

/* 移动端优化 */
@media screen and (max-width: 600px) {
  .pricing-cards {
    padding: 20px 0;
  }

  .pricing-card {
    padding: 25px;
  }

  .card-header h3 {
    font-size: 1.75em;
  }

  .price {
    font-size: 3em;
  }

  .features li {
    font-size: 1em;
  }

  /* 调整按钮大小和间距 */
  .btn-subscribe {
    padding: 12px 24px;
    font-size: 1em;
  }
}

/* 调整billing-cycle-toggle的响应式布局 */
@media screen and (max-width: 480px) {
  .billing-options {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .billing-option {
    padding: 10px 16px;
    font-size: 0.9em;
  }

  .annual-bonus-banner {
    font-size: 0.9em;
    padding: 10px;
  }

  .saving-badge {
    font-size: 0.65em;
    padding: 3px 6px;
    right: -10px;
    top: -10px;
  }
}

/* 计费周期选择器的响应式优化 */
@media screen and (max-width: 480px) {
  .billing-cycle-toggle {
    margin-bottom: 30px;
    width: 100%;
    padding: 0 15px;
  }

  .billing-options {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .billing-option {
    padding: 10px 15px;
    font-size: 0.9em;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .cycle-slider {
    width: calc(50% - 4px);
  }

  .saving-badge {
    top: -10px;
    right: -5px;
    padding: 3px 6px;
    font-size: 0.65em;
    white-space: nowrap;
  }

  .annual-bonus-banner {
    font-size: 0.9em;
    padding: 10px;
    margin: 20px auto;
    max-width: 300px;
  }

  .annual-bonus-banner i {
    font-size: 1em;
  }
}

/* 特别小的屏幕额外优化 */
@media screen and (max-width: 360px) {
  .billing-options {
    max-width: 280px;
  }

  .billing-option {
    padding: 8px 12px;
    font-size: 0.85em;
  }

  .saving-badge {
    font-size: 0.6em;
    padding: 2px 4px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .pricing-card {
    background: rgba(0, 0, 0, 0.2);
  }

  .btn-subscribe {
    background: linear-gradient(45deg, #48a9fe, #64ffda);
  }

  .comparison-table {
    background: rgba(0, 0, 0, 0.2);
  }

  .faq-item {
    background: rgba(0, 0, 0, 0.2);
  }
}

/* Accessibility Improvements */
.btn-subscribe:focus,
.btn-cta:focus {
  outline: 2px solid #64ffda;
  outline-offset: 2px;
}

.pricing-card:focus-within {
  box-shadow: 0 0 0 2px #64ffda;
}

/* Print Styles */
@media print {
  .pricing-card,
  .comparison-table,
  .faq-item {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .btn-subscribe,
  .btn-cta {
    border: 1px solid #000;
    background: none;
    color: #000;
  }

  .popular-badge {
    display: none;
  }
}

/* 删除原有的 .features-comparison 相关样式 */

/* 添加新的 PlanTable 样式 */
.PlanTable_root {
  width: 100%;
  padding: 0px 0;
  /* 移除可能影响sticky的overflow属性 */
  overflow: visible;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.PlanTable_spacer {
  max-width: 1200px;
  margin: 0 auto;
  /* 移除可能影响sticky的overflow属性 */
  overflow: visible;
}

.PlanTable_tableHeadingWrapper {
  border-bottom: 1px solid #eae6e7;
  color: #201f24;
  position: -webkit-sticky;
  position: sticky;
  text-align: center;
  /* 调整top值以适应页面顶部导航栏高度 */
  top: 62px;
  /* 提高z-index确保在其他元素之上 */
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  /* 添加阴影效果突出层级 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* 为不支持sticky的浏览器添加降级方案 */
@supports not (position: sticky) {
  .PlanTable_tableHeadingWrapper {
    position: fixed;
    top: 0;
    width: 100%;
  }
}

.PlanTable_tableHeading {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
}

.PlanTable_column {
  padding: 15px;
  text-align: center;
}

.PlanTable_planName {
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
}

.PlanTable_group .PlanTable_heading {
  border-bottom: 1px solid #eae6e7;
  padding: 0px 24px 24px 0;
}

@media (max-width: 800px) {
  .PlanTable_group .PlanTable_heading {
    border-bottom: none;
    padding-top: 64px;
    background-color: rgba(255, 255, 255, 0.4);
    padding-top: 0px;
  }
}

@media (min-width: 801px) {
  .PlanTable_group .PlanTable_heading {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .PlanTable_group:first-child .PlanTable_heading:first-child {
    padding-top: 24px;
  }
}

.PlanTable_group .PlanTable_heading.PlanTable_row {
  border-radius: initial;
  grid-template-columns: 1fr;
}

@media (max-width: 800px) {
  .PlanTable_group .PlanTable_heading.PlanTable_row {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

.PlanTable_group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 20px 20px;
}

.PlanTable_groupHeading {
  margin: 30px;
  color: #fff;
}

@media (max-width: 800px) {
  .PlanTable_groupHeading {
    font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
    font-feature-settings: "ss01";
    font-size: 1.75rem;
    line-height: 120%;
    margin-bottom: 0;
    margin-top: 56px;
    font-weight: 500;
  }
}

.PlanTable_row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.PlanTable_featureTitleText {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding-left: 40px;
}

.PlanTable_planValueText {
  color: rgba(255, 255, 255, 0.8);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
  .PlanTable_tableHeading,
  .PlanTable_row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .PlanTable_column {
    padding: 10px 15px;
  }
}

.Typography_headingXxl {
  font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 120%;
  font-weight: 500;
}

@media (min-width: 601px) {
  .Typography_headingXxl {
    font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 120%;
    margin-top: 16px;
  }

  .Typography_headingXxl.Typography_bold {
    font-weight: 500;
  }
}

.Typography_headingXl {
  font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
  font-size: 2rem;
  line-height: 120%;
  font-weight: 500;
}

@media (min-width: 601px) {
  .Typography_headingXl {
    font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 120%;
  }

  .Typography_headingXl.Typography_bold {
    font-weight: 500;
  }
}

.Typography_headingBase {
  font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
  line-height: 120%;
  font-weight: 500;
}

.Typography_headingBase {
  font-size: 2rem;
}

.Typography_headingMd {
  font-feature-settings: "ss01";
  font-size: 1.75rem;
  line-height: 120%;
  font-weight: 500;
}

.Typography_headingMd,
.Typography_headingSm {
  font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
  margin-bottom: 0;
  margin-top: 26px;
}

.Typography_headingSm {
  font-feature-settings: "ss01";
  font-size: 1.375rem;
  line-height: 140%;
  font-weight: 500;
}

.Typography_bodyMd {
  font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
  font-feature-settings: "ss01";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 160%;
}

.Typography_bodyMd.Typography_bold {
  font-weight: 500;
}

@media (min-width: 601px) {
  .Typography_bodyMd {
    font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
    font-feature-settings: "ss01";
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 160%;
  }

  .Typography_bodyMd.Typography_bold {
    font-weight: 500;
  }
}

.Typography_bodySm {
  font-family: Garnett, Helvetica, Segoe UI, Arial, sans-serif;
  font-feature-settings: "ss01";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 160%;
}

.Typography_bodySm.Typography_bold {
  font-weight: 500;
}

.PlanTable_group .PlanTable_column.PlanTable_text {
  align-items: center;
  display: flex;
}

@media (max-width: 800px) {
  .PlanTable_group .PlanTable_column.PlanTable_text {
    margin-bottom: 0;
    margin-top: 40px;
    text-align: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.Button_root {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: none;
  box-shadow: 0 0 0 transparent;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    border-radius 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    background-color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    background-image 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.Button_root.Button_xs {
  padding: 3.6px 12px;
}

@media (min-width: 601px) {
  .Button_root.Button_xs {
    padding: 8px 18px;
  }
}

.Button_root.Button_small {
  padding: 3.6px 12px;
}

@media (min-width: 601px) {
  .Button_root.Button_small {
    padding: 12px 22px;
  }
}

.Button_root.Button_medium {
  padding: 14px 34px;
}

.Button_root.Button_large {
  border-radius: 96px;
  padding: 16px 40px;
}

.Button_root.Button_large:hover {
  border-radius: 16px;
}

@media (max-width: 600px) {
  .Button_root.Button_large .Button_text {
    font-size: 1.375rem;
  }
}

@media (min-width: 601px) {
  .Button_root.Button_large {
    padding: 24px 65px;
  }
}

.Button_root .Button_phantomBackground {
  border: 2px solid transparent;
  border-radius: inherit;
  cursor: pointer;
  inset: 0;
  position: absolute;
  transition: border-radius 0.3s ease, background-color 0.15s ease,
    background-image 0.15s ease;
}

.Button_root .Button_text {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.Button_root:disabled {
  cursor: none;
  opacity: 0.5;
  pointer-events: none;
}

.Button_solid,
.Button_transparent {
  border-radius: 96px;
}

.Button_solid.Button_primary {
  background-color: #7856ff;
  background-image: linear-gradient(2deg, #a256ff 0.97%, #d175ff 96.96%);
  box-shadow: inset 0 -1px 0 #5028c0, inset 0 1px 0 hsla(0, 0%, 100%, 0.2);
  color: #fff;
}

.Button_solid.Button_darkPurple {
  background-color: #1b0b3b;
  box-shadow: 0 1px 1px 0 #dfdfdf;
  color: #fff;
}

.Button_transparent {
  background-color: #7856ff;
  background-image: linear-gradient(10deg, #7856ff 0.97%, #5028c0 96.96%);
  color: #5028c0;
  transition: color 0.15s ease, border-radius 0.3s ease,
    background-color 0.15s ease, background-image 0.15s ease,
    transform 0.15s ease, filter 0.15s ease;
}

.Button_transparent .Button_phantomBackground {
  background-clip: padding-box;
  background-image: linear-gradient(180deg, #fbf9f9, #f5f2f2);
  border: 2px solid transparent;
  transition: none;
}

.Button_transparent.Button_darkPurple {
  background-color: transparent;
  background-image: none;
  border: 2px solid #1b0b3b;
  box-shadow: 0 1px 1px 0 #dfdfdf;
  color: #1b0b3b;
}

.Button_transparent.Button_darkPurple .Button_phantomBackground {
  background-image: none;
}

.Button_transparent:focus-visible .Button_phantomBackground,
.Button_transparent:hover .Button_phantomBackground {
  border-radius: 8px;
  transition: border-radius 0.3s ease, background-color 0.15s ease,
    background-image 0.15s ease;
}

.Button_inline {
  background-color: transparent;
}

.Button_inline.Button_medium.Button_inline {
  margin-bottom: 12px;
  margin-right: 8px;
  margin-top: 12px;
  padding: 0;
}

.Button_inline.Button_light {
  color: #fff;
  fill: #fff;
}

.Button_inline.Button_light:active,
.Button_inline.Button_light:hover {
  color: hsla(0, 0%, 100%, 0.8);
  fill: hsla(0, 0%, 100%, 0.8);
}

.Button_inline:focus-visible:not(:active) {
  border-color: #1b0b3b;
  outline-color: rgba(27, 11, 59, 0.3);
}

.Button_inlineArrow {
  bottom: 1px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  transition: transform 0.15s cubic-bezier(0.06, 0.3, 0.4, 1);
}

.Button_root:hover .Button_inlineArrow {
  transform: translateX(5px);
}

.Button_medium .Button_inlineArrow {
  width: 18px;
  height: 11px;
}

.Button_solid:hover:not(:active):not(.Button_small, .Button_xs) {
  box-shadow: 0 4px 15px rgba(176, 148, 255, 0.5),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.5);
  transform: scale(1.05);
}

.Button_darkPurple:hover:not(:active).Button_solid {
  background-color: #7856ff;
}

.Button_darkPurple:hover:not(:active).Button_transparent {
  border-color: #7856ff;
  color: #5028c0;
}

.Button_solid:active:not(.Button_darkPurple) {
  background-color: #1b0b3b;
  background-image: linear-gradient(180deg, #9075ff, #5028c0);
  filter: drop-shadow(0 4px 25px rgba(120, 86, 255, 0.5));
}

.Button_darkPurple:active.Button_solid {
  background-color: #5028c0;
}

.Button_darkPurple:active.Button_transparent {
  background-color: rgba(176, 148, 255, 0.4);
  border-color: #7856ff;
  color: #1b0b3b;
}

.Button_solid:after,
.Button_transparent:after {
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

.Button_solid:focus-visible,
.Button_transparent:focus-visible {
  outline: 5px solid rgba(120, 86, 255, 0.2);
}

.Button_solid:focus-visible:after,
.Button_transparent:focus-visible:after {
  box-shadow: inset -2px 0 0 #fff, inset 2px 0 0 #fff, inset 0 2px 0 #fff,
    inset 0 -2px 0 #fff;
}

.Button_transparent:focus-visible:after {
  box-shadow: none;
}

.Button_inline:focus-visible {
  outline: none;
}

.Button_inline:focus-visible .Button_text {
  border-bottom: 2px solid;
}

.Button_inline:focus-visible,
.Button_solid:focus-visible,
.Button_solid:hover,
.Button_transparent:focus-visible,
.Button_transparent:hover {
  border-radius: 8px;
}

/* 计费周期选择器样式 */
.billing-cycle-toggle {
  text-align: center;
  margin-bottom: 40px;
}

.billing-options {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 4px;
  border-radius: 30px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.billing-option {
  padding: 12px 24px;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.billing-option.active {
  color: #1a1a1a;
}

.cycle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(45deg, #64ffda, #48a9fe);
  height: calc(100% - 8px);
  border-radius: 25px;
  transition: transform 0.3s ease;
  width: calc(50% - 4px);
}

.billing-option[data-period="annual"].active ~ .cycle-slider {
  transform: translateX(100%);
}

.saving-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  font-weight: bold;
  color: #1a1a1a;
  animation: pulse 2s infinite;
}

/* 年付优惠banner */
.annual-bonus-banner {
  text-align: center;
  margin-bottom: 30px;
  padding: 12px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 15px;
  color: #64ffda;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(100, 255, 218, 0.2);
  max-width: 400px;
  margin: 0 auto 30px;
}

.annual-bonus-banner i {
  font-size: 1.2em;
  animation: bounce 2s infinite;
}

/* 价格显示相关样式 */
.billed-annually {
  font-size: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* 动画效果 */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Features Comparison 响应式布局 */
@media screen and (max-width: 768px) {
  .PlanTable_row {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
  }

  .PlanTable_column.PlanTable_text {
    flex: 0 0 100%;
    margin-bottom: 10px;
    padding: 10px 0;
  }

  .PlanTable_featureDetails {
    display: flex;
    flex-wrap: wrap;
  }

  .PlanTable_featureDetails .PlanTable_column.PlanTable_planValue {
    flex: 1 1 25%;
    text-align: center;
    padding: 10px 5px;
    font-size: 1em;
  }

  /* 表头响应式调整 */
  .PlanTable_tableHeading {
    display: flex;
    flex-wrap: wrap;
  }

  .PlanTable_tableHeading .PlanTable_column:first-child {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .PlanTable_tableHeading .PlanTable_column:not(:first-child) {
    flex: 1 1 25%;
  }

  /* 标题文字大小调整 */
  .Typography_bodySm {
    font-size: 0.9rem;
  }

  /* 确保图标和文字对齐 */
  .PlanTable_featureTitleText {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: center; /* 这个会生效 */
    font-size: 1.2em;
  }

  /* 调整值的显示 */
  .Typography_captionSm {
    font-size: 0.85rem;
  }
}

/* 超小屏幕的额外优化 */
@media screen and (max-width: 480px) {
  .PlanTable_featureDetails .PlanTable_column.PlanTable_planValue {
    padding: 8px 2px;
  }

  .Typography_captionSm {
    font-size: 0.8rem;
  }

  .PlanTable_tableHeading .PlanTable_column:not(:first-child) {
    padding: 5px;
  }

  /* 调整按钮大小 */
  .Button_root.Button_small {
    padding: 8px 12px;
  }

  .Button_text {
    font-size: 0.8rem;
  }
}
