* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header Section */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  background-color: #e0e7ff;
  color: #00599d;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.pricing-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00599d;
  line-height: 1.3;
}

.pricing-header p {
  font-size: 15px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.toggle-label.active {
  color: #00599d;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background-color: #e5e7eb;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-switch.active {
  background-color: #00599d;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(22px);
}

.save-badge {
  background-color: #dc2626;
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-card {
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 89, 157, 0.12);
  transform: translateY(-3px);
  border-color: #00599d;
}

.pricing-card.featured {
  border: 2px solid #00599d;
  box-shadow: 0 4px 20px rgba(0, 89, 157, 0.15);
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #00599d;
  color: white;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #00599d;
}

.card-punchline {
    font-size: 13px;
    color: #666;
    line-height: 1.4;

    height: 50px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    cursor: pointer;
}

.custom-tooltip {
    position: fixed;
    display: none;
    background: #fff;
    color: #333;
    width: 375px;
    /* max-width: 372px; */
    padding: 20px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    z-index: 999999;
    word-break: break-word;
    pointer-events: none;
    margin-top: 10px;

}

/* remove blue arrow */
.custom-tooltip::after {
    display:none;
}


.card-price-section {
  padding: 10px 0;
  border-bottom: 1.5px solid #f3f4f6;
  margin-bottom: 16px;
}

.price-display {
  font-size: 32px;
  font-weight: 700;
  color: #00599d;
  margin-bottom: 4px;
}

.price-period {
  font-size: 13px;
  color: #999;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.stat-item {
  background: #f9fafb;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #00599d;
  display: block;
}

.stat-label {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

.feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f9fafb;
}

.feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #00599d;
  margin-top: 2px;
}

.feature-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #999;
  margin-bottom: 3px;
}

.feature-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;

    height: 38px;              /* fixed space for 2 lines */
    
    display: -webkit-box;
    -webkit-line-clamp: 2;     /* show only 2 lines */
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

.subscribe-btn {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.subscribe-btn.default {
  background-color: #f3f4f6;
  color: #374151;
}

.subscribe-btn.default:hover {
  background-color: #e5e7eb;
}

.subscribe-btn.primary {
  background-color: #00599d;
  color: white;
}

.subscribe-btn.primary:hover {
  background-color: #004880;
  box-shadow: 0 4px 12px rgba(0, 89, 157, 0.3);
}

/* Trust Section */
.trust-section {
  background-color: #f9fafb;
  border-radius: 20px;
  padding: 50px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.trust-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00599d;
  line-height: 1.3;
}

.trust-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.trust-logos {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.trust-logo {
  font-size: 14px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 1px;
}

.trust-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.trust-image img {
  width: 100%;
  height: auto;
  display: block;
}

.enterprise-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 89, 157, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.enterprise-badge strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 3px;
}

.enterprise-badge span {
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 26px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-section {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

