.divider {
  width: 1px;
  height: 16px;
  background: #ddd;
}

.pricing-section {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.subtitle {
  color: #a65a8a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.desc {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.toggle-container span {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
}

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #b87599 0%, #9a5f7f 100%);
  border-radius: 34px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked+.slider:before {
  transform: translateX(28px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #a65a8a;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(166, 90, 138, 0.15);
}

.card.active {
  background: linear-gradient(135deg, #b87599 0%, #a65a8a 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(166, 90, 138, 0.3);
}

.icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #b87599 0%, #9a5f7f 100%);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.icon-white {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.card.active .icon {
  background: rgba(255, 255, 255, 0.2);
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.card.active h3 {
  color: white;
}

.small-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.card.active .small-text {
  color: rgba(255, 255, 255, 0.9);
}

.card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.card.active h2 {
  color: white;
}

.card h2 span {
  font-size: 18px;
  font-weight: 500;
  color: #666;
}

.card.active h2 span {
  color: rgba(255, 255, 255, 0.8);
}

.card button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin: 24px 0;
  background: linear-gradient(135deg, #b87599 0%, #9a5f7f 100%);
  color: white;
}

.card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 90, 138, 0.3);
}

.card.active button {
  background: white;
  color: #a65a8a;
}

.card.active button:hover {
  background: #f8f8f8;
}

.feature-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: #999;
}

.card.active .feature-divider {
  color: rgba(255, 255, 255, 0.8);
}

.feature-divider::before,
.feature-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.card.active .feature-divider::before,
.card.active .feature-divider::after {
  background: rgba(255, 255, 255, 0.3);
}

.card ul {
  list-style: none;
  text-align: left;
}

.card ul li {
  padding: 12px 0;
  font-size: 15px;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card.active ul li {
  color: white;
}

.card ul li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #e8f5e9;
  color: #4caf50;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.card.active ul li::before {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.comparison-section {
  max-width: 1200px;
  margin: 100px auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: #f8f8f8;
  border-bottom: 2px solid #e5e5e5;
}

.table-header>div {
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.table-header>div:first-child {
  color: #1a1a1a;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.table-row:hover {
  background: #fafafa;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #4a4a4a;
}

.table-cell:first-child {
  font-weight: 600;
  color: #2d2d2d;
}

.checkmark {
  width: 24px;
  height: 24px;
  background: #4ade80;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.dash {
  color: #ccc;
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 968px) {
  .section-header h1 {
    font-size: 32px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .table-cell {
    padding: 20px 16px;
    font-size: 14px;
  }

  .table-header>div {
    padding: 20px 16px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .section-header h1 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-header>div:first-child {
    border-bottom: 1px solid #e5e5e5;
  }

  .table-header>div:not(:first-child) {
    display: none;
  }

  .table-row {
    border-bottom: 2px solid #e5e5e5;
    padding: 20px 0;
  }

  .table-cell:first-child {
    background: #f8f8f8;
    font-size: 15px;
    padding: 16px 20px;
    margin-bottom: 12px;
  }

  .table-cell:not(:first-child) {
    padding: 12px 20px;
    justify-content: space-between;
  }

  .table-cell:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 600;
    color: #666;
    font-size: 13px;
  }
}

/* cta2 section  */
.cta2-section {

  background: rgba(166, 90, 138, 0.06);

  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.cta2-content {
  flex: 1;
  max-width: 600px;
}

.cta2-header h1 {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta2-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta2-button {
  display: inline-block;
  background: linear-gradient(135deg, #b87599 0%, #a65a8a 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.cta2-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 90, 138, 0.3);
}

.cta2-image {
  flex: 1;
  max-width: 650px;
}

.cta2-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

@media (max-width: 968px) {
  .cta2-section {
    flex-direction: column;
    padding: 60px 30px;
    gap: 40px;
  }

  .cta2-content {
    max-width: 100%;
  }

  .cta2-header h1 {
    font-size: 40px;
  }

  .cta2-header p {
    font-size: 16px;
  }

  .cta2-image {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .cta2-section {
    padding: 40px 20px;
  }

  .cta2-header h1 {
    font-size: 32px;
  }

  .cta2-button {
    width: 100%;
  }
}