/* ============================================================
   PRICING PAGE — page-pricing.css
   Depends on global shared stylesheet (wrap, section-*, btn-*, etc.)
   ============================================================ */


/* ── SLA HIGHLIGHT STRIP ───────────────────────────── */
.pricing-sla-strip {
  background: #060238;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 48px;
}
.pricing-sla-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .pricing-sla-strip {
    padding: 32px 20px;
  }
  .pricing-sla-inner {
    grid-template-columns: 1fr;
  }
}
.pricing-sla-card {
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.pricing-sla-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-sla-card-lime {
  background: rgba(61, 255, 176, 0.07);
  border: 1px solid rgba(61, 255, 176, 0.2);
}
.pricing-sla-value {
  font-size: 52px;
  font-weight: 800;
  color: var(--limenew);
  letter-spacing: -0.05em;
  line-height: 1;
  flex-shrink: 0;
}
.pricing-sla-sublabel {
  
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.pricing-sla-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.pricing-sla-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── PRICING TABS (main + sub) ─────────────────────── */
.price-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.price-tab {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #e8e6e0;
  color: #6b7280;
  background: #fff;
  transition: all 0.15s;
}
.price-tab.is-active {
  background: #06061a;
  border-color: #06061a;
  color: #fff;
}
.price-subtabs .price-tab {
  font-size: 12px;
  padding: 7px 14px;
}
.price-tab-panel {
  display: none;
}
.price-tab-panel.is-active {
  display: block;
}

/* ── TERM TABS ─────────────────────────────────────── */
.term-tabs {
  display: flex;
  gap: 4px;
  background: #f0efea;
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 24px;
}
.term-tab {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  cursor: pointer;
  color: #6b7280;
  border: none;
  background: none;
  transition: all 0.15s;
}
.term-tab.is-active {
  background: #fff;
  color: #06061a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.term-panel {
  display: none;
}
.term-panel.is-active {
  display: block;
}

/* ── PRICING TAB HEADER ────────────────────────────── */
.pricing-tab-head {
  margin-bottom: 36px;
}
.pricing-tab-head h2 {
  margin-bottom: 10px;
}
.pricing-tab-head p {
  font-size: 16px;
  color: #374151;
  max-width: 680px;
  line-height: 1.7;
}

/* ── PLATFORM DESCRIPTION PILL ─────────────────────── */
.pricing-plat-desc {
  background: #f5f4f0;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 20px;
}

/* ── PRICE TABLE ───────────────────────────────────── */
.pricing-table-wrap {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  overflow: hidden;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table thead tr {
  background: #f5f4f0;
}
.price-table th {
  padding: 13px 20px;
  text-align: left;
  
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
  border-bottom: 1px solid #e8e6e0;
}
.price-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f0efea;
  color: #374151;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:nth-child(even) {
  background: #faf9f7;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.price-hours {
  color: #6b7280;
  
}
.price-table td.text-right {
  color: #06061a;
  
  font-weight: 700;
  font-size: 15px;
}
.plan-name {
  font-weight: 600;
  color: #111827;
}
.plan-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}
.plan-name-lime { color: var(--limenew); }
.plan-sub-lime  { color: var(--limenew); }
.price-lime     { color: var(--limenew); font-size: 17px; }

/* ── ONBOARDING PRICING TAB CARDS ──────────────────── */
.pricing-onboarding-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .pricing-onboarding-cards {
    grid-template-columns: 1fr;
  }
}
.pricing-onboarding-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 28px 24px;
}
.pricing-onboarding-card-label {
  
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
}
.pricing-onboarding-card-desc {
  font-size: 14px;
  color: #374151;
  margin-bottom: 20px;
}
.pricing-onboarding-price-row {
  margin-bottom: 14px;
}
.pricing-onboarding-price-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}
.pricing-onboarding-price {
  font-size: 20px;
  font-weight: 800;
  
  color: #06061a;
}
.pricing-onboarding-price-lime {
  color: var(--limenew);
}

/* ── NUDGE BAR ─────────────────────────────────────── */
.pricing-nudge-bar {
  background: #f5f4f0;
  border-top: 1px solid #e8e6e0;
  padding: 20px 48px;
}
.pricing-nudge-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-nudge-bar p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.pricing-nudge-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pricing-nudge-bar {
    padding: 20px;
  }
}

/* ── COMPARISON TABLE ──────────────────────────────── */
.pricing-cmp-table {
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.pricing-cmp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #f5f4f0;
  border-bottom: 1px solid #e8e6e0;
}
.pricing-cmp-header-blank {
  padding: 18px 24px;
}
.pricing-cmp-header-col {
  padding: 18px 24px;
  text-align: center;
  border-left: 1px solid #e8e6e0;
}
.pricing-cmp-header-b {
  background: #06061a;
  border-radius: 0 16px 0 0;
}
.pricing-cmp-col-label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}
.pricing-cmp-col-label-lime {
  color: var(--limenew);
}
.pricing-cmp-col-sub {
  font-size: 11px;
  color: #555;
  margin-top: 3px;
}
.pricing-cmp-col-sub-dim {
  color: rgba(255, 255, 255, 1);
}
.pricing-cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #f0efea;
}
.pricing-cmp-row:last-child {
  border-bottom: none;
}
.pricing-cmp-row-highlight {
  background: #f0fdf9;
}
.pricing-cmp-feature {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #06061a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-cmp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8e6e0;
  flex-shrink: 0;
  display: inline-block;
}
.pricing-cmp-dot-lime {
  background: var(--limenew);
}
.pricing-cmp-cell {
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: #374151;
  border-left: 1px solid #f0efea;
}
.pricing-cmp-cell-b {
  background: #fafffe;
  color: #6b7280;
}
.pricing-cmp-cell-b-green {
  background: #ecfdf6;
}
.pricing-cmp-footer {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  flex-direction: column;
}
.pricing-cmp-footnote {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}
.pricing-cmp-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── ONBOARDING DETAIL ─────────────────────────────── */
.pricing-od-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .pricing-od-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-od-grid h3 {
  margin: 15px 0 20px;
}
.pricing-od-card-featured {
  border: 2px solid var(--limenew) !important;
}
.pricing-od-label {
  
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
}
.pricing-od-text {
  font-size: 14px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.7;
}
.pricing-od-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.pricing-od-price-tile {
  background: #f5f4f0;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.pricing-od-price-tile-label {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
  
}
.pricing-od-price-tile-value {
  font-size: 18px;
  font-weight: 800;
  color: #06061a;
}
.pricing-od-price-tile-note {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 2px;
}

/* ── HOSTING ───────────────────────────────────────── */
.pricing-hosting-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pricing-hosting-cards {
    grid-template-columns: 1fr;
  }
}
.pricing-hosting-card-label {
  
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
}
.pricing-hosting-card-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
}
.pricing-hosting-table-wrap {
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.pricing-hosting-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 0;
}
.pricing-hosting-table thead tr th {
  padding: 14px 20px;
  
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #e8e6e0;
}
.pricing-hosting-th-tier {
  background: #f5f4f0;
  color: #6b7280;
  text-align: left;
}
.pricing-hosting-th-managed {
  background: #06061a;
  color: var(--limenew);
  text-align: center;
}
.pricing-hosting-th-unmanaged {
  background: #f5f4f0;
  color: #6b7280;
  text-align: center;
  border-left: 1px solid #e8e6e0;
}
.pricing-hosting-table tbody tr {
  border-bottom: 1px solid #f0efea;
}
.pricing-hosting-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-hosting-table tbody tr:nth-child(even) {
  background: #faf9f7;
}
.pricing-hosting-table tbody td {
  padding: 14px 20px;
}
.pricing-hosting-table tbody td.pricing-hosting-td-unmanaged {
  color: #374151;
}

.pricing-hosting-table tbody td.pricing-hosting-td-managed {
  color: #3dffb0;
}
.pricing-hosting-tier-name {
  font-weight: 600;
  color: #111827;
}
.pricing-hosting-tier-desc {
  color: #6b7280;
  font-weight: 400;
}
.pricing-hosting-td-managed {
  text-align: center;
  background: #06061a;
  font-weight: 700;
  color: var(--limenew);
}
.pricing-hosting-td-unmanaged {
  text-align: center;
  border-left: 1px solid #f0efea;
  color: #374151;
}
.pricing-hosting-note {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
}
.pricing-hosting-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-hosting-cta p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* ── RUSH & AFTER-HOURS ────────────────────────────── */
.pricing-rush-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pricing-rush-cols {
    grid-template-columns: 1fr;
  }
}
.pricing-rush-col-heading {
  font-size: 18px;
  margin-bottom: 12px;
}
.pricing-rush-cta-box {
  background: #06061a;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-rush-cta-heading {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}
.pricing-rush-cta-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin: 0;
}
.pricing-rush-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── FAQ ───────────────────────────────────────────── */
/* .faq-list {
  border-top: 1px solid #e8e6e0;
}
.faq-item {
  border-bottom: 1px solid #e8e6e0;
}
.faq-q {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-toggle {
  font-size: 22px;
  color: #374151;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding-bottom: 20px;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-a p {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
} */
.pricing-faq-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e8e6e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-faq-footer-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.pricing-faq-footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── CTA BAND ──────────────────────────────────────── */
/* .cta-band {
  background: var(--limenew);
  padding: 80px 48px;
  text-align: center;
}
.cta-band .wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.cta-band h2 {
  color: #06061a;
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.cta-band p {
  color: rgba(6, 6, 26, 0.65);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-band {
    padding: 56px 20px;
  }
} */

/* ── FOOTNOTE BAR ──────────────────────────────────── */
.pricing-footnote-bar {
  background: #f5f4f0;
  border-top: 1px solid #e8e6e0;
  padding: 14px 48px;
}
.pricing-footnote-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.pricing-footnote-bar p {
  font-size: 11px;
  color: #9ca3af;
  
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .pricing-footnote-bar {
    padding: 14px 20px;
  }
}


.section-white.pricing-cta .pricing-nudge-inner {
  padding: 24px 48px;
  border-top: 1px solid #e8e6e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-white.pricing-cta .pricing-nudge-inner p {
  margin: 0;
}

.pricing-cmp-cell-b span {
  font-size: 15px;
  font-weight: 800;
  color: #06061a;
  display: block;
}

.pricing-cmp-cell-b span.green {
  color: #059669;
}

.pricing-cmp-cell-b span.big {
  font-size: 32px;
  font-weight: 800;
  color: #06061a;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.pricing-cmp-cell.pricing-cmp-cell-b strong {
  color: #06061a;
}
.pricing-od-grid h3 {
  margin: 15px 0 20px;
}
.btn-outline-light {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn-primary svg, .btn-outline-light svg {
  width: 18px;
  height: auto;
}
.move-fast--section .wrap {
  max-width: 800px;
  width: calc(100% - 60px);
}
@media (max-width:767px) {
  .section-white.pricing-cta .pricing-nudge-inner {
    justify-content: center;
  }
  .pricing-hosting-table tbody td {
    padding: 10px;
  }
  .pricing-hosting-table-wrap {overflow-x: scroll;}
  .pricing-hosting-table-wrap table.pricing-hosting-table {
      width: 450px;
  }
  .pricing-cmp-cell,
  .pricing-cmp-feature {
    padding: 10px;
  }
}
@media (max-width:480px) {
  .pricing-od-prices {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ── COMPARISON TABLE — MOBILE ─────────────────────── */
@media (max-width: 640px) {

  .pricing-cmp-header {
    display: none;
  }

  .pricing-cmp-table {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pricing-cmp-row {
    display: block;
    border-bottom: none;
    border-radius: 12px;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e6e0;
  }
  .pricing-cmp-row:last-child {
    margin-bottom: 0;
  }

  .pricing-cmp-feature {
    padding: 14px 16px;
    background: #f5f4f0;
    border-radius: 12px 12px 0 0;
    font-size: 13px;
    border-bottom: 1px solid #e8e6e0;
    gap: 8px;
    justify-content: center;
  }

  .pricing-cmp-cell {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border-left: none;
    text-align: center;
    font-size: 13px;
    vertical-align: top;
    box-sizing: border-box;
  }

  .pricing-cmp-cell::before {
    content: attr(data-label);
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 6px;
  }

  .pricing-cmp-cell-a {
    background: #fff;
    color: #374151;
    border-right: 1px solid #f0efea;
    border-radius: 0 0 0 12px;
  }

  .pricing-cmp-cell-b {
    background: #06061a;
    color: #fff;
    border-radius: 0 0 12px 0;
  }
  .pricing-cmp-cell-b::before {
    color: rgba(61, 255, 176, 0.5);
  }

  .pricing-cmp-row-highlight .pricing-cmp-cell-a {
    background: #ecfdf6;
  }
  .pricing-cmp-cell-b-green {
    background: #06061a;
  }

  .pricing-cmp-row-highlight .pricing-cmp-feature {
    background: #e6fdf5;
    border-bottom-color: #b6f5de;
  }
  .pricing-cmp-cell-b span,
  .pricing-cmp-cell-b span.big,
  .pricing-cmp-cell.pricing-cmp-cell-b strong {
    color: #fff;
  }
}