/* ── HERO ── */
.hero {
  padding: 140px 40px 72px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.6;
  max-width: 420px;
}

/* ── PLANS ── */
.plans-wrap {
  padding: 0 40px 72px;
  max-width: 960px;
  margin: 0 auto;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 16px;
}
.plan-badge-placeholder { height: 22px; margin-bottom: 16px; }
.plan-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}
.price-amount {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.price-suffix {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.plan-equiv {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  min-height: 18px;
}
.plan-equiv strong { color: #22a15a; font-weight: 600; }
.plan-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.55;
  margin-bottom: 20px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--sub);
  line-height: 1.45;
}
.plan-features li::before {
  content: '✓';
  color: #22a15a;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.15s, opacity 0.15s;
  margin-top: auto;
}
.plan-cta:hover { transform: translateY(-1px); opacity: 0.88; }
.plan-cta--primary { background: var(--ink); color: #fff; }
.plan-cta--accent  { background: var(--accent); color: #fff; }
.plan-cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.plan-cta--ghost:hover { border-color: var(--ink); opacity: 1; }
.free-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.free-note a { color: var(--ink); font-weight: 600; text-decoration: none; }
.free-note a:hover { color: var(--accent); }

/* ── COMPARISON TABLE ── */
.compare {
  padding: 72px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th {
  padding: 16px 20px;
  text-align: left;
  background: #fff;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}
thead th:not(:first-child) { text-align: center; }
thead th.th-featured { color: var(--accent); }
tbody tr { border-bottom: 1px solid var(--line); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) td { background: #fdfdfc; }
td { padding: 13px 20px; color: var(--sub); vertical-align: middle; }
td:not(:first-child) { text-align: center; }
td:first-child { color: var(--ink); font-weight: 500; }
.check { color: #22a15a; font-size: 15px; }
.cross { color: #c8c5bf; font-size: 15px; }
.val { color: var(--ink); font-weight: 600; font-size: 12px; }
.val-muted { color: var(--muted); font-size: 12px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 24px 40px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }
.back {
  font-size: 13px;
  color: var(--sub);
  text-decoration: none;
  font-weight: 500;
}
.back:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 14px 20px; }
  .hero { padding: 120px 20px 52px; }
  .plans-wrap { padding: 0 20px 56px; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .compare { padding: 56px 20px; }
  table { font-size: 12px; }
  td, thead th { padding: 11px 14px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
