/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Page */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #222;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Header */
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.pricing-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 16px;
  color: #666;
}

/* Cards container */
.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Card */
.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px 30px;
  width: 320px;
  border: 1px solid #e6e8eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Price */
.price {
  font-size: 44px;
  font-weight: 700;
  margin: 12px 0 18px;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-left: 4px;
}

/* Button */
.pricing-action {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 22px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.pricing-action:hover {
  background: #000;
  transform: translateY(-1px);
}

/* Included label */
.included-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

/* Feature list */
.pricing-card ul {
  list-style: none;
}

.pricing-card li {
  font-size: 14px;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* Featured (Pro) */
.pricing-card.featured {
  border: 2px solid #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Recommended badge */
.recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .recommended {
    position: static;
    margin-bottom: 12px;
  }
}

/* Header */
.app-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: #ffffff;
  border-bottom: 1px solid #e6e8eb;
  z-index: 100;
}

/* Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 28px;
  height: 28px;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* Center nav */
.header-center {
  display: flex;
  gap: 28px;
}

.header-center a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  position: relative;
  padding: 4px 0;
}

.header-center a.active {
  color: #111;
}

.header-center a:hover {
  color: #444;
}

.header-center a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.2s ease;
}

.header-center a:hover::after {
  width: 100%;
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
}

.app-button {
  background: #111;
  color: #fff;
  border: none;
	text-decoration: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.app-button:hover {
  background: #000;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .header-center {
    display: none;
  }
}

.created-by {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

.created-by a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.created-by a:hover {
  text-decoration: underline;
  color: #000;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: #f6f7f9;
  border-top: 1px solid #e6e8eb;
  font-size: 13px;
  color: #666;
  margin-top: 100px;
}

.site-footer a {
  color: #111;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #000;
  text-decoration: underline;
}