/* =====================================================================
   DocClix — Telecaller / AI-Powered Pricing
   Branded with DocClix Project Theme (Teal #23939E, Cream #F8F6F1, Ink #0F0F0D)
   ===================================================================== */

:root,
.dc-pricing-wrapper {
  --tp-bg: var(--dc-bg, #F8F6F1);
  --tp-bg-2: #F1ECE3;
  --tp-bg-3: #FAF8F4;
  --tp-text: var(--dc-ink, #0F0F0D);
  --tp-text-2: var(--dc-ink2, #3D3D39);
  --tp-text-3: var(--dc-ink3, #7A7A74);
  --tp-blue: var(--dc-teal, #23939E);
  --tp-blue-hover: var(--dc-teal-dark, #1A6E77);
  --tp-blue-soft: var(--dc-teal-light, #E6F4F5);
  --tp-line: var(--dc-border, #E5E2DB);
  --tp-line-soft: #EDEAE4;
  --tp-card: var(--dc-surface, #FFFFFF);
  --tp-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --tp-shadow-lg: 0 16px 44px rgba(35, 147, 158, 0.16);
}

.dc-pricing-wrapper {
  background: var(--tp-bg);
  color: var(--tp-text);
  font-family: 'Bricolage Grotesque', 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  padding: 40px 0 80px;
}

.dc-pricing-wrapper * {
  box-sizing: border-box;
}

.dc-pricing-wrapper .container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dc-pricing-wrapper .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
.dc-pricing-wrapper .section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tp-blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.dc-pricing-wrapper .section-title {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--tp-text);
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.2;
}

.dc-pricing-wrapper .section-sub {
  font-size: 1.15rem;
  color: var(--tp-text-2);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Note strip */
.dc-pricing-wrapper .price-note-strip {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--tp-text-3);
  background: var(--tp-card);
  border-radius: 14px;
  padding: 14px 22px;
  border: 1px solid var(--tp-line);
}

.dc-pricing-wrapper .price-note-strip strong {
  color: var(--tp-text);
}

/* Onboarding banner */
.dc-pricing-wrapper .onboard-banner {
  max-width: 1200px;
  margin: 0 auto 36px;
  background: var(--tp-card);
  border-radius: 22px;
  box-shadow: var(--tp-shadow);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border: 1px solid var(--tp-line);
}

.dc-pricing-wrapper .onboard-banner .ob-left {
  flex-shrink: 0;
}

.dc-pricing-wrapper .onboard-banner .ob-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tp-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.dc-pricing-wrapper .onboard-banner .ob-price {
  font-family: 'Literata', Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--tp-text);
  line-height: 1.1;
}

.dc-pricing-wrapper .onboard-banner .ob-price small {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--tp-text-2);
}

.dc-pricing-wrapper .onboard-banner .ob-right {
  flex: 1;
  min-width: 260px;
}

.dc-pricing-wrapper .onboard-banner .ob-right h4 {
  font-size: 1.18rem;
  margin: 0 0 6px;
  color: var(--tp-text);
  font-weight: 700;
}

.dc-pricing-wrapper .onboard-banner .ob-right p {
  font-size: 0.92rem;
  color: var(--tp-text-2);
  margin: 0 0 14px;
}

.dc-pricing-wrapper .onboard-banner .ob-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.88rem;
  color: var(--tp-text);
}

.dc-pricing-wrapper .onboard-banner .ob-feats span::before {
  content: "✓ ";
  color: var(--tp-blue);
  font-weight: 700;
}

.dc-pricing-wrapper .onboard-banner .ob-cta {
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .dc-pricing-wrapper .onboard-banner {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .dc-pricing-wrapper .onboard-banner .ob-cta {
    width: 100%;
  }
  .dc-pricing-wrapper .onboard-banner .ob-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Pricing Grid */
.dc-pricing-wrapper .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
  align-items: stretch;
}

@media (max-width: 1120px) {
  .dc-pricing-wrapper .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .dc-pricing-wrapper .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Price card */
.dc-pricing-wrapper .price-card {
  background: var(--tp-card);
  border-radius: 22px;
  padding: 32px 24px;
  box-shadow: var(--tp-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--tp-line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dc-pricing-wrapper .price-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.dc-pricing-wrapper .price-card.hi {
  box-shadow: var(--tp-shadow-lg);
  border: 2px solid var(--tp-blue);
}

.dc-pricing-wrapper .price-card .plan-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tp-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.dc-pricing-wrapper .price-card h3 {
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: var(--tp-text);
  font-weight: 700;
}

.dc-pricing-wrapper .price-card .tag {
  font-size: 0.92rem;
  color: var(--tp-text-2);
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 42px;
  line-height: 1.45;
}

.dc-pricing-wrapper .price-card .amount {
  font-family: 'Literata', Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--tp-text);
  line-height: 1.1;
}

.dc-pricing-wrapper .price-card .amount small {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--tp-text-2);
}

.dc-pricing-wrapper .price-card .per-month {
  font-size: 0.85rem;
  color: var(--tp-text-3);
  margin: 4px 0 20px;
  min-height: 38px;
}

/* Value callout */
.dc-pricing-wrapper .value-callout {
  background: var(--tp-blue-soft);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--tp-text-2);
  margin: 0 0 22px;
  border: 1px solid rgba(35, 147, 158, 0.2);
  line-height: 1.45;
}

.dc-pricing-wrapper .value-callout b {
  color: var(--tp-blue);
}

.dc-pricing-wrapper .value-callout .callout-src {
  font-size: 0.72rem;
  color: var(--tp-text-3);
  margin-top: 6px;
  font-weight: 400;
}

/* Buttons */
.dc-pricing-wrapper .btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 980px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
}

.dc-pricing-wrapper .btn-primary {
  background: var(--tp-blue);
  color: #ffffff !important;
}

.dc-pricing-wrapper .btn-primary:hover {
  background: var(--tp-blue-hover);
  color: #ffffff !important;
}

.dc-pricing-wrapper .price-card .cta {
  margin-bottom: 22px;
}

.dc-pricing-wrapper .price-card .cta a {
  display: block;
  width: 100%;
}

.dc-pricing-wrapper .price-card .scope-line {
  font-size: 0.86rem;
  color: var(--tp-text-3);
  border-top: 1px solid var(--tp-line);
  padding-top: 16px;
  margin-bottom: 12px;
}

/* Platform row */
.dc-pricing-wrapper .platform-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 16px;
}

.dc-pricing-wrapper .platform-badge {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--tp-blue-soft);
  color: var(--tp-blue);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  border: 1px solid rgba(35, 147, 158, 0.25);
}

.dc-pricing-wrapper .platform-badge.off {
  background: #F0EDE7;
  color: var(--tp-text-3);
  opacity: 0.5;
  border: 1px solid transparent;
}

/* Sparkline */
.dc-pricing-wrapper .sparkline {
  margin: 2px 0 6px;
}

/* Features list */
.dc-pricing-wrapper .price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.dc-pricing-wrapper .price-card li {
  font-size: 0.88rem;
  color: var(--tp-text);
  padding-left: 28px;
  position: relative;
  line-height: 1.42;
}

.dc-pricing-wrapper .price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tp-blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-pricing-wrapper .price-card li.muted {
  color: var(--tp-blue);
  font-weight: 600;
}

.dc-pricing-wrapper .price-card li.muted::before {
  content: "+";
  background: transparent;
  color: var(--tp-blue);
  font-size: 0.95rem;
}

.dc-pricing-wrapper .price-card li.excl {
  color: var(--tp-text-3);
}

.dc-pricing-wrapper .price-card li.excl::before {
  content: "✕";
  background: #EFECE6;
  color: var(--tp-text-3);
  font-size: 0.65rem;
}

/* Billing toggle (Advance) */
.dc-pricing-wrapper .bill-toggle {
  display: inline-flex;
  background: var(--tp-bg-2);
  border-radius: 980px;
  padding: 3px;
  margin-bottom: 12px;
  border: 1px solid var(--tp-line);
}

.dc-pricing-wrapper .bill-toggle button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 980px;
  cursor: pointer;
  color: var(--tp-text-2);
  transition: all 0.15s;
}

.dc-pricing-wrapper .bill-toggle button.active {
  background: var(--tp-blue);
  color: #ffffff;
}

/* Custom banner */
.dc-pricing-wrapper .custom-banner {
  max-width: 1200px;
  margin: 36px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--tp-card);
  border: 1px solid var(--tp-line);
  border-radius: 16px;
  padding: 20px 28px;
  font-size: 0.92rem;
  color: var(--tp-text-2);
}

.dc-pricing-wrapper .custom-banner strong {
  color: var(--tp-text);
}

/* Sections on full page */
.dc-pricing-wrapper section {
  padding: 70px 0;
}

.dc-pricing-wrapper section.alt {
  background: var(--tp-bg-2);
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
}

/* AI Cards Grid */
.dc-pricing-wrapper .ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .dc-pricing-wrapper .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dc-pricing-wrapper .ai-grid {
    grid-template-columns: 1fr;
  }
}

.dc-pricing-wrapper .ai-card {
  background: var(--tp-card);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--tp-shadow);
  border: 1px solid var(--tp-line);
}

.dc-pricing-wrapper .ai-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tp-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dc-pricing-wrapper .ai-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--tp-text);
  font-weight: 700;
}

.dc-pricing-wrapper .ai-card p {
  font-size: 0.92rem;
  color: var(--tp-text-2);
  margin: 0;
  line-height: 1.5;
}

/* Tables (Comparison & Sheets) */
.dc-pricing-wrapper .table-wrap,
.dc-pricing-wrapper .sheet-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: var(--tp-shadow);
  margin-top: 44px;
  border: 1px solid var(--tp-line);
  background: var(--tp-card);
}

.dc-pricing-wrapper table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--tp-card);
  font-size: 0.88rem;
  min-width: 860px;
}

.dc-pricing-wrapper table.compare th,
.dc-pricing-wrapper table.compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--tp-line-soft);
  color: var(--tp-text);
}

.dc-pricing-wrapper table.compare thead th {
  font-weight: 700;
  background: var(--tp-bg-2);
  font-size: 0.82rem;
  color: var(--tp-text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dc-pricing-wrapper table.compare thead th.plan-col {
  color: var(--tp-blue);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
}

.dc-pricing-wrapper table.compare tbody tr:last-child td {
  border-bottom: none;
}

.dc-pricing-wrapper table.compare td.feat {
  font-weight: 600;
}

.dc-pricing-wrapper table.compare td.why {
  color: var(--tp-text-2);
  font-size: 0.85rem;
}

.dc-pricing-wrapper table.compare td:not(.feat):not(.why),
.dc-pricing-wrapper table.compare th:not(:first-child):not(:nth-child(2)) {
  text-align: center;
}

.dc-pricing-wrapper table.compare tr.addon td {
  background: var(--tp-bg-3);
  font-size: 0.86rem;
  color: var(--tp-text-2);
}

/* Sheets for website and add-ons */
.dc-pricing-wrapper table.sheet {
  width: 100%;
  border-collapse: collapse;
  background: var(--tp-card);
  font-size: 0.92rem;
}

.dc-pricing-wrapper table.sheet th,
.dc-pricing-wrapper table.sheet td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--tp-line-soft);
  vertical-align: top;
  color: var(--tp-text);
}

.dc-pricing-wrapper table.sheet thead th {
  font-weight: 700;
  background: var(--tp-bg-2);
  font-size: 0.82rem;
  color: var(--tp-text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dc-pricing-wrapper table.sheet tbody tr:last-child td {
  border-bottom: none;
}

.dc-pricing-wrapper table.sheet td.why {
  color: var(--tp-text-2);
  font-size: 0.88rem;
}

.dc-pricing-wrapper table.sheet td.price-cell {
  color: var(--tp-blue);
  font-weight: 700;
  white-space: nowrap;
}

/* Exclusions Box */
.dc-pricing-wrapper .excl-box {
  max-width: 820px;
  margin: 44px auto 0;
  background: var(--tp-card);
  border-radius: 20px;
  box-shadow: var(--tp-shadow);
  padding: 34px 38px;
  border: 1px solid var(--tp-line);
}

.dc-pricing-wrapper .excl-box h3 {
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: var(--tp-text);
  font-weight: 700;
}

.dc-pricing-wrapper .excl-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--tp-text-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.5;
}

/* FAQ items */
.dc-pricing-wrapper .faq-wrap {
  max-width: 820px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dc-pricing-wrapper .faq-item {
  background: var(--tp-card);
  border-radius: 16px;
  box-shadow: var(--tp-shadow);
  padding: 22px 26px;
  border: 1px solid var(--tp-line);
}

.dc-pricing-wrapper .faq-item .q {
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--tp-text);
}

.dc-pricing-wrapper .faq-item .a {
  font-size: 0.92rem;
  color: var(--tp-text-2);
  line-height: 1.55;
  margin: 0;
}
