/* ── PRICING HERO ── */
.pricing-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
  text-align: center;
}

.pricing-hero .eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}

.pricing-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pricing-hero p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 520px;
  margin: 0 auto;
}

/* ── PRICING CARD ── */
.pricing-section {
  padding: 5rem 0;
  background: var(--paper);
}

.pricing-card-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.pricing-plan-desc {
  font-size: 0.9rem;
  color: var(--ink-mid);
  margin-bottom: 2rem;
}

.pricing-amount        { margin-bottom: 0.35rem; }

.pricing-amount .currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-mid);
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
}

.pricing-amount .number {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--ink);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-left: 0.25rem;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 2rem;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.pricing-includes-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-feature-list li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.pricing-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 500;
  font-size: 0.85rem;
}

/* ── STORAGE CARD ── */
.storage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.storage-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.storage-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.storage-rate {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.storage-rate-label  { font-size: 0.875rem; color: var(--ink-mid); }
.storage-rate-amount { font-weight: 500; font-size: 1rem; color: var(--ink); }

/* ── COMPARISON TABLE ── */
.comparison-section {
  padding: 5rem 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.comparison-table th {
  text-align: left;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
  color: var(--ink-mid);
}

.comparison-table th:not(:first-child) { text-align: center; }

.comparison-table th.highlight {
  color: var(--green);
  background: var(--green-light);
  border-radius: 6px 6px 0 0;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.comparison-table td:not(:first-child) { text-align: center; }

.comparison-table td.highlight {
  background: rgba(232, 245, 238, 0.4);
  font-weight: 500;
  color: var(--green);
}

.comparison-table .check { color: var(--green-mid); font-weight: 500; }
.comparison-table .cross { color: var(--ink-faint); }

/* ── FAQ ── */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  margin-top: 2.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── PRICING CTA ── */
.pricing-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.pricing-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.pricing-cta p  { color: var(--ink-mid); max-width: 440px; margin: 0 auto 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .pricing-card-wrap                    { grid-template-columns: 1fr; }
  .faq-grid                             { grid-template-columns: 1fr; gap: 1.5rem; }
  .comparison-table                     { font-size: 0.8rem; }
  .comparison-table td,
  .comparison-table th                  { padding: 0.6rem 0.5rem; }
}
