/* ThriveWealth.ai - Pricing Page Styles (Burnt Orange / Navy / Black) */

/* ═══════════════════════════════════════════════════════════
   PRICING HERO — Dark with aurora gradient orbs
   ═══════════════════════════════════════════════════════════ */
.pricing-hero {
  background: #000;
  color: #fff;
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,85,0,0.25) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none;
  animation: orb-float-1 12s ease-in-out infinite alternate;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,46,0.3) 0%, transparent 70%);
  bottom: -180px;
  right: -80px;
  pointer-events: none;
  animation: orb-float-2 10s ease-in-out infinite alternate;
}

@keyframes orb-float-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes orb-float-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.05); }
}

.pricing-hero .container {
  position: relative;
  z-index: 2;
}

.pricing-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 40%, #cc5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-hero p {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.pricing-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.pricing-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.pricing-trust-badge svg {
  color: #16a34a;
}

/* ═══════════════════════════════════════════════════════════
   SECTION INTRO / PRODUCT BADGES
   ═══════════════════════════════════════════════════════════ */
.section-intro,
.lead-packages-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-intro h2,
.lead-packages-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-intro h2 {
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-packages-header h2 {
  color: #fff;
}

.section-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.lead-packages-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.lead-packages-header p strong {
  color: #cc5500;
}

/* Product badge pills */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(204,85,0,0.1) 0%, rgba(26,26,46,0.1) 100%);
  border: 1px solid rgba(204,85,0,0.25);
  color: #cc5500;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.product-badge-light {
  background: rgba(204,85,0,0.08);
  border-color: rgba(204,85,0,0.25);
  color: #cc5500;
}

/* ═══════════════════════════════════════════════════════════
   AI PRICING SECTION — Light with subtle organic background
   ═══════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 5rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,85,0,0.04) 0%, transparent 60%);
  top: -300px;
  right: -200px;
  pointer-events: none;
}

.pricing-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,46,0.03) 0%, transparent 60%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(0);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(204,85,0,0.15), 0 0 0 1px rgba(204,85,0,0.2), 0 0 80px rgba(204,85,0,0.06) !important;
  border-color: #cc5500 !important;
}

.pricing-card.featured {
  border-color: #cc5500;
  box-shadow: 0 8px 30px rgba(204,85,0,0.12), 0 0 0 1px rgba(204,85,0,0.15);
}

.pricing-card.scale {
  border-color: #cc5500;
  box-shadow: 0 4px 20px rgba(204,85,0,0.08), 0 0 0 1px rgba(204,85,0,0.1);
}

/* Diagonal Corner Ribbon for AI Cards */
.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  pointer-events: none;
}

.pricing-badge::before {
  position: absolute;
  top: 18px;
  right: -28px;
  width: 120px;
  padding: 6px 0;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-badge.popular::before {
  content: "★ POPULAR";
  background: linear-gradient(135deg, #cc5500 0%, #e06600 100%);
  color: #fff;
}

.pricing-badge.best-value::before {
  content: "BEST VALUE";
  background: linear-gradient(135deg, #cc5500 0%, #e06600 100%);
  color: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #cc5500;
}

.pricing-price .period {
  font-size: 1rem;
  color: #777;
}

.pricing-tagline {
  font-size: 0.875rem;
  color: #777;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pricing-features li.highlight {
  color: #cc5500;
  font-weight: 600;
}

.pricing-features li.highlight::before {
  background-color: #cc5500;
}

.btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pricing-card > .btn-block {
  margin-top: auto;
}

/* Pricing Outline Button */
.btn-pricing-outline {
  background: transparent;
  border: 2px solid #cc5500;
  color: #cc5500;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pricing-outline:hover {
  background: #cc5500;
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25);
}

/* ═══════════════════════════════════════════════════════════
   TRIAL SECTION
   ═══════════════════════════════════════════════════════════ */
.trial-section {
  padding: 3.5rem 0;
  background: #f9f9f7;
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,85,0,0.06) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.trial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 2.5rem 4rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0,0,0,0.02);
}

.trial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(204,85,0,0.1), 0 0 0 1px rgba(204,85,0,0.12);
}

.trial-icon {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(204,85,0,0.15);
}

.trial-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.text-cyan {
  color: #cc5500;
}

.trial-card p {
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.trial-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.trial-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #cc5500;
}

.btn-trial {
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  box-shadow: 0 6px 20px rgba(204,85,0,.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-trial:hover {
  background: #cc5500;
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25), 0 10px 28px rgba(204,85,0,.3);
}

/* ═══════════════════════════════════════════════════════════
   LEAD PACKAGES SECTION — Dark with burnt orange aurora
   ═══════════════════════════════════════════════════════════ */
.lead-packages-section {
  padding: 5rem 0;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lead-packages-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,85,0,0.15) 0%, transparent 65%);
  top: -250px;
  right: -200px;
  pointer-events: none;
  animation: orb-float-1 14s ease-in-out infinite alternate;
}

.lead-packages-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,46,0.2) 0%, transparent 65%);
  bottom: -250px;
  left: -150px;
  pointer-events: none;
  animation: orb-float-2 12s ease-in-out infinite alternate;
}

.lead-packages-section .container {
  position: relative;
  z-index: 2;
}

.lead-packages-section .lead-glow-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #cc5500, #1a1a2e, #cc5500, transparent);
  opacity: 0.5;
}

.lead-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

/* ── Lead Card (Dark Theme) ── */
.lead-card {
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.lead-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 20px 60px rgba(204,85,0,0.15), 0 0 0 1px rgba(204,85,0,0.2), 0 0 80px rgba(204,85,0,0.06) !important;
}

/* Top accent bar */
.lead-card-accent {
  height: 4px;
  width: 100%;
}

.accent-cyan { background: #cc5500; }
.accent-green { background: #cc5500; }
.accent-gradient { background: linear-gradient(90deg, #1a1a2e, #cc5500); }

/* Card inner padding */
.lead-card-icon,
.lead-card h3,
.lead-card-desc,
.lead-card-price,
.lead-card-highlights,
.lead-card-divider,
.lead-card-features,
.lead-card .btn,
.lead-card-customize {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.lead-card .btn.btn-block {
  width: auto;
}

/* Icon box */
.lead-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.icon-cyan { background: rgba(204,85,0,0.15); color: #cc5500; }
.icon-green { background: rgba(204,85,0,0.15); color: #e06600; }
.icon-amber { background: rgba(204,85,0,0.15); color: #cc5500; }
.icon-purple { background: rgba(26,26,46,0.5); color: #cc5500; }

/* Card title */
.lead-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Card description */
.lead-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 2.5rem;
}

/* Price */
.lead-card-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.lead-card-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.lead-card-price .period {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* Highlights section */
.lead-card-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.highlight-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.hcheck {
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.hcheck.cyan { color: #cc5500; }
.hcheck.green { color: #e06600; }
.hcheck.purple { color: #cc5500; }

.highlight-row strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.highlight-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2px;
}

/* Divider */
.lead-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

/* Feature list */
.lead-card-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.lead-card-features li {
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lead-card-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.lead-card-features.cyan-checks li::before {
  background-color: rgba(204,85,0,0.3);
}

.lead-card-features.green-checks li::before {
  background-color: rgba(204,85,0,0.35);
}

.lead-card-features.purple-checks li::before {
  background-color: rgba(204,85,0,0.3);
}

/* Buttons (dark theme) */
.btn-lead-outline {
  background: transparent;
  border: 2px solid rgba(204,85,0,0.5);
  color: #cc5500;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-bottom: 1rem;
}

.btn-lead-outline:hover {
  background: #cc5500;
  border-color: #cc5500;
  color: #fff;
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25);
}

.btn-lead-primary {
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(204,85,0,.15);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-bottom: 1rem;
}

.btn-lead-primary:hover {
  background: #cc5500;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25), 0 10px 28px rgba(204,85,0,.3);
}

.btn-lead-purple {
  background: transparent;
  border: 2px solid rgba(204,85,0,0.4);
  color: #cc5500;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-bottom: 1rem;
}

.btn-lead-purple:hover {
  background: #cc5500;
  border-color: #cc5500;
  color: #fff;
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25);
}

/* Customize footer text */
.lead-card-customize {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding-bottom: 1.5rem;
}

/* ── Most Popular badge ── */
.lead-card-badge-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #cc5500 0%, #e06600 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  z-index: 2;
}

/* Popular card (Growth) */
.lead-popular {
  border-color: rgba(204,85,0,0.25);
  box-shadow: 0 0 30px rgba(204,85,0,0.08);
}

.lead-popular:hover {
  box-shadow: 0 20px 60px rgba(204,85,0,0.2), 0 0 0 1px rgba(204,85,0,0.25), 0 0 80px rgba(204,85,0,0.08) !important;
}

/* ── Enterprise card ── */
.lead-enterprise {
  background: rgba(10, 10, 20, 0.9);
  border: none;
  position: relative;
}

.lead-enterprise::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #cc5500 0%, #1a1a2e 50%, #cc5500 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.lead-enterprise:hover {
  box-shadow: 0 20px 60px rgba(204,85,0,0.2), 0 0 80px rgba(204,85,0,0.08) !important;
}

/* ═══════════════════════════════════════════════════════════
   QUESTIONS / CTA SECTION — Dark immersive
   ═══════════════════════════════════════════════════════════ */
.questions-section {
  padding: 5rem 0;
  background: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.questions-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(204,85,0,0.2) 0%, rgba(26,26,46,0.15) 40%, transparent 70%);
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}

.questions-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,85,0,0.08) 0%, transparent 60%);
  top: -100px;
  right: 10%;
  pointer-events: none;
  filter: blur(30px);
}

.questions-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a1a2e, #cc5500, #1a1a2e, #cc5500, #1a1a2e);
  background-size: 200% 100%;
  animation: glow-line-shift 4s linear infinite;
}

@keyframes glow-line-shift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.questions-section .container {
  position: relative;
  z-index: 2;
}

.questions-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.questions-section p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

.questions-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.questions-section .btn-primary {
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(204,85,0,.15);
}

.questions-section .btn-primary:hover {
  background: #cc5500;
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25), 0 10px 28px rgba(204,85,0,.3);
  transform: translateY(-3px);
}

.questions-section .btn-outline {
  background: #cc5500;
  border-color: transparent;
  color: #fff;
}

.questions-section .btn-outline:hover {
  background: #e06600;
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25);
  transform: translateY(-3px);
}

.questions-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .pricing-grid,
  .lead-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .lead-packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card.featured,
  .lead-popular {
    transform: none;
  }
  
  .pricing-features {
    min-height: auto;
  }

  .questions-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .trial-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .trial-icon {
    display: none;
  }

  .pricing-hero {
    padding: 6rem 0 3rem;
  }

  .pricing-hero h1 {
    font-size: 1.75rem;
  }

  .section-intro h2,
  .lead-packages-header h2 {
    font-size: 1.5rem;
  }

  .pricing-trust-badges {
    gap: 1rem;
  }
}
