/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease,
              transform 0.12s var(--ease-out-expo),
              box-shadow 0.15s ease;
  letter-spacing: -0.01em;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(13,148,136,0.3), 0 0 0 0 rgba(13,148,136,0.2);
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  background: var(--bg-raised);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

/* Feature card */

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-out-expo);
}

.feature-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(13, 148, 136, 0.14);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Price card */

.price-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* Subtle teal shimmer at top */
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--accent-cta));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.price-header {
  margin-bottom: 24px;
}

.price-badge {
  display: inline-block;
  background: var(--accent-subtle);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.price-amount sup {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 8px;
  color: var(--text-secondary);
}

.price-period {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 24px 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.price-features li svg {
  width: 15px;
  height: 15px;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.12s var(--ease-out-expo), box-shadow 0.15s ease;
  box-shadow: 0 1px 2px rgba(13,148,136,0.3);
}

.btn-buy:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}

.btn-buy:active {
  transform: scale(0.98);
}

.btn-buy-disabled,
.btn-buy-disabled:hover,
.btn-buy-disabled:active {
  background: var(--bg-raised);
  color: var(--text-disabled);
  box-shadow: none;
  transform: none;
  cursor: default;
  pointer-events: none;
}

.price-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-disabled);
  text-align: center;
  line-height: 1.5;
}

/* Stat counter (social proof) */

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}
