/* ─────────────────────────────────────────────────────────────────
   PRICING PAGE STYLES
   ───────────────────────────────────────────────────────────────── */

/* ── HERO ── */
.pricing-hero {
  background-color: #1D2A5D;
  background-image: url("../img/hero/hero-bg.svg");
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-position: center 60%;
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .pricing-hero {
    background-size: 160% auto;
    background-position: center 70%;
    padding: 150px 0 100px;
  }
}
@media (max-width: 767px) {
  .pricing-hero {
    background-size: 220% auto;
    background-position: center 80%;
    padding: 130px 0 80px;
  }
}
.pricing-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
@media (max-width: 991px) { .pricing-hero h1 { font-size: 44px; } }
@media (max-width: 767px) { .pricing-hero h1 { font-size: 34px; } }
.pricing-hero > .container > .row > div > p {
  font-size: 20px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 48px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .pricing-hero > .container > .row > div > p { font-size: 17px; }
}

/* ── BILLING TOGGLE ── */
.billing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.billing-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.billing-toggle input { display: none; }
.billing-toggle label {
  min-width: 130px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #60698D;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 500px) {
  .billing-toggle label { min-width: 100px; padding: 10px 0; font-size: 13px; }
}
.billing-toggle input:checked + label {
  background: #487CFF;
  color: #fff;
  box-shadow: 0 4px 12px rgba(72,124,255,0.35);
}
.billing-toggle label:hover { color: #487CFF; }
.billing-toggle input:checked + label:hover { color: #fff; }

.savings-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 10px;
  padding: 0 5px;
}
.savings-badge {
  min-width: 130px;
  font-size: 14px;
  color: #22c55e;
  font-weight: 700;
  text-align: center;
}
.savings-badge.dim { color: rgba(255,255,255,0.45); }
@media (max-width: 500px) {
  .savings-badge { min-width: 100px; font-size: 12px; }
}

/* ── LEAD-IN: contact-first banner above plan cards ── */
.pricing-lead-section { padding: 30px 0 0; }
.pricing-lead-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  background: linear-gradient(135deg, #1D2A5D 0%, #2c3e80 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(29, 42, 93, 0.25);
}
.pricing-lead-text { flex: 1 1 320px; min-width: 0; }
.pricing-lead-text h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}
.pricing-lead-text p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}
.pricing-lead-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.pricing-lead-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #229ED9;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing-lead-tg:hover { background: #1d8cbf; color: #fff; }
.pricing-lead-tg i { font-size: 20px; }
.pricing-lead-cta {
  display: inline-block;
  padding: 12px 22px;
  background: #fff;
  color: #1D2A5D;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pricing-lead-cta:hover { background: #f4f5f9; color: #1D2A5D; }
@media (max-width: 767px) {
  .pricing-lead-card { padding: 22px; }
  .pricing-lead-ctas { width: 100%; }
  .pricing-lead-tg, .pricing-lead-cta { flex: 1 1 auto; justify-content: center; text-align: center; }
}

/* ── PLAN CARDS ── */
.pricing-plans { padding: 80px 0 60px; }
.plan-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .plan-cards-wrapper {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) { .plan-cards-wrapper { gap: 20px; } }

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.plan-card.popular {
  border-color: #487CFF;
  box-shadow: 0 8px 35px rgba(72,124,255,0.2);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #487CFF;
  color: #fff;
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(72,124,255,0.35);
}
.plan-card.pro-card {
  background: linear-gradient(160deg, #fff 60%, #f5f7ff 100%);
  border-color: #1D2A5D;
}
.plan-header {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 2px solid #f0f2f9;
  margin-bottom: 24px;
}
.plan-name {
  font-size: 26px;
  font-weight: 800;
  color: #1D2A5D;
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 14px;
  color: #60698D;
  margin-bottom: 22px;
  min-height: 20px;
}
.plan-price { margin-bottom: 6px; }
.price-main {
  font-size: 46px;
  font-weight: 800;
  color: #1D2A5D;
  font-family: "Fira Sans", sans-serif;
  line-height: 1;
}
.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: #60698D;
  margin-left: 2px;
}
.price-period { font-size: 13px; color: #60698D; margin-top: 5px; }
.price-original {
  font-size: 17px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 4px;
  display: none;
}
.price-original.show { display: block; }
.price-savings {
  background: #d1fae5;
  color: #065f46;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  display: none;
}
.price-savings.show { display: inline-block; }
.plan-user-info { font-size: 13px; color: #888; margin-top: 8px; min-height: 18px; }
.plan-features { margin-bottom: 28px; }
.plan-features ul { list-style: none; padding: 0; margin: 0; }
.plan-features li {
  padding: 9px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f7f8fc;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .icon { font-size: 16px; flex-shrink: 0; }
.plan-features li .icon.yes { color: #22c55e; }
.plan-features li .icon.no  { color: #ef4444; }
.plan-features li .val {
  margin-left: auto;
  font-weight: 700;
  color: #1D2A5D;
  font-size: 13px;
}
.plan-cta { text-align: center; }
.plan-cta .btn {
  display: block;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  background: #487CFF;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
.plan-cta .btn:hover { background: #3566e0; color: #fff; transform: translateY(-1px); }
.plan-card.popular .plan-cta .btn { background: #1D2A5D; }
.plan-card.popular .plan-cta .btn:hover { background: #487CFF; }
.plan-card.pro-card .plan-cta .btn { background: #0f172a; color: #fff; }
.plan-card.pro-card .plan-cta .btn:hover { background: #1D2A5D; color: #fff; }
.plan-compare-link { text-align: center; margin-top: 14px; }
.plan-compare-link a {
  font-size: 13px;
  color: #487CFF;
  font-weight: 600;
  text-decoration: none;
}
.plan-compare-link a:hover { text-decoration: underline; }

/* ── COMPARISON TABLE ── */
.comparison-section { padding: 80px 0; background: #f8f9ff; }
.section-title { text-align: center; }
.section-title h1 { font-size: 40px; color: #1D2A5D; margin-bottom: 14px; }
@media (max-width: 767px) { .section-title h1 { font-size: 30px; } }
.section-title p { font-size: 18px; color: #60698D; }
.comparison-filter { text-align: center; margin: 30px 0; }
.filter-btn {
  background: #fff;
  border: 2px solid #487CFF;
  color: #487CFF;
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active { background: #487CFF; color: #fff; }
.comparison-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.comparison-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.comparison-table thead th {
  background: #487CFF;
  color: #fff;
  padding: 18px 14px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody tr { border-bottom: 1px solid #f0f2f9; }
.comparison-table tbody tr:hover { background: #f9faff; }
.comparison-table tbody tr.cat-row td {
  background: #f0f2f9;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #1D2A5D;
  padding: 12px 15px;
  text-transform: uppercase;
}
.comparison-table tbody td {
  padding: 13px 14px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-right: 1px solid #f0f2f9;
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1D2A5D;
}
.comparison-table tbody tr.hidden { display: none; }
.yes { color: #22c55e; font-weight: 800; font-size: 18px; }
.no  { color: #ef4444; font-weight: 800; font-size: 18px; }
.addon-tag {
  background: #fef3c7;
  color: #92400e;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}
.proex-tag {
  background: #ede9fe;
  color: #5b21b6;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}
.proex-tag::after { content: " ★"; }

/* ── ADD-ONS ── */
.addons-section { padding: 80px 0; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .addons-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
.addon-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 2px solid #f0f2f9;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.addon-card:hover { border-color: #487CFF; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.addon-card.proex {
  background: linear-gradient(135deg, #fff, #ede9fe);
  border-color: #c4b5fd;
  cursor: default;
}
.addon-card.proex:hover { border-color: #c4b5fd; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.addon-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.addon-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #487CFF;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  margin-right: 10px;
  flex-shrink: 0;
}
.addon-name { font-size: 18px; font-weight: 800; color: #1D2A5D; }
.addon-desc { font-size: 14px; color: #60698D; margin: 8px 0 14px; line-height: 1.5; }
.addon-price-line { margin-bottom: 12px; }
.addon-price { font-size: 26px; font-weight: 800; color: #1D2A5D; }
.addon-period { font-size: 14px; color: #888; }
.addon-avail { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.avail-badge {
  background: #dbeafe;
  color: #1e40af;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}
.avail-badge.included { background: #d1fae5; color: #065f46; }
.addon-arrow {
  width: 22px;
  height: 22px;
  color: #888;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.addon-card.expanded .addon-arrow { transform: rotate(180deg); }
.addon-card.proex .addon-arrow { display: none; }
.addon-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.addon-card.expanded .addon-details {
  max-height: 500px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f2f9;
}
.tier-table { width: 100%; }
.tier-table tr { border-bottom: 1px solid #f0f2f9; }
.tier-table tr:last-child { border-bottom: none; }
.tier-table td { padding: 10px 0; font-size: 14px; }
.tier-table td:first-child { color: #60698D; }
.tier-table td:last-child { text-align: right; font-weight: 700; color: #1D2A5D; }
.tier-custom { color: #487CFF !important; font-weight: 600 !important; font-size: 13px !important; }

/* ── CALCULATOR ── */
.calc-section { padding: 80px 0; background: #f8f9ff; }
.calc-wrap {
  max-width: 900px;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
@media (max-width: 767px) { .calc-wrap { padding: 24px 18px; } }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 767px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-group {
  display: flex;
  flex-direction: column;
}
.calc-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1D2A5D;
  margin-bottom: 8px;
}
.calc-group select,
.calc-group input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e2e5ec;
  border-radius: 8px;
  font-size: 15px;
  color: #1D2A5D;
  transition: border-color 0.25s;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
}
.calc-group select:focus,
.calc-group input[type="number"]:focus { outline: none; border-color: #487CFF; }
.calc-group select:focus-visible,
.calc-group input[type="number"]:focus-visible { outline: 2px solid #487CFF; outline-offset: 2px; }
.calc-warning { font-size: 12px; color: #ef4444; margin-top: 5px; display: none; }
.calc-warning.show { display: block; }
.calc-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}
.calc-addons-wrap { grid-column: 1 / -1; }
.calc-addons-wrap > label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1D2A5D;
  margin-bottom: 10px;
}
.calc-addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .calc-addons { grid-template-columns: 1fr; } }

.calc-addon-chk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 2px solid #e2e5ec;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.calc-addon-chk:hover { border-color: #487CFF; background: #f8f9ff; }
.calc-addon-chk.disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; background:#f6f7fb; }
.calc-addon-chk.disabled label { color:#6b7280; }
.calc-addon-chk.disabled .chk-price { color:#6b7280; }
.calc-addon-chk input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #487CFF;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.calc-addon-chk label {
  font-size: 13px;
  color: #1D2A5D;
  cursor: pointer;
  margin: 0;
  flex: 1;
  font-weight: 500;
  line-height: 1.3;
}
.calc-addon-chk .chk-price {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
  padding-left: 8px;
}

/* ── SUB-GROUPS ──
   JS owns display. CSS does NOT set display:none.
   All sub-groups span full grid width.              */
.calc-tel-sub,
.calc-ch-sub,
.calc-bot-sub,
.calc-ai-sub,
.calc-upsell-sub,
.calc-ret-sub,
.calc-deal-sub,
.calc-board-sub,
.calc-field-sub,
.calc-stor-sub {
  grid-column: 1 / -1;
  background: #f4f6ff;
  border: 2px solid #d0d8ff;
  border-radius: 10px;
  padding: 18px 20px;
  box-sizing: border-box;
}
.calc-tel-sub > label,
.calc-ch-sub > label,
.calc-bot-sub > label,
.calc-ai-sub > label,
.calc-upsell-sub > label,
.calc-ret-sub > label,
.calc-deal-sub > label,
.calc-board-sub > label,
.calc-field-sub > label,
.calc-stor-sub > label {
  font-size: 13px;
  font-weight: 700;
  color: #487CFF;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.2px;
}
.calc-tel-sub input[type="number"],
.calc-bot-sub select,
.calc-ai-sub select,
.calc-upsell-sub select,
.calc-ret-sub select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e2e5ec;
  border-radius: 8px;
  font-size: 14px;
  color: #1D2A5D;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
}
.calc-tel-sub input[type="number"]:focus,
.calc-bot-sub select:focus,
.calc-ai-sub select:focus,
.calc-upsell-sub select:focus,
.calc-ret-sub select:focus { outline: none; border-color: #487CFF; }
.calc-tel-sub input[type="number"]:focus-visible,
.calc-bot-sub select:focus-visible,
.calc-ai-sub select:focus-visible,
.calc-upsell-sub select:focus-visible,
.calc-ret-sub select:focus-visible { outline: 2px solid #487CFF; outline-offset: 2px; }

/* ── QUANTITY CONTROLS ── */
.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.qty-row > label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #60698D !important;
  margin-bottom: 0 !important;
  white-space: nowrap;
}
.qty-control {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid #d0d8ff;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: #eef1ff;
  border: none;
  font-size: 22px;
  font-weight: 700;
  color: #1D2A5D;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  user-select: none;
}
.qty-btn:hover { background: #487CFF; color: #fff; }
.qty-btn:active { background: #3566e0; }
.qty-input {
  width: 58px;
  height: 40px;
  border: none;
  border-left: 1.5px solid #d0d8ff;
  border-right: 1.5px solid #d0d8ff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1D2A5D;
  background: #fff;
  padding: 0 4px;
  font-family: inherit;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input:focus { outline: none; }
.qty-input:focus-visible { outline: 2px solid #487CFF; outline-offset: 2px; }
.qty-btn:focus-visible { outline: 2px solid #487CFF; outline-offset: 2px; }
#dealQtyHint { display: block; margin-top: 8px; font-size: 12px; color: #888; }

/* ── CHANNELS SUB-GROUP ── */
.calc-channel-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.calc-ch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid #e2e5ec;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.calc-ch-item:hover { border-color: #487CFF; background: #f8f9ff; }
.calc-ch-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #487CFF; flex-shrink: 0; margin: 0;
}
.calc-ch-item label {
  flex: 1; font-size: 13px; color: #1D2A5D;
  cursor: pointer; margin: 0; font-weight: 500;
}
.calc-ch-item .chk-price {
  font-size: 12px; font-weight: 700; color: #888; white-space: nowrap;
}

/* ── OUTPUT ── */
.calc-output {
  background: linear-gradient(135deg, #487CFF, #1D2A5D);
  color: #fff;
  padding: 28px;
  border-radius: 12px;
  margin-top: 30px;
}
.calc-lines { margin-bottom: 4px; }
.calc-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.calc-line:last-of-type { border-bottom: none; }
.calc-line span:first-child { flex: 1; }
.calc-line span:last-child { white-space: nowrap; font-weight: 700; }
.calc-discount-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 14px;
  color: #a7f3d0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 2px solid rgba(255,255,255,0.3);
  margin-top: 8px;
}
.calc-total-label { font-size: 18px; font-weight: 700; }
.calc-period { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 4px; }
.calc-total-val {
  font-size: 38px;
  font-weight: 800;
  font-family: "Fira Sans", sans-serif;
  white-space: nowrap;
}
@media (max-width: 500px) { .calc-total-val { font-size: 28px; } }
.calc-cta-row { text-align: center; margin-top: 24px; }
.calc-cta-row a {
  display: inline-block;
  padding: 14px 40px;
  background: #fff;
  color: #487CFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.calc-cta-row a:hover { background: #f0f2f9; color: #1D2A5D; }

/* ── FAQ ── */
.pricing-faq { padding: 80px 0; }
.faq-wrap { max-width: 780px; margin: 50px auto 0; }
.faq-wrap .single-faq {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.faq-wrap .single-faq button {
  width: 100%;
  background: #fff;
  border: none;
  font-size: 17px;
  font-weight: 700;
  font-family: "Fira Sans", sans-serif;
  color: #1D2A5D;
  text-align: left;
  padding: 20px 50px 20px 24px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  position: relative;
}
.faq-wrap .single-faq button:hover { background: #f8f9ff; }
.faq-wrap .single-faq button::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  border-top: 8px solid #888;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  transition: transform 0.3s;
}
.faq-wrap .single-faq button.collapsed::after {
  transform: translateY(-50%) rotate(0deg);
}
.faq-wrap .faq-content {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.faq-wrap .single-faq button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }
.mb-50 { margin-bottom: 50px; }
.mb-20 { margin-bottom: 20px; }