@charset "UTF-8";
  .container {
      max-width: 1200px;
      margin: 0 auto;
  }

  .header {
      text-align: center;
      margin-bottom: 20px;
  }

  .badge {
      display: inline-block;
      color: #ff9800;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 0px;
      letter-spacing: 0.5px;
  }

  .header h1 {
      font-size: 40px;
      margin-bottom: 8px;
      color: #1a1a1a;
      font-weight: 700;
      letter-spacing: -0.5px;
  }

  .header h1 .highlight {
      color: #ff9800;
  }

  .header p {
      color: #888;
      font-size: 15px;
      max-width: 650px;
      margin: 0 auto 20px;
      line-height: 1.6;
      font-weight: 400;
  }

  .toggle-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-bottom: 28px;
  }

  .toggle-label {
      font-size: 14px;
      font-weight: 500;
      color: #666;
  }

  .toggle-label.active {
      color: #1a1a1a;
      font-weight: 600;
  }

  .toggle-switch {
      position: relative;
      display: inline-block;
      width: 54px;
      height: 28px;
  }

  .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: 0.4s;
      border-radius: 34px;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 20px;
      width: 20px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: 0.4s;
      border-radius: 50%;
  }

  input:checked + .slider {
      background-color: #ff9800;
  }

  input:checked + .slider:before {
      transform: translateX(26px);
  }

  .save-badge {
      display: inline-block;
      background-color: #4caf50;
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 600;
      margin-left: 8px;
  }

  .pricing-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 30px;
  }

  .card {
      background: white;
      border-radius: 12px;
      padding: 22px 14px;
      position: relative;
      border: 2px solid #f0f0f0;
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .card.featured {
      border: 2px solid #ff9800;
      transform: scale(1.01);
  }

  .card.featured:hover {
      transform: scale(1.01) translateY(-3px);
  }

  .badge-top {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      display: inline-block;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
  }

  .badge-best {
      background-color: #ff9800;
      color: white;
      white-space: nowrap;
font-size: 9px;
  }

  .badge-free {
      background-color: #4c5cc7;
      color: white;
      white-space: nowrap;
font-size: 9px;
  }

  .card h3 {
      font-size: 16px;
      margin-bottom: 12px;
      color: #1a1a1a;
      font-weight: 700;
  }

  .card-description {
      color: #888;
      font-size: 12px;
      margin-bottom: 6px;
      line-height: 18px;
      font-weight: 400;
  }

  .price-section {
      margin-bottom: 10px;
  }

  .price {
      font-size: 38px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
      letter-spacing: -0.5px;
  }

  .price .currency {
      font-size: 26px;
  }

  .price-period {
      color: #888;
      font-size: 13px;
      font-weight: 400;
  }

  .price-save {
      color: #4caf50;
      font-size: 12px;
      margin-top: 6px;
      font-weight: 500;
  }

  .btn {
      width: 100%;
      padding: 8px 14px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-bottom: 12px;
  }

  .btn-primary {
      background-color: #ff9800;
      color: white;
  }

  .btn-primary:hover {
      background-color: #f57c00;
      transform: scale(1.01);
  }

  .btn-secondary {
      background-color: #f0f0f0;
      color: #1a1a1a;
      font-weight: 600;
  }

  .btn-secondary:hover {
      background-color: #e8e8e8;
  }

  .features {
      margin-top: 0px;
  }

  .features-header {
      color: #999;
      font-size: 11px;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .feature-list {
      list-style: none;
  }

  .feature-list li {
      padding: 5px 0;
      color: #666;
      font-size: 10px;
      border-bottom: unset;
      display: flex;
      align-items: center;
      font-weight: 400;
      line-height: 14px;
  }

  .feature-list li:last-child {
      border-bottom: none;
  }

  .feature-list li:before {
      content: "✓";
      display: inline-block;
      margin-right: 10px;
      color: #4caf50;
      font-weight: 700;
      font-size: 16px;
  }

  .card.free .feature-list li:before {
      color: #666;
  }

  /* Free card styling */
.card.free {
    border: 2px solid #f0f0f0;
}

.card.free h3 {
    color: #1a1a1a;
}

.card.free .price {
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .card.featured {
        transform: scale(1);
    }

    .card.featured:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .card.featured {
        transform: scale(1);
    }

    .card.featured:hover {
        transform: translateY(-3px);
    }

    .toggle-section {
        flex-wrap: wrap;
    }
}

.hidden {
    display: none;
}