body { overflow-x: hidden; }

/* ============================================================
   HERO + CURRENCY SWITCHER
   ============================================================ */
.pricing-hero .hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px; flex-wrap: wrap;
}
.currency-switch {
  display: inline-flex; align-items: center;
  background: var(--neutral-02); border: 1px solid var(--neutral-03);
  border-radius: 999px; padding: 4px;
}
.currency-switch button {
  font-family: var(--font-inter); font-weight: 600; font-size: 14px;
  color: var(--neutral-06); background: transparent; border: none;
  padding: 8px 18px; border-radius: 999px; cursor: pointer;
  transition: all 0.18s ease;
}
.currency-switch button.is-active { background: var(--neutral-07); color: var(--neutral-01); }
.currency-note { font-size: 14px; color: var(--neutral-06); }

/* ============================================================
   PLAN CARDS — Standard vs Enterprise
   ============================================================ */
.plan-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.plan-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--neutral-03); border-radius: 16px; padding: 40px;
  background: var(--neutral-01);
}
.plan-card--dark { background: var(--neutral-08); border-color: var(--neutral-08); color: var(--neutral-01); }

.plan-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.plan-name {
  font-family: var(--font-inter); font-weight: 600; font-size: 22px;
  letter-spacing: -0.5px; color: var(--neutral-07);
}
.plan-card--dark .plan-name { color: var(--neutral-01); }
.plan-flag {
  font-family: var(--font-dm); font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--primary); background: var(--primary-light);
  padding: 3px 9px; border-radius: 20px;
}
.plan-tagline {
  font-family: var(--font-inter); font-weight: 500; font-size: 15px; line-height: 22px;
  color: var(--neutral-06); margin-bottom: 24px;
}
.plan-card--dark .plan-tagline { color: var(--neutral-04); }

.plan-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.plan-price-amt {
  font-family: var(--font-inter); font-weight: 600; font-size: 48px;
  letter-spacing: -2px; line-height: 1; color: var(--neutral-07);
}
.plan-card--dark .plan-price-amt { color: var(--neutral-01); }
.plan-price-unit { font-size: 15px; font-weight: 500; color: var(--neutral-06); }
.plan-card--dark .plan-price-unit { color: var(--neutral-04); }
.plan-sub {
  font-family: var(--font-inter); font-weight: 500; font-size: 14px; line-height: 21px;
  color: var(--neutral-06); margin-bottom: 28px;
}
.plan-card--dark .plan-sub { color: var(--neutral-04); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.plan-features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-inter); font-weight: 500; font-size: 15px; line-height: 22px;
  color: var(--neutral-07);
}
.plan-card--dark .plan-features li { color: var(--neutral-03); }
.plan-features svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--neutral-07); border-radius: 50%; padding: 4px;
}
.plan-card--dark .plan-features svg { background: var(--primary); }
.plan-features li strong { font-weight: 700; }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; }

/* ============================================================
   PLATFORM-FEE TIER TABLE
   ============================================================ */
.tier-table {
  max-width: 780px; margin: 0 auto;
  border: 1px solid var(--neutral-03); border-radius: 12px; overflow: hidden;
}
.tier-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px; border-bottom: 1px solid var(--neutral-03);
}
.tier-row:last-child { border-bottom: none; }
.tier-row.tier-head {
  background: var(--neutral-02);
  font-family: var(--font-dm); font-weight: 700; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--neutral-06);
}
.tier-row.tier-free { background: var(--primary-light); }
.tier-band { font-family: var(--font-inter); font-weight: 500; font-size: 16px; color: var(--neutral-07); }
.tier-rate { font-family: var(--font-inter); font-weight: 700; font-size: 16px; color: var(--neutral-07); }
.tier-row.tier-free .tier-rate, .tier-row.tier-free .tier-band { color: var(--primary); font-weight: 700; }
.tier-note { max-width: 780px; margin: 20px auto 0; font-size: 13px; line-height: 20px; color: var(--neutral-06); text-align: center; }

/* ============================================================
   PARTNER vs THIRD-PARTY MODEL EXPLAINER
   ============================================================ */
.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.model-card {
  border: 1px solid var(--neutral-03); border-radius: 12px; padding: 32px;
  background: var(--neutral-01);
}
.model-card h3 { margin-bottom: 8px; }
.model-card .body-16 { color: var(--neutral-06); margin-bottom: 20px; }
.model-rate {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-inter); font-weight: 600; font-size: 24px; letter-spacing: -0.5px;
  color: var(--neutral-07);
}
.model-rate small { font-size: 14px; font-weight: 500; color: var(--neutral-06); }
.model-providers { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.model-chip {
  font-family: var(--font-inter); font-weight: 600; font-size: 13px; color: var(--neutral-06);
  background: var(--neutral-02); border: 1px solid var(--neutral-03);
  padding: 6px 12px; border-radius: 20px;
}

/* ============================================================
   PRODUCTS BY CATEGORY (capabilities — mostly Included)
   ============================================================ */
.price-category { margin-bottom: 56px; }
.price-category:last-child { margin-bottom: 0; }
.price-cat-head {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 18px; margin-bottom: 28px;
  border-bottom: 1px solid var(--neutral-03); flex-wrap: wrap;
}
.price-cat-label {
  font-family: var(--font-dm); font-weight: 700; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--primary);
}
.price-cat-desc { font-size: 15px; color: var(--neutral-06); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  display: flex; flex-direction: column;
  background: var(--neutral-01); border: 1px solid var(--neutral-03);
  border-radius: 12px; padding: 26px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { border-color: var(--neutral-04); box-shadow: 0 8px 30px rgba(16,15,13,0.06); }
.price-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.price-name {
  font-family: var(--font-inter); font-weight: 600; font-size: 18px;
  letter-spacing: -0.3px; color: var(--neutral-07);
}
.price-badge {
  font-family: var(--font-dm); font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--primary); background: var(--primary-light);
  padding: 3px 8px; border-radius: 20px;
}
.price-desc {
  font-family: var(--font-inter); font-weight: 500; font-size: 14px; line-height: 21px;
  color: var(--neutral-06); margin-bottom: 20px; flex: 1;
}
.price-tag {
  display: inline-flex; align-items: baseline; gap: 6px; margin-top: auto;
  font-family: var(--font-inter); font-weight: 700; font-size: 15px; color: var(--neutral-07);
}
.price-tag.is-included { color: #2E7D32; }
.price-tag.is-included::before {
  content: "\2713"; font-size: 12px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(46,125,50,0.12); color: #2E7D32;
  display: inline-flex; align-items: center; justify-content: center;
}
.price-tag small { font-size: 13px; font-weight: 500; color: var(--neutral-06); }

/* ============================================================
   INCLUDED AT NO EXTRA COST
   ============================================================ */
.included-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 32px;
  max-width: 900px; margin: 0 auto;
}
.included-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-inter); font-weight: 500; font-size: 15px; color: var(--neutral-07);
}
.included-item svg { width: 22px; height: 22px; flex-shrink: 0; background: var(--primary); border-radius: 50%; padding: 4px; }

/* ============================================================
   FAQ  (on dark section)
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-family: var(--font-inter); font-weight: 600; font-size: 18px; line-height: 28px; color: white; margin-bottom: 8px; }
.faq-answer { font-family: var(--font-inter); font-weight: 500; font-size: 16px; line-height: 24px; color: var(--neutral-03); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .plan-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .price-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .tier-row { padding: 16px 20px; }
  .plan-card, .model-card { padding: 28px; }
}
