/* ── OrderNow Pricing Page Premium Stylesheet ─────────────────────────────── */

:root {
  --pricing-primary: #3b5bfd;
  --pricing-primary-dark: #1e3bb8;
  --pricing-accent: #22c55e;
  --pricing-badge-bg: #eef3ff;
  --pricing-badge-text: #1d4ed8;
  --pricing-dark-bg: #0b1120;
  --pricing-dark-card: #151d30;
  --pricing-glow: rgba(59, 91, 253, 0.18);
  --pricing-glow-strong: rgba(59, 91, 253, 0.32);
}

/* ── Hero Section ──────────────────────────────────────────────────────── */
.pricing-hero {
  position: relative;
  padding: 56px 0 52px;
  background: 
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(69, 94, 235, 0.15), transparent 70%),
    radial-gradient(circle at 90% 40%, rgba(34, 197, 94, 0.06), transparent 40%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  overflow: hidden;
  text-align: center;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 94, 235, 0.3), transparent);
}

.pricing-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-hero .breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.pricing-hero .breadcrumb a:hover {
  color: var(--pricing-primary);
}

.pricing-hero .hero-header {
  max-width: 860px;
  margin: 0 auto;
}

.pricing-hero h1 {
  margin: 18px auto 16px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: var(--ink);
}

.pricing-hero h1 .text-gradient {
  background: linear-gradient(135deg, #2563EB 0%, #4F46E5 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-hero .hero-subtitle {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 700px;
  margin: 0 auto 26px;
  line-height: 1.55;
}

/* Trust Pill Row */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin: 0 auto 30px;
  max-width: 860px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.trust-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #16a34a;
  font-size: 14px;
}

/* ── Billing & Currency Controls ───────────────────────────────────────── */
.controls-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin: 0 auto 12px;
}

.billing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 5px 6px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.billing-opt {
  position: relative;
  font-size: 13.5px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  color: #64748b;
  transition: all 0.25s ease;
  user-select: none;
}

.billing-opt.active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.1);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.35);
  animation: pulseBadge 2.5s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.currency-select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.currency-select-wrap select {
  border: none;
  background: transparent;
  font-weight: 800;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  padding: 2px 4px;
  font-size: 13px;
}

/* ── Free Digitization VIP Banner ──────────────────────────────────────── */
.free-digitize-banner {
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  border: 1px solid rgba(69, 94, 235, 0.3);
  border-radius: 20px;
  padding: 20px 28px;
  margin: 16px auto 32px;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.free-digitize-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-left h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-tag {
  background: #22c55e;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.banner-left p {
  margin: 0;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.45;
}

.banner-cta {
  flex-shrink: 0;
  background: #22c55e;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.banner-cta:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.4);
}

/* ── Pricing Grid (4 Tiers) ────────────────────────────────────────────── */
.pricing-section {
  padding: 10px 0 70px;
}

.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 10px;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 24px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.pricing-card.highlight-recommended {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3), 0 20px 50px rgba(34, 197, 94, 0.15) !important;
  animation: pulseCard 1s ease-in-out;
}

@keyframes pulseCard {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Featured / Ultra Card */
.pricing-card.featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FF 100%);
  border: 2px solid #3b5bfd;
  box-shadow: 0 20px 50px rgba(59, 91, 253, 0.16), 0 0 0 1px rgba(59, 91, 253, 0.1);
  transform: scale(1.02);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 30px 65px rgba(59, 91, 253, 0.24);
}

.popular-banner {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563EB, #4F46E5);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.plan-badge.badge-free {
  background: #f1f5f9;
  color: #475569;
}

.plan-badge.badge-pro {
  background: #e0e7ff;
  color: #3730a3;
}

.plan-badge.badge-ultra {
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
  color: #1e40af;
  font-weight: 900;
}

.plan-badge.badge-enterprise {
  background: #0f172a;
  color: #f8fafc;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  color: var(--ink);
}

.pricing-card .card-target {
  font-size: 13.5px;
  color: #64748b;
  min-height: 40px;
  margin: 0 0 18px;
  line-height: 1.45;
}

.price-container {
  padding: 16px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.price-main .currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.price-main .price-val {
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.price-main .price-period {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-left: 4px;
}

.price-subnote {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 5px;
  font-weight: 600;
}

.price-subnote.highlight-annual {
  color: #16a34a;
  font-weight: 700;
}

.pricing-card .feature-list-title {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}

.pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.45;
}

.pricing-card .feature-list li strong {
  color: var(--ink);
  font-weight: 700;
}

.pricing-card .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}

.pricing-card .check-icon.gold {
  background: rgba(234, 179, 8, 0.16);
  color: #b45309;
}

.pricing-card .card-cta {
  width: 100%;
  margin-top: auto;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 14px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.pricing-card .btn-primary {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card .btn-primary:hover {
  background: linear-gradient(135deg, #1D4ED8, #1E40AF);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.pricing-card .btn-outline {
  background: #ffffff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
}

.pricing-card .btn-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
  transform: translateY(-2px);
}

/* ── Interactive ROI & Commission Savings Calculator ──────────────────── */
.roi-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.roi-container {
  max-width: 960px;
  margin: 0 auto;
}

.roi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.roi-slider-block {
  margin: 32px 0 36px;
}

.roi-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.roi-slider-label {
  font-size: 15px;
  font-weight: 700;
  color: #475569;
}

.roi-slider-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--pricing-primary);
  letter-spacing: -0.03em;
}

.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  outline: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
  border: 3px solid #ffffff;
}

.roi-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
  border: 3px solid #ffffff;
}

.roi-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.roi-box {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-align: center;
}

.roi-box.roi-savings {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.35);
}

.roi-box-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
}

.roi-box.roi-savings .roi-box-label {
  color: rgba(255, 255, 255, 0.9);
}

.roi-box-amount {
  font-size: 28px;
  font-weight: 950;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.roi-box.roi-savings .roi-box-amount {
  color: #ffffff;
  font-size: 32px;
}

.roi-box-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.roi-box.roi-savings .roi-box-sub {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Interactive Plan Finder / Mini Quiz ──────────────────────────────── */
.quiz-section {
  padding: 70px 0;
  background: #ffffff;
}

.quiz-card {
  max-width: 860px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 36px 32px;
}

.quiz-step {
  margin-bottom: 24px;
}

.quiz-step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiz-step-badge {
  background: var(--pricing-primary);
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quiz-opt-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.quiz-opt-btn:hover {
  border-color: var(--pricing-primary);
  color: var(--pricing-primary);
  transform: translateY(-2px);
}

.quiz-opt-btn.active {
  background: #eef2ff;
  border-color: #3b5bfd;
  color: #1e40af;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(59, 91, 253, 0.15);
}

.quiz-result-box {
  background: #ffffff;
  border: 2px solid #3b5bfd;
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quiz-result-text h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}

.quiz-result-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.quiz-result-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  transition: all 0.2s ease;
}

.quiz-result-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* ── Hardware & Compatibility Section ─────────────────────────────────── */
.hardware-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.hardware-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease;
}

.hardware-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hw-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.hardware-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
}

.hardware-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* ── Trust Metrics & Social Proof ─────────────────────────────────────── */
.metrics-section {
  padding: 60px 0;
  background: #ffffff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.metric-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
}

.metric-number {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 950;
  color: var(--pricing-primary);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
}

/* ── 3 Value Pillars ─────────────────────────────────────────────────── */
.pillars-section {
  padding: 60px 0;
  background: #ffffff;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.pillar-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--pricing-badge-bg);
  color: var(--pricing-primary);
}

.pillar-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}

.pillar-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Comparison Table ─────────────────────────────────────────────────── */
.comparison-section {
  padding: 70px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 36px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 820px;
}

.comparison-table thead th {
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table thead th:first-child {
  text-align: left;
  padding-left: 28px;
  width: 32%;
}

.comparison-table thead th.th-highlight {
  background: #eef2ff;
  color: #1e40af;
  border-bottom-color: #3b5bfd;
}

.comparison-table .category-header td {
  background: #f1f5f9;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  padding: 12px 28px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.comparison-table tbody td:first-child {
  text-align: left;
  padding-left: 28px;
  font-weight: 600;
  color: var(--ink);
}

.comparison-table tbody tr:hover td {
  background-color: #f8fafc;
}

.comparison-table tbody td.td-highlight {
  background-color: rgba(238, 242, 255, 0.4);
  font-weight: 700;
}

.comparison-table tbody tr:hover td.td-highlight {
  background-color: rgba(238, 242, 255, 0.7);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.status-badge.badge-check {
  color: #16a34a;
  background: #dcfce7;
}

.status-badge.badge-dash {
  color: #94a3b8;
}

.status-badge.badge-soon {
  color: #d97706;
  background: #fef3c7;
}

.status-badge.badge-text {
  color: #2563eb;
  background: #eff6ff;
}

/* ── FAQ Section ──────────────────────────────────────────────────────── */
.faq-section {
  padding: 70px 0;
  background: #f8fafc;
}

.faq-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.faq-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-card h3 .faq-q-icon {
  color: var(--pricing-primary);
  font-size: 18px;
  line-height: 1;
}

.faq-card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  padding-left: 28px;
}

/* ── CTA / Demo Section ───────────────────────────────────────────────── */
.pricing-cta-section {
  padding: 70px 0;
}

.cta-box-premium {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 32px;
  padding: 56px 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-box-premium::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 91, 253, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 14px 0 16px;
  line-height: 1.1;
  color: #ffffff;
}

.cta-content p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-actions .btn-wa {
  background: #22c55e;
  color: #ffffff;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.cta-actions .btn-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Modern Lead Form Card */
.lead-form-card-new {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.lead-form-card-new h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
}

.lead-form-card-new p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 20px;
}

.lead-form-new .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.lead-form-new label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 12px;
}

.lead-form-new input,
.lead-form-new select,
.lead-form-new textarea {
  width: 100%;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.lead-form-new input:focus,
.lead-form-new select:focus,
.lead-form-new textarea:focus {
  outline: none;
  border-color: var(--pricing-primary);
  box-shadow: 0 0 0 3px rgba(59, 91, 253, 0.15);
}

.lead-form-new textarea {
  min-height: 68px;
  resize: vertical;
}

.lead-form-new button[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.lead-form-new button[type="submit"]:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* ── Responsive Media Queries ─────────────────────────────────────────── */
@media (max-width: 1140px) {
  .pricing-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  .quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roi-output-grid {
    grid-template-columns: 1fr;
  }
  .cta-box-premium {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 38px 0 44px;
  }
  .pricing-page-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .free-digitize-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-left {
    flex-direction: column;
    text-align: center;
  }
  .quiz-options {
    grid-template-columns: 1fr;
  }
  .quiz-result-box {
    flex-direction: column;
    text-align: center;
  }
  .hardware-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .faq-accordion-grid {
    grid-template-columns: 1fr;
  }
  .lead-form-new .form-row-2 {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    gap: 8px 10px;
  }
  .trust-item {
    font-size: 12px;
    padding: 5px 10px;
  }
}
