/* === HERO PRICE === */
.hero-price {
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 99, 235, 0.1), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(124, 58, 237, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  justify-content: center;
  margin-bottom: 28px;
}

.hero-badges {
  justify-content: center;
}

.hero-price h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.03;
  letter-spacing: -3.2px;
  font-weight: 850;
  margin-bottom: 22px;
}

.hero-price p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

/* === BUTTONS (page-specific) === */
.btn-blue {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-blue:hover {
  background: var(--primary-dark);
}

/* === PRICE GRID === */
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  transition: 0.18s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.price-card.hot {
  border-color: #bfdbfe;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12);
}

.hot-tag {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.price-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.price-sub {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.price-value {
  margin-bottom: 18px;
}

.price-value strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.5px;
}

.price-value span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: grid;
  gap: 9px;
  margin-top: auto;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
}

.price-meta li {
  display: flex;
  gap: 8px;
}

.price-meta li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

/* === FEATURE PANEL === */
.feature-panel {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-panel h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.feature-list i {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 16px;
}

/* === TRAFFIC GRID === */
.traffic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.traffic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: 0.18s ease;
}

.traffic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.traffic-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.traffic-card h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.traffic-price {
  margin-bottom: 12px;
}

.traffic-price strong {
  font-size: 32px;
  letter-spacing: -1.2px;
}

.traffic-old {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 22px;
}

.traffic-old del {
  color: #94a3b8;
}

.traffic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.traffic-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.traffic-tags .discount {
  background: var(--orange-soft);
  color: #c2410c;
  border-color: #fed7aa;
}

/* === MEMBER GRID === */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.member-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: 0.18s ease;
}

.member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.member-card::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
}

.member-icon {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--purple-soft);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.member-card h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.member-price {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.member-price strong {
  font-size: 36px;
  letter-spacing: -1.2px;
  line-height: 1;
}

.member-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.member-specs {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.member-specs div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.member-specs strong {
  color: var(--text);
}

.member-benefits {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

/* === COMPARE TABLE === */
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

th {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 850;
}

td {
  color: var(--text-soft);
  font-weight: 650;
}

tr:last-child td {
  border-bottom: 0;
}

.table-price {
  color: var(--text);
  font-weight: 900;
}

.table-tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

/* === FAQ === */
.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 850;
}

.faq-question i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: 0.18s ease;
}

.faq-item.open .faq-question i {
  background: var(--primary-soft);
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1180px) {
  .price-grid,
  .traffic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1060px) {
  .feature-list,
  .member-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero-price {
    padding: 56px 0 48px;
  }

  .hero-price h1,
  .section-title {
    letter-spacing: -1.5px;
  }

  .hero-price p,
  .section-desc {
    font-size: 16px;
  }

  .price-grid,
  .traffic-grid,
  .feature-list,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .traffic-card,
  .member-card {
    min-height: auto;
  }
}
