/* Pricing 2 — hybrid Linear × Easygenerator layout */
:root {
  --p2-rule: #e7e5e2;
  --p2-muted: #6b6b6b;
  --p2-ink: #1a1a1a;
  --p2-warm: #f5f3ef;
  --p2-warm-deep: #eeebe4;
  --p2-shadow: 0 2px 8px rgba(16, 16, 18, 0.06);
  --p2-shadow-hover: 0 10px 32px rgba(16, 16, 18, 0.1);
}

.p2-page {
  background: #fff;
  color: var(--p2-ink);
  overflow-x: clip;
}

.p2-page main {
  background: #fff;
}

.p2-hero {
  padding: 40px 24px 28px;
  text-align: center;
  background: #fff;
}

@media (min-width: 768px) {
  .p2-hero {
    padding: 56px 24px 36px;
  }
}

.p2-hero h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p2-hero h1 {
    font-size: 48px;
  }
}

.p2-hero > p {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--p2-muted);
}

@media (min-width: 768px) {
  .p2-hero > p {
    font-size: 17px;
    margin-top: 16px;
  }
}

.p2-cards-band {
  background: #fff;
  padding-bottom: 56px;
}

.p2-cards {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4px 24px 0;
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .p2-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

.p2-card {
  position: relative;
  border: 1px solid rgba(16, 16, 18, 0.08);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--p2-shadow);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.p2-card:hover {
  border-color: rgba(16, 16, 18, 0.14);
  box-shadow: var(--p2-shadow-hover);
  transform: translateY(-3px);
}

.p2-card.is-popular {
  background: var(--p2-ink);
  color: #fff;
  border-color: var(--p2-ink);
  box-shadow: var(--p2-shadow);
}

.p2-card.is-popular:hover {
  box-shadow: var(--p2-shadow-hover);
}

.p2-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p2-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.p2-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--p2-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.p2-card.is-popular .p2-card-label {
  color: #fff;
}

.p2-card-title {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.p2-card-desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--p2-muted);
  min-height: 0;
}

.p2-card.is-popular .p2-card-title {
  color: #fff;
}

.p2-card.is-popular .p2-card-desc {
  color: rgba(255, 255, 255, 0.72);
}

.p2-card-price {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.p2-card-price strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.p2-cards-note {
  max-width: 1120px;
  margin: 16px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 14px;
  color: var(--p2-muted);
}

.p2-card-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.p2-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0 0 14px;
}

.p2-feat:last-child {
  padding-bottom: 0;
}

.p2-feat-ic {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--p2-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p2-ink);
}

.p2-card.is-popular .p2-feat-ic {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.p2-feat-ic svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p2-feat span:last-child {
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

.p2-card.is-popular .p2-feat span:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.p2-card-role {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #faf9f7;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--p2-ink);
}

.p2-card.is-popular .p2-card-role {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.p2-card-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.p2-btn:hover {
  opacity: 0.88;
}

.p2-btn-primary {
  background: var(--p2-ink);
  color: #fff;
}

.p2-btn-primary:hover {
  opacity: 1;
  background: #000;
}

.p2-card.is-popular .p2-btn-primary {
  background: #fff;
  color: var(--p2-ink);
  box-shadow: none;
}

.p2-card.is-popular .p2-btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.p2-btn-ghost {
  background: transparent;
  color: var(--p2-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px;
}

.p2-card.is-popular .p2-btn-ghost {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .p2-card {
    transition: none;
  }

  .p2-card:hover {
    transform: none;
  }
}

.p2-incluso {
  background: #f9f9fa;
}

.p2-incluso-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p2-incluso-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.p2-incluso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p2-incluso-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.p2-incluso-item svg {
  flex: none;
  width: 22px;
  height: 22px;
}

.p2-incluso-item span {
  font-size: 14px;
  line-height: 1.45;
  text-wrap: pretty;
}

.p2-incluso-item:nth-child(4n + 1) {
  padding: 22px 16px 22px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.p2-incluso-item:nth-child(4n + 2),
.p2-incluso-item:nth-child(4n + 3) {
  padding: 22px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.p2-incluso-item:nth-child(4n) {
  padding: 22px 0 22px 16px;
}

@media (max-width: 960px) {
  .p2-incluso-inner {
    padding: 56px 24px;
    gap: 24px;
  }

  .p2-incluso .pricing-incluso-grid > li {
    padding: 20px 12px 20px 0 !important;
  }

  .p2-incluso .pricing-incluso-grid > li:nth-child(odd) {
    padding-right: 12px !important;
  }

  .p2-incluso .pricing-incluso-grid > li:nth-child(even) {
    padding-left: 12px !important;
    padding-right: 0 !important;
  }

  .p2-incluso .pricing-incluso-grid > li > span {
    font-size: 14px !important;
  }
}

.p2-compare {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.p2-compare-head {
  text-align: center;
  margin-bottom: 32px;
}

.p2-compare-head h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.p2-compare-head p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--p2-muted);
}

.p2-plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.p2-plan-tab {
  border: 1px solid var(--p2-rule);
  background: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--p2-muted);
  transition: all 0.2s ease;
}

.p2-plan-tab.is-active {
  background: var(--p2-ink);
  border-color: var(--p2-ink);
  color: #fff;
}

.p2-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--p2-rule);
  border-radius: 16px;
  background: #fff;
}

.p2-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 16px;
  table-layout: fixed;
}

.p2-table th,
.p2-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--p2-rule);
  vertical-align: top;
  line-height: 1.55;
}

.p2-table thead th {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--p2-ink);
  background: #fff;
  vertical-align: bottom;
}

.p2-table thead th:first-child {
  width: 24%;
  border-bottom: 1px solid var(--p2-rule);
}

.p2-table thead th:not(:first-child) {
  border-bottom: 1px solid var(--p2-rule) !important;
}

.p2-table tbody th {
  font-weight: 600;
  color: var(--p2-ink);
  width: 24%;
  font-size: 15px;
  border-right: 1px solid var(--p2-rule);
}

.p2-table td {
  color: var(--p2-ink);
  width: 25.33%;
}

.p2-table td.col-shape,
.p2-table thead th.col-shape {
  border-left: 1px solid var(--p2-rule);
}

.p2-table tbody td.col-shape,
.p2-table tbody td.col-serve {
  background: #fff;
}

.p2-table tbody td.col-hive {
  background: #f6f5f4;
}

.p2-table thead th.col-hive {
  background: #f6f5f4;
  color: var(--p2-ink);
}

.p2-table td.col-hive,
.p2-table thead th.col-hive {
  border-left: 1px solid var(--p2-rule);
  border-right: 1px solid var(--p2-rule);
}

.p2-table tr:last-child th,
.p2-table tr:last-child td {
  border-bottom: none;
}

.p2-faq {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.p2-faq h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 24px;
}

.p2-faq-list {
  border-top: 1px solid var(--p2-rule);
}

.p2-faq-item {
  border-bottom: 1px solid var(--p2-rule);
}

.p2-faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--p2-ink);
}

.p2-faq-ic {
  flex: none;
  width: 16px;
  height: 16px;
  position: relative;
}

.p2-faq-ic::before,
.p2-faq-ic::after {
  content: "";
  position: absolute;
  background: var(--p2-ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p2-faq-ic::before {
  width: 14px;
  height: 1.5px;
}

.p2-faq-ic::after {
  width: 1.5px;
  height: 14px;
  transition: transform 0.25s ease;
}

.p2-faq-item.open .p2-faq-ic::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.p2-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.p2-faq-item.open .p2-faq-a {
  max-height: 400px;
}

.p2-faq-a p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--p2-muted);
}

.p2-cta {
  text-align: center;
  padding: 64px 24px 0;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.p2-cta h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p2-cta h2 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .p2-cta h2 {
    font-size: 64px;
  }
}

.p2-cta-sub {
  margin: 24px auto 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.p2-cta .p2-btn {
  margin-top: 28px;
  background: #fff;
  color: var(--p2-ink);
  padding: 10px 16px;
  font-size: 16px;
  display: inline-flex;
}

@media (min-width: 768px) {
  .p2-cta .p2-btn {
    font-size: 18px;
    padding: 15px 26px;
  }
}

.p2-cta-cards {
  margin-top: 48px;
}

.p2-cta-cards img {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 900px) {
  .p2-cta-cards img {
    max-width: 840px;
  }
}

@media (max-width: 899px) {
  .p2-table {
    min-width: 0;
  }

  .p2-table-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .p2-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .p2-table tbody,
  .p2-table tbody tr,
  .p2-table tbody th,
  .p2-table tbody td {
    display: block;
    width: 100%;
  }

  .p2-table tbody tr {
    margin-bottom: 14px;
    border: 1px solid var(--p2-rule);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }

  .p2-table tbody th {
    background: #faf9f7;
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid var(--p2-rule);
    border-right: none;
  }

  .p2-table tbody td {
    padding: 14px 20px 16px;
    border-bottom: 1px solid var(--p2-rule);
    border-right: none;
    color: var(--p2-ink);
    background: #fff;
    line-height: 1.5;
  }

  .p2-table tbody td:last-child {
    border-bottom: none;
  }

  .p2-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
  }

  .p2-table tbody td.col-hive {
    background: #f6f5f4;
    color: var(--p2-ink);
  }

  .p2-table tbody td.col-shape,
  .p2-table tbody td.col-serve {
    background: #fff;
  }
}

.p2-feat--placeholder{opacity:.55}
.p2-feat--placeholder span:last-child{font-style:italic}


/* Shared CSM — slim strip under cards, same width as the 3 cards */
.p2-shared-support {
  /* Align with .p2-cards content: max 1120 with 24px side padding */
  max-width: calc(1120px - 48px);
  width: calc(100% - 48px);
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: #F7F9FC;
  box-sizing: border-box;
  text-align: left;
}
@media (min-width: 768px) {
  .p2-shared-support {
    margin-top: 24px;
    padding: 16px 22px;
    gap: 16px;
  }
}
.p2-shared-support-img {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .p2-shared-support-img {
    width: 52px;
    height: 52px;
  }
}
.p2-shared-support-copy {
  min-width: 0;
  flex: 1;
}
.p2-shared-support-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted, #6b6b6b);
  line-height: 1.2;
}
.p2-shared-support-title {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink, #1a1a1a);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .p2-shared-support-title {
    font-size: 17px;
  }
}
.p2-shared-support-body {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft, #4a4a4a);
}
@media (min-width: 768px) {
  .p2-shared-support-body {
    font-size: 15px;
  }
}
.p2-shared-support-body strong {
  color: var(--ink, #1a1a1a);
  font-weight: 600;
}
