/* =================================================================
   Willow — pricing page

   Shared by pricing.html and nl/pricing.html. Lifted out of their inline
   <style> blocks so both languages load one cacheable file and
   cannot drift apart again.
   ================================================================= */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--rule);
  margin-top: 32px;
}
.billing-toggle button {
  padding: calc(8px + var(--optical-text)) 16px calc(8px - var(--optical-text));
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink-2);
}
.billing-toggle button.active { background: var(--ink); color: rgb(255, 255, 255); }
.billing-toggle .save { font-family: var(--mono); font-size: var(--t-micro); font-weight: 600; padding: calc(3px + var(--optical-text)) 8px calc(3px - var(--optical-text)); border-radius: 4px; background: var(--punch-yellow); color: var(--blue-deep); margin-left: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.plan {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.plan-head .nm {
  font-family: var(--mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.plan-head h3 { font-size: 36px; letter-spacing: -0.022em; margin-top: 8px; }
.plan-head p { font-size: 14px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }
.plan-head p strong { color: var(--ink); font-weight: 600; }

.plan-price {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.plan-price .amt {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-price .amt .cur { font-size: 0.5em; vertical-align: baseline; margin-right: 3px; color: var(--ink-3); font-weight: 500; }
.plan-price .per { font-size: 13px; color: var(--ink-3); margin-top: 6px; font-family: var(--mono); letter-spacing: 0.02em; }

.plan ul.feat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan ul.feat-list li { font-size: 14px; line-height: 1.45; color: var(--ink-2); padding-left: 22px; position: relative; }
.plan ul.feat-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 600; font-size: 13px; }
.plan ul.feat-list li.muted { color: var(--ink-4); }
.plan ul.feat-list li.muted::before { color: var(--ink-4); content: "—"; }

.plan .cta-btn {
  margin-top: auto;
  padding: calc(12px + var(--optical-text)) 18px calc(12px - var(--optical-text));
  border-radius: var(--r-pill);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.plan .cta-btn { background: var(--ink); color: var(--cream); }
.plan .cta-btn:hover { background: var(--blue); color: var(--white); }

/* Compare table */
.compare {
  margin-top: 96px;
}
.compare-wrap { width: 100%; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  vertical-align: middle;
}
.compare-table th {
  background: var(--paper);
  font-family: var(--mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 500;
}
.compare-table th.plan-col { font-family: var(--sans); font-size: 16px; color: var(--ink); text-transform: none; letter-spacing: -0.01em; font-weight: 600; }
.compare-table th.plan-col small { font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-3); display:block; font-weight:500; letter-spacing: 0.06em; margin-top: 2px; }
.compare-table tr.section td { background: var(--paper); font-family: var(--mono); font-size: var(--t-micro); color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 20px; }
.compare-table td.feat { font-weight: 500; color: var(--ink); width: 40%; }
.compare-table td.feat small { display:block; font-weight: 400; color: var(--ink-3); margin-top: 4px; font-size: 12px; }
.compare-table td.val { text-align: center; color: var(--ink-2); }
.compare-table td.val.yes::before { content: "✓"; color: var(--blue); font-size: 16px; font-weight: 600; }
.compare-table td.val.no::before { content: "—"; color: var(--ink-4); }

/* FAQ */
.faq { padding: 96px 0; }
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; max-width: 880px; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.012em;
  gap: 32px;
}
.faq-q .indic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .indic { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.2s;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }

/* Outcomes block — "what you get every month" */
.outcomes {
  margin-top: 48px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
}
.outcomes-lbl {
  font-family: var(--mono); font-size: var(--t-micro);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); display: block; margin-bottom: 24px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.outcome {
  padding: 24px 36px 0 36px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.outcome:nth-child(4n) { border-right: 0; padding-right: 0; }
.outcome:first-child { padding-left: 0; }
.outcome .o-n {
  font-family: var(--mono); font-size: var(--t-micro);
  color: var(--blue); letter-spacing: 0.06em;
}
.outcome h4 {
  font-size: 18px; letter-spacing: -0.012em;
  line-height: 1.2;
}
.outcome p {
  font-size: 13px; color: var(--ink-2); line-height: 1.5;
  margin-top: 4px;
}

/* Willow vs Agency contrast */
.agency-vs {
  padding: 96px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.agency-col {
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.agency-col.before { background: var(--white); border: 1px solid var(--rule); }
.agency-col.after { background: var(--ink); color: var(--cream); border: 0; }
.agency-col .label {
  font-family: var(--mono); font-size: var(--t-micro);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.agency-col.before .label { color: var(--ink-3); }
.agency-col.after .label { color: var(--blue-mid); }
.agency-col h3 {
  font-size: 30px; letter-spacing: -0.018em; line-height: 1.1;
}
.agency-col.after h3 { color: var(--cream); }
.agency-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.agency-col li {
  font-size: 15px; line-height: 1.5;
  padding-left: 28px; position: relative;
}
.agency-col.before li { color: var(--ink-2); }
.agency-col.after li { color: var(--on-dark); }
.agency-col.before li::before {
  content: "×";
  position: absolute; left: 6px; top: -1px;
  color: var(--punch-red); font-weight: 600; font-size: 18px;
}
.agency-col.after li::before {
  content: "✓";
  position: absolute; left: 4px; top: 0;
  color: var(--blue-mid); font-weight: 600; font-size: 14px;
}
.agency-col li strong {
  color: var(--ink); font-weight: 600;
}
.agency-col.after li strong { color: var(--cream); font-weight: 600; }

@media (max-width: 1100px) {
  .price-grid { grid-template-columns: 1fr; }
  /* table scrolls horizontally inside its wrapper rather than stretching the page */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--rule); border-radius: var(--r-lg); }
  .compare-table { font-size: 13px; min-width: 580px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome { border-right: 0; padding: 16px 0; border-top: 1px solid var(--rule); }
  .outcome:nth-child(2n) { border-right: 0; }
  .agency-grid { grid-template-columns: 1fr; }
  .agency-col { padding: 28px; }
  .agency-col h3 { font-size: 26px; }
}
