* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff !important;
}
.tips {
  font-size: 18px;
  color: #fff;
  background-color: #05ca94;
  text-align: center;
  width: 100%;
  padding: 14px 0;
}
/* Join Section */
.join {
  padding: 80px 20px;
  background-color: white;
}
.join-container {
  max-width: 1200px;
  margin: 0 auto;
}
.join-header {
  text-align: center;
  margin-bottom: 60px;
}
.join-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}
.join-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}
/* Join Cards */
.join-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
/* Join Card */
.join-card {
  width: 100%;
  max-width: 360px;
  border: 2px solid #05ca94;
  border-radius: 12px;
  padding: 40px 30px;
  background-color: white;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.join-card:nth-child(1) {
  animation-delay: 0.1s;
}
.join-card:nth-child(2) {
  animation-delay: 0.2s;
}
.join-card:nth-child(3) {
  animation-delay: 0.3s;
}
.join-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.join-card-professional {
  transform: translateY(-34px) !important;
}
/* Card Header */
.card-header {
  text-align: center;
  margin-bottom: 30px;
}
.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}
.card-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
/* Card Price */
.card-price {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.original-price {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  display: block;
  margin-bottom: 8px;
  margin-right: 10px;
}
.years {
  font-size: 16px;
  color: #9ca3af;
  display: block;
  margin-bottom: 8px;
}
.current-price {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  display: block;
}
/* Card Button */
.card-button {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #05ca94;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.card-button:hover {
  background-color: #00946c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 202, 148, 0.3);
}
/* Card Benefits */
.card-benefits {
  margin-top: 30px;
}
.benefits-title {
  font-size: 14px;
  font-weight: 600;
  color: #05ca94;
  margin-bottom: 20px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.5;
}
.benefit-item:last-child {
  margin-bottom: 0;
}
.benefit-item svg {
  margin-top: 2px;
  flex-shrink: 0;
}
.benefit-item.disabled {
  color: #9ca3af;
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .join-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .join-card {
    max-width: 320px;
    padding: 35px 25px;
  }
  .join-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .join-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .join-card {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .join {
    padding: 60px 20px;
  }
  .join-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .join-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .join-card {
    max-width: 100%;
    padding: 30px 25px;
  }
  .card-title {
    font-size: 20px;
  }
  .current-price {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .join {
    padding: 40px 15px;
  }
  .join-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .join-subtitle {
    font-size: 12px;
  }
  .join-card {
    padding: 25px 20px;
  }
  .benefit-item {
    font-size: 13px;
  }
  .card-button {
    font-size: 15px;
    padding: 11px 0;
  }
}
/* Compare Section */
.compare {
  padding: 80px 20px;
  background-color: white;
}
.compare-container {
  max-width: 1200px;
  margin: 0 auto;
}
.compare-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.compare-table-wrapper {
  overflow-x: auto;
  padding: 20px 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #999999;
  animation: fadeIn 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.compare-table thead {
  border-bottom: 1px solid #999999;
}
.compare-table th {
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
}
.feature-column {
  text-align: left;
  width: 200px;
}
.version-column {
  width: calc((100% - 200px) / 3);
}
.compare-table td {
  padding: 18px 15px;
  font-size: 14px;
  color: #1f2937;
  text-align: center;
  border-bottom: 1px solid #999999;
  transition: background-color 0.3s ease;
}
.table-row:hover td {
  background-color: #f9fafb;
}
.feature-cell {
  text-align: left;
  font-weight: 500;
  color: #4b5563;
}
.version-cell {
  position: relative;
}
.version-cell img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .compare-container {
    max-width: 100%;
  }
  .compare-title {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .compare-table th,
  .compare-table td {
    padding: 16px 12px;
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .compare {
    padding: 70px 20px;
  }
  .compare-table-wrapper {
    padding: 15px 0;
  }
}
@media (max-width: 768px) {
  .compare {
    padding: 60px 15px;
  }
  .compare-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .compare-table {
    font-size: 12px;
  }
  .compare-table th,
  .compare-table td {
    padding: 14px 10px;
  }
  .feature-column {
    width: 180px;
  }
  .version-column {
    width: calc((100% - 180px) / 3);
  }
}
@media (max-width: 480px) {
  .compare {
    padding: 50px 10px;
  }
  .compare-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .compare-table th,
  .compare-table td {
    padding: 12px 8px;
    font-size: 11px;
  }
  .feature-column {
    width: 150px;
  }
  .version-column {
    width: calc((100% - 150px) / 3);
  }
  .version-cell img {
    margin: 0 2px;
  }
}
.yes-img {
  width: 20px;
  height: 20px;
}
.no-img {
  width: 20px;
  height: 20px;
}
/* Subscribe Section */
.subscribe {
  padding: 60px 20px;
  background-color: white;
}
.subscribe-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  /* padding: 40px; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.subscribe-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 16px 22px;
  background: linear-gradient(90deg, #f1faf6 0%, #ffffff 100%);
}
.subscribe-icon {
  width: 32px;
  height: 32px;
  background-color: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.subscribe-icon .info-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.subscribe-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.subscribe-content {
  padding: 28px;
}
.subscribe-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.subscribe-options {
  overflow-x: auto;
  padding: 10px 0;
}
.options-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  animation: fadeIn 0.6s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.option-row {
  border-bottom: 1px solid #999999;
  transition: background-color 0.3s ease;
}
.option-row:last-child {
  border-bottom: none;
}
.option-row:hover {
  background-color: #f9fafb;
}
.option-name-cell {
  width: 200px;
  padding: 20px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  border-right: 1px solid #999999;
  vertical-align: top;
}
.option-description-cell {
  padding: 20px 15px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  vertical-align: top;
}
.option-number {
  font-weight: 700;
}
.option-name {
  color: #1f2937;
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .subscribe-container {
    max-width: 100%;
    padding: 35px;
  }
}
@media (max-width: 1024px) {
  .subscribe {
    padding: 50px 20px;
  }
  .subscribe-container {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .subscribe {
    padding: 40px 15px;
  }
  .subscribe-container {
    padding: 25px;
  }
  .subscribe-title {
    font-size: 18px;
  }
  .subscribe-description {
    font-size: 13px;
  }
  .option-description {
    font-size: 13px;
    padding-left: 55px;
  }
}
@media (max-width: 480px) {
  .subscribe {
    padding: 30px 10px;
  }
  .subscribe-container {
    padding: 20px;
  }
  .subscribe-header {
    gap: 10px;
  }
  .subscribe-icon {
    width: 28px;
    height: 28px;
  }
  .subscribe-title {
    font-size: 16px;
  }
  .subscribe-description {
    font-size: 12px;
  }
  .option-title {
    font-size: 13px;
  }
  .option-description {
    font-size: 12px;
    padding-left: 50px;
  }
}
/* Create Section */
.create {
  padding: 80px 20px;
  background-color: white;
}
.create-container {
  max-width: 1200px;
  margin: 0 auto;
}
.create-header {
  text-align: center;
  margin-bottom: 60px;
}
.create-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}
.create-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}
.create-list {
  max-width: 900px;
  margin: 0 auto;
}
.create-item {
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}
.create-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.create-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.create-item-header:hover {
  background-color: #f9fafb;
}
/* .create-item-header.active {
  background-color: #f0fdf4;
} */
.create-item-question {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
}
.create-item-arrow {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.create-item-header.active .create-item-arrow {
  transform: rotate(180deg);
}
.create-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: white;
}
.create-item-content.open {
  max-height: 200px;
  padding: 20px 4px;
  animation: fadeIn 0.5s ease;
}
.create-content-inner {
  /* padding: 20px 0 0; */
}
.create-content-inner p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive Design for Create Section */
@media (max-width: 1024px) {
  .create-title {
    font-size: 32px;
  }
  .create-list {
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .create {
    padding: 60px 20px;
  }
  .create-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .create-item-header {
    padding: 25px 30px;
  }
  .create-item-question {
    font-size: 15px;
  }
  .create-item-content.open {
    padding: 0 30px 30px;
  }
  .create-content-inner p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .create-title {
    font-size: 24px;
  }
  .create-subtitle {
    font-size: 12px;
  }
  .create-item-header {
    padding: 20px 25px;
  }
  .create-item-question {
    font-size: 14px;
  }
  .create-item-arrow {
    width: 35px;
    height: 35px;
  }
  .create-item-content.open {
    padding: 0 25px 25px;
  }
  .create-content-inner p {
    font-size: 12px;
  }
}
