.plans-hero {
  background: var(--dark-1);
  padding: 120px 0 80px;
  text-align: center;
}

.plans-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.plans-hero .subtext {
  color: var(--tw-2);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 24px;
}

.billing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 12px;
}

.t-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--tw-2);
  cursor: pointer;
  transition: all 0.15s;
}

.t-btn.active {
  background: var(--grad);
  color: white;
}

.currency-note {
  text-align: center;
  font-size: 13px;
  color: var(--tw-3);
}

.plans-content {
  background: #fafafa;
  padding: 80px 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border: 1px var(--border-light) solid;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}

.plan-card.featured {
  border: 2px solid var(--p1);
  box-shadow: 0 0 0 1px rgba(91,46,191,0.2), 0 8px 40px rgba(91,46,191,0.15);
}

.plan-card.agency {
  border-top: 3px solid #F59E0B;
}

.floating-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  letter-spacing: 0.06em;
}

.plan-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tl-2);
  margin-bottom: 8px;
}

.plan-price {
  margin-bottom: 4px;
}

.price-val {
  font-size: 40px;
  font-weight: 800;
  color: var(--tl-0);
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 15px;
  color: var(--tl-2);
}

.price-note {
  font-size: 12px;
  color: var(--tl-2);
  margin-bottom: 12px;
}

.plan-desc {
  font-size: 14px;
  color: var(--tl-1);
  margin-bottom: 20px;
}

.plan-sep {
  height: 1px;
  background: var(--border-light);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
}

.plan-features li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: var(--tl-1);
}

.plan-features li.check::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
}

.plan-features li.cross::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--border-light);
}

.plan-card .btn-primary,
.plan-card .btn-ghost-light {
  width: 100%;
  margin-bottom: 10px;
}

.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--tl-2);
}

.comparison {
  background: var(--light-1);
  padding: 64px 0;
}

.comparison h2 {
  text-align: center;
  color: var(--tl-0);
  margin-bottom: 32px;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px var(--border-light) solid;
}

.comparison-table th {
  background: var(--light-1);
  font-weight: 600;
  font-size: 14px;
  color: var(--tl-0);
}

.comparison-table td {
  font-size: 14px;
  color: var(--tl-1);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--tl-0);
}

.comparison-table th:first-child {
  position: sticky;
  left: 0;
  background: var(--light-1);
}

.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: white;
}

.payment-trust {
  background: #fafafa;
  padding: 40px 0;
  text-align: center;
}

.payment-trust p {
  font-size: 14px;
  color: var(--tl-2);
  margin-bottom: 8px;
}

.payment-text {
  font-size: 14px;
  color: var(--tl-1);
  font-weight: 500;
}

.plans-faq {
  background: #fafafa;
  padding: 80px 0;
}

.plans-faq h2 {
  text-align: center;
  color: var(--tl-0);
  margin-bottom: 48px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.acc-item {
  border-bottom: 1px var(--border-light) solid;
}

.acc-head {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--tl-0);
  font-size: 15px;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--tl-2);
  font-size: 14px;
  line-height: 1.6;
}

.acc-item.open .acc-body {
  max-height: 400px;
  padding-bottom: 16px;
}

.enterprise {
  background: var(--dark-1);
  padding: 64px 0;
}

.enterprise-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.enterprise-card h3 {
  color: white;
  margin-bottom: 8px;
}

.enterprise-card p {
  color: var(--tw-2);
  margin-bottom: 24px;
}

.btn-ghost-white {
  background: transparent;
  border: 1.5px solid white;
  color: white;
  border-radius: var(--r-pill);
  padding: 0 24px;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
}

.plans-cta {
  background: #fafafa;
  padding: 80px 0;
  text-align: center;
}

.plans-cta h2 {
  color: var(--tl-0);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .enterprise-card {
    padding: 32px 24px;
  }
}
