/**
 * Booknatic Pricing Page Styles
 * Scoped under .booknatic-pricing to prevent collisions with other pages.
 */

.booknatic-pricing {
  --cr: #E8175D;
  --crd: #C4104A;
  --crt: #FFF0F4;
  --ye: #FFD600;
  --yet: #FFF8CC;
  --wh: #FFFFFF;
  --of: #F9F9F9;
  --ch: #111111;
  --mid: #222222;
  --t1: #1A1A1A;
  --t2: #555555;
  --tm: #888888;
  --bl: #E8E8E8;
  --bm: #D0D0D0;
  --gn: #22C55E;

  font-family: 'Nunito', sans-serif;
}

/* ── BUTTONS ── */
.booknatic-pricing .btn-red {
  display: inline-block;
  background: var(--cr);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 14px rgba(232, 23, 93, 0.35);
  transition: background 200ms, transform 150ms;
  text-decoration: none;
}
.booknatic-pricing .btn-red:hover { background: var(--crd); transform: translateY(-1px); }

.booknatic-pricing .btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--t1);
  border: 2px solid var(--bl);
  border-radius: 9999px;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: border-color 200ms, color 200ms;
  text-decoration: none;
}
.booknatic-pricing .btn-outline:hover { border-color: var(--cr); color: var(--cr); }

/* ── PRICING HERO ── */
.booknatic-pricing .phero {
  padding: 80px 56px 56px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booknatic-pricing .phero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 23, 93, 0.10) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}
.booknatic-pricing .phero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.18) 0%, transparent 70%);
  bottom: -180px;
  right: -80px;
  pointer-events: none;
}
.booknatic-pricing .phero-in { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.booknatic-pricing .phero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--bl);
  border-radius: 9999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--t2);
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.booknatic-pricing .phero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cr);
}
.booknatic-pricing .phero h1 {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1.4px;
  line-height: 1.05;
  color: var(--t1);
  margin-bottom: 18px;
}
.booknatic-pricing .phero h1 .accent { color: var(--cr); }
.booknatic-pricing .phero p.lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--t2);
  line-height: 1.65;
}

/* ── PLAN CARD ── */
.booknatic-pricing .plans {
  padding: 40px 56px 96px;
  background: #fff;
}
.booknatic-pricing .plans-in {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.booknatic-pricing .plan-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--bl);
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--bl);
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.booknatic-pricing .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 48px rgba(232, 23, 93, 0.10), 0 0 0 1px var(--cr);
}
.booknatic-pricing .plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.booknatic-pricing .plan-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 24px;
}
.booknatic-pricing .plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.booknatic-pricing .plan-price {
  font-size: 52px;
  font-weight: 900;
  color: var(--t1);
  letter-spacing: -2px;
  line-height: 1;
}
.booknatic-pricing .plan-per { font-size: 16px; font-weight: 700; color: var(--tm); }
.booknatic-pricing .plan-billing { font-size: 12px; font-weight: 600; color: var(--tm); margin-bottom: 26px; }
.booknatic-pricing .plan-feats { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.booknatic-pricing .plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 11px;
}
.booknatic-pricing .plan-feats li .pf-tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--crt);
  color: var(--cr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  margin-top: 1px;
}
.booknatic-pricing .plan-cta {
  display: block;
  width: 100%;
  background: var(--cr);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 14px rgba(232, 23, 93, 0.35);
  transition: background 200ms, transform 150ms;
  text-align: center;
  text-decoration: none;
}
.booknatic-pricing .plan-cta:hover { background: var(--crd); transform: translateY(-1px); }
.booknatic-pricing .plan-note {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--tm);
  max-width: 540px;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.booknatic-pricing .ptest { padding: 96px 56px; background: #FAF7F2; }
.booknatic-pricing .ptest-in { max-width: 1240px; margin: 0 auto; }
.booknatic-pricing .ptest-head { text-align: center; margin-bottom: 48px; }
.booknatic-pricing .ptest-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.booknatic-pricing .ptest-head h2 .accent { color: var(--cr); }
.booknatic-pricing .ptest-head p {
  font-size: 17px;
  font-weight: 600;
  color: var(--t2);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
.booknatic-pricing .ptest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.booknatic-pricing .ptest-card {
  background: #fff;
  border: 1px solid var(--bl);
  border-radius: 18px;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.booknatic-pricing .ptest-card::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  right: 14px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(232, 23, 93, 0.08);
  line-height: 1;
  font-family: 'Nunito', sans-serif;
  pointer-events: none;
}
.booknatic-pricing .ptest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 18px 40px rgba(0, 0, 0, 0.04);
}
.booknatic-pricing .ptest-stars { font-size: 14px; color: #FFB400; margin-bottom: 10px; letter-spacing: 1px; }
.booknatic-pricing .ptest-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.booknatic-pricing .ptest-au { display: flex; align-items: center; gap: 10px; }
.booknatic-pricing .ptest-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cr);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.booknatic-pricing .ptest-n { font-size: 13px; font-weight: 800; color: var(--t1); }
.booknatic-pricing .ptest-r { font-size: 11px; font-weight: 600; color: var(--tm); }

/* ── FAQ ── */
.booknatic-pricing .pfaq { padding: 96px 56px; background: #fff; }
.booknatic-pricing .pfaq-in { max-width: 820px; margin: 0 auto; }
.booknatic-pricing .pfaq-head { text-align: center; margin-bottom: 48px; }
.booknatic-pricing .pfaq-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.booknatic-pricing .pfaq-head p { font-size: 16px; font-weight: 600; color: var(--t2); }
.booknatic-pricing .faq-item {
  border: 1px solid var(--bl);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 200ms, box-shadow 200ms;
}
.booknatic-pricing .faq-item.open {
  border-color: var(--cr);
  box-shadow: 0 4px 16px rgba(232, 23, 93, 0.08);
}
.booknatic-pricing .faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--t1);
  text-align: left;
  transition: background 150ms;
}
.booknatic-pricing .faq-q:hover { background: #FAFAFB; }
.booknatic-pricing .faq-q-text { flex: 1; }
.booknatic-pricing .faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--crt);
  color: var(--cr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 240ms ease, background 200ms, color 200ms;
}
.booknatic-pricing .faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--cr);
  color: #fff;
}
.booknatic-pricing .faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.booknatic-pricing .faq-item.open .faq-a { max-height: 400px; }
.booknatic-pricing .faq-a p {
  padding: 0 22px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .booknatic-pricing .ptest-grid { grid-template-columns: 1fr 1fr; }
  .booknatic-pricing .phero h1 { font-size: 40px; }
  .booknatic-pricing .phero,
  .booknatic-pricing .plans,
  .booknatic-pricing .ptest,
  .booknatic-pricing .pfaq { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .booknatic-pricing .ptest-grid { grid-template-columns: 1fr; }
  .booknatic-pricing .phero h1,
  .booknatic-pricing .ptest-head h2,
  .booknatic-pricing .pfaq-head h2 { font-size: 30px; }
}
