/* Simply Ai — Pricing section */

.pricing { padding: 140px 0; position: relative; }
.pricing-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.pricing-head h2, .pricing-head .lead { margin-top: 18px; }
.pricing-head em { font-style: italic; color: var(--clay); }

.price-toggle {
  display: inline-flex;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 2px;
  margin-top: 28px;
}
.pt-opt {
  background: transparent;
  border: 0;
  font-family: inherit;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--dusk);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.pt-opt.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(26,24,22,0.06);
}
.pt-save {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--clay);
  letter-spacing: 0.04em;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s var(--ease);
}
.price-card:hover { border-color: var(--line-strong); }
.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #E7DFCC;
}
.price-card.featured .t-dusk, .price-card.featured .small.t-muted { color: #A69B83; }
.pc-ribbon {
  position: absolute;
  top: 18px; right: 24px;
  background: var(--sakura);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.pc-head { margin-bottom: 22px; }
.pc-name { margin-top: 4px; margin-bottom: 8px; }
.price-card.featured .pc-name { color: #FBF3E2; }
.pc-desc-featured { font-size: 13px; color: #C4BAA4; max-width: 40ch; }

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
}
.pc-currency { font-size: 18px; color: var(--stone); }
.pc-amount {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.price-card.featured .pc-amount { color: #FBF3E2; }
.price-card.featured .pc-currency { color: #A69B83; }
.pc-period { font-size: 13px; color: var(--stone); margin-left: 4px; }
.price-card.featured .pc-period { color: #A69B83; }
.pc-sub { margin-top: 6px; }
.pc-sub-featured { color: #A69B83; margin-top: 6px; font-size: 13px; }

.pc-cta {
  margin: 22px 0 26px;
  align-self: flex-start;
}
.price-card.featured .pc-cta.btn-ghost { color: #FBF3E2; border-color: rgba(255,255,255,0.2); }

.pc-includes { margin-top: auto; padding-top: 22px; border-top: 1px dashed var(--line); }
.price-card.featured .pc-includes { border-top-color: rgba(255,255,255,0.1); }
.pc-includes-head { margin-bottom: 12px; }
.pc-includes ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pc-includes li {
  font-size: 13.5px;
  color: var(--dusk);
  padding-left: 22px;
  position: relative;
}
.pc-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 1px;
  background: var(--clay);
}
.price-card.featured .pc-includes li { color: #C4BAA4; }
.price-card.featured .pc-includes li::before { background: var(--sakura); }

/* Add-ons */
.addons {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
}
.addons-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.addon {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .25s var(--ease);
}
.addon:hover { border-color: var(--line-strong); }
.addon-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.addon-price { color: var(--clay); font-size: 13px; white-space: nowrap; }
.addon h4 { font-size: 15px; }

/* FAQ */
.pricing-faq { margin-top: 40px; }
.pf-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.pf-q h3 { margin-top: 14px; max-width: 14ch; }
.pf-a { display: flex; flex-direction: column; }
.pf-a details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
}
.pf-a details:last-child { border-bottom: 1px solid var(--line); }
.pf-a summary {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.pf-a summary::-webkit-details-marker { display: none; }
.pf-a summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--stone);
  transition: transform .25s var(--ease);
}
.pf-a details[open] summary::after { content: '–'; }
.pf-a details p {
  margin-top: 12px;
  color: var(--dusk);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}

@media (max-width: 1000px) {
  .price-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .pf-row { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .addons-grid { grid-template-columns: 1fr; }
}
