/* ── DebtPro Global Styles ── */
  .dp-wrapper { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a202c; line-height: 1.7; }
  .dp-wrapper * { box-sizing: border-box; margin: 0; padding: 0; }
  .dp-wrapper img { max-width: 100%; height: auto; }
  .dp-wrapper a { color: #c9a84c; text-decoration: none; transition: color 0.3s; }
  .dp-wrapper a:hover { color: #b8943f; }

  /* ── Fade-in Animation ── */
  .dp-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
  .dp-fade.dp-visible { opacity: 1; transform: translateY(0); }
  .dp-fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
  .dp-fade-left.dp-visible { opacity: 1; transform: translateX(0); }
  .dp-fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
  .dp-fade-right.dp-visible { opacity: 1; transform: translateX(0); }

  /* ── Hero Section ── */
  .dp-hero { background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2a4a7f 100%); padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
  .dp-hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 70%, rgba(201,168,76,0.08) 0%, transparent 50%); pointer-events: none; }
  .dp-hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, #c9a84c, transparent); }
  .dp-hero * { color: #ffffff !important; }
  .dp-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
  .dp-hero p { font-size: 1.2rem; max-width: 680px; margin: 0 auto 32px; opacity: 0.9; line-height: 1.6; }
  .dp-hero-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: #c9a84c !important; padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }

  /* ── Section Containers ── */
  .dp-section { padding: 80px 20px; }
  .dp-section-white { background: #ffffff; }
  .dp-section-gray { background: #f8fafc; }
  .dp-section-dark { background: #0a1628; }
  .dp-section-dark * { color: #ffffff !important; }
  .dp-section-dark a { color: #c9a84c !important; }
  .dp-container { max-width: 1140px; margin: 0 auto; }

  /* ── Typography ── */
  .dp-section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 16px; color: #0a1628; }
  .dp-section-dark .dp-section-title { color: #ffffff !important; }
  .dp-section-subtitle { font-size: 1.05rem; text-align: center; max-width: 640px; margin: 0 auto 48px; color: #64748b; }
  .dp-section-dark .dp-section-subtitle { color: rgba(255,255,255,0.7) !important; }
  .dp-gold-line { width: 60px; height: 3px; background: #c9a84c; margin: 0 auto 24px; border-radius: 2px; }

  /* ── Buttons ── */
  .dp-btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
  .dp-btn-gold { background: #c9a84c; color: #0a1628 !important; }
  .dp-btn-gold:hover { background: #b8943f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
  .dp-btn-outline { background: transparent; color: #c9a84c !important; border: 2px solid #c9a84c; }
  .dp-btn-outline:hover { background: #c9a84c; color: #0a1628 !important; }
  .dp-btn-white { background: #ffffff; color: #0a1628 !important; }
  .dp-btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

  /* ── Cards ── */
  .dp-card { background: #ffffff; border-radius: 12px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #e2e8f0; }
  .dp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: #c9a84c; }
  .dp-card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #0a1628, #1a365d); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .dp-card-icon svg { width: 28px; height: 28px; }
  .dp-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #0a1628; }
  .dp-card p { font-size: 0.95rem; color: #64748b; line-height: 1.6; }

  /* ── Grid Layouts ── */
  .dp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .dp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .dp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

  /* ── Stats Bar ── */
  .dp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px 0; }
  .dp-stat { text-align: center; }
  .dp-stat-number { font-size: 2.4rem; font-weight: 800; color: #c9a84c !important; display: block; }
  .dp-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7) !important; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

  /* ── Process Steps ── */
  .dp-steps { display: flex; justify-content: space-between; position: relative; padding: 20px 0; }
  .dp-steps::before { content: ''; position: absolute; top: 40px; left: 60px; right: 60px; height: 3px; background: linear-gradient(90deg, #c9a84c, #1a365d); z-index: 0; }
  .dp-step { text-align: center; position: relative; z-index: 1; flex: 1; padding: 0 12px; }
  .dp-step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #c9a84c, #b8943f); color: #0a1628 !important; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
  .dp-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #0a1628; }
  .dp-step p { font-size: 0.88rem; color: #64748b; line-height: 1.5; }

  /* ── CTA Section ── */
  .dp-cta-section { background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%); padding: 80px 20px; text-align: center; position: relative; }
  .dp-cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, #c9a84c, transparent); }
  .dp-cta-section * { color: #ffffff !important; }
  .dp-cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
  .dp-cta-section p { font-size: 1.1rem; max-width: 560px; margin: 0 auto 32px; opacity: 0.85; }

  /* ── Check List ── */
  .dp-checklist { list-style: none; padding: 0; }
  .dp-checklist li { padding: 10px 0; padding-left: 32px; position: relative; font-size: 1rem; color: #334155; }
  .dp-checklist li::before { content: ''; position: absolute; left: 0; top: 14px; width: 20px; height: 20px; background: linear-gradient(135deg, #c9a84c, #b8943f); border-radius: 50%; }
  .dp-checklist li::after { content: ''; position: absolute; left: 6px; top: 18px; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

  /* ── Cross Links ── */
  .dp-crosslinks { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
  .dp-crosslink { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: #c9a84c !important; transition: all 0.3s; }
  .dp-crosslink:hover { background: rgba(201,168,76,0.15); border-color: #c9a84c; }

  /* ── Mobile Responsive ── */
  @media (max-width: 768px) {
    .dp-hero { padding: 60px 16px; }
    .dp-hero h1 { font-size: 1.8rem; }
    .dp-hero p { font-size: 1rem; }
    .dp-section { padding: 48px 16px; }
    .dp-section-title { font-size: 1.5rem; }
    .dp-grid-2, .dp-grid-3, .dp-grid-4 { grid-template-columns: 1fr; }
    .dp-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .dp-steps { flex-direction: column; gap: 32px; }
    .dp-steps::before { display: none; }
    .dp-stat-number { font-size: 1.8rem; }
    .dp-btn { display: block; text-align: center; }
  }


/* dp-payment-processing specific */
.dp-payment-icon { width: 72px; height: 72px; border-radius: 16px; background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05)); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all 0.3s; }
  .dp-payment-card:hover .dp-payment-icon { background: linear-gradient(135deg, #0a1628, #1a365d); border-color: #1a365d; }
  .dp-payment-card:hover .dp-payment-icon svg { stroke: #ffffff !important; }
  .dp-feature-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid #e2e8f0; }
  .dp-feature-row:last-child { border-bottom: none; }
  .dp-feature-dot { width: 10px; height: 10px; border-radius: 50%; background: #c9a84c; flex-shrink: 0; margin-top: 7px; }

/* dp-ai-crm specific */
.dp-feature-section { padding: 64px 0; }
  .dp-feature-section:nth-child(even) .dp-grid-2 { direction: rtl; }
  .dp-feature-section:nth-child(even) .dp-grid-2 > div { direction: ltr; }
  .dp-dashboard-mock { background: #0f1b2e; border-radius: 16px; padding: 32px; border: 1px solid rgba(201,168,76,0.2); position: relative; overflow: hidden; }
  .dp-dashboard-mock::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40px; background: #0a1628; border-radius: 16px 16px 0 0; }
  .dp-dashboard-dots { position: absolute; top: 12px; left: 16px; display: flex; gap: 6px; z-index: 2; }
  .dp-dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
  .dp-metric-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.15); border-radius: 10px; padding: 20px; text-align: center; }
  .dp-metric-card h4 { color: #c9a84c !important; font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
  .dp-metric-card p { color: rgba(255,255,255,0.6) !important; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }

/* dp-license-requirements specific */
.dp-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
  .dp-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
  .dp-table th { background: #0a1628; color: #ffffff !important; padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; position: sticky; top: 0; }
  .dp-table th:not(:first-child) { text-align: center; }
  .dp-table td { border-bottom: 1px solid #f1f5f9; }
  .dp-table tr:hover { background: #fef9ec !important; }

/* dp-faqs specific */
/* FAQ Accordion */
  .dp-wrapper input[type="checkbox"]:checked + label { background: #f8fafc; }
  .dp-wrapper input[type="checkbox"]:checked + label .dp-faq-chevron { transform: rotate(45deg); }
  .dp-wrapper input[type="checkbox"]:checked + label + .dp-faq-answer { max-height: 500px; transition: max-height 0.5s ease-in; }
  .dp-wrapper label:hover { background: #fef9ec; }
