/* DigiParser Pro CTA — conversion block above feature cards */
.dp-pro-cta {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.dp-pro-cta__inner {
  position: relative;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.1) 45%, rgba(34, 211, 238, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

[data-bs-theme="dark"] .dp-pro-cta__inner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(168, 85, 247, 0.12) 50%, rgba(34, 211, 238, 0.1) 100%);
  border-color: rgba(129, 140, 248, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.dp-pro-cta__eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--md-sys-color-primary, #4f46e5);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .dp-pro-cta__eyebrow {
    justify-content: center;
  }
}

.dp-pro-cta__eyebrow .material-symbols-rounded {
  font-size: 1.125rem;
}

.dp-pro-cta__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--md-sys-color-on-surface, #0f172a);
  margin: 0 0 0.875rem;
}

[data-bs-theme="dark"] .dp-pro-cta__title {
  color: var(--md-sys-color-on-surface, #f1f5f9);
}

.dp-pro-cta__lead {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--md-sys-color-on-surface-variant, #475569);
  margin: 0 0 1.5rem;
  max-width: 38rem;
}

[data-bs-theme="dark"] .dp-pro-cta__lead {
  color: var(--md-sys-color-on-surface-variant, #94a3b8);
}

.dp-pro-cta__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.dp-pro-cta__highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--md-sys-color-on-surface, #334155);
}

[data-bs-theme="dark"] .dp-pro-cta__highlight {
  color: #cbd5e1;
}

.dp-pro-cta__highlight .material-symbols-rounded {
  font-size: 1.25rem;
  color: #6366f1;
}

[data-bs-theme="dark"] .dp-pro-cta__highlight .material-symbols-rounded {
  color: #a5b4fc;
}

.dp-pro-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .dp-pro-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

.dp-pro-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dp-pro-cta__btn-primary:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.dp-pro-cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 2px solid rgba(99, 102, 241, 0.45);
  background: transparent;
  color: var(--md-sys-color-primary, #4f46e5) !important;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.dp-pro-cta__btn-secondary:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.7);
  color: var(--md-sys-color-primary, #4338ca) !important;
}

[data-bs-theme="dark"] .dp-pro-cta__btn-secondary {
  border-color: rgba(165, 180, 252, 0.5);
  color: #c7d2fe !important;
}

[data-bs-theme="dark"] .dp-pro-cta__btn-secondary:hover {
  background: rgba(99, 102, 241, 0.2);
  color: #e0e7ff !important;
}

.dp-pro-cta__btn-primary .material-symbols-rounded,
.dp-pro-cta__btn-secondary .material-symbols-rounded {
  font-size: 1.125rem;
}

.dp-pro-cta__fineprint {
  font-size: 0.8rem;
  color: var(--md-sys-color-on-surface-variant, #64748b);
  margin: 1rem 0 0;
}

[data-bs-theme="dark"] .dp-pro-cta__fineprint {
  color: #94a3b8;
}

#footer {
  display: flex;
  flex-direction: column;
  /* Stack children vertically */
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-center {
  display: flex;
  align-items: center;
  /* Center children horizontally */
  flex-grow: 1;
  flex-direction: column;
}

.footer-powered-by {
  margin-top: auto;
  /* Pushes the text to the bottom */
  text-align: center;
  /* Centers the text inside the div */
  width: 100%;
  /* Full width to center the text properly */
}

.stirling-link {
  text-decoration: none;
  /* Remove the underline */
  color: inherit;
  /* Keep the text color the same as the surrounding text */
  cursor: pointer;
  /* Change the cursor to indicate it's clickable */
  font-weight: bold;
  /* Make it bold to subtly hint that it's clickable */
  transition: color 0.3s ease;
  /* Add a smooth transition effect for color change on hover */
}

.stirling-link:hover {
  color: #007BFF;
  /* Change the color on hover to a noticeable link color */
}

.footer-icon {
  font-size: 2rem;
}

.footer-link {
  text-decoration: none;
}

.features-footer {
  padding: 2rem 0;
  margin-bottom: 5rem;
}

.features-footer .features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.features-footer .feature-card {
  background: var(--feature-card-bg);
  border: 1px solid var(--feature-card-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px var(--feature-card-shadow);
}

.features-footer .feature-card .material-symbols-rounded {
  font-size: 2.5rem;
  color: var(--feature-icon-color);
  margin-bottom: 1rem;
}

.features-footer .feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--md-sys-color-on-surface);
}

.features-footer .feature-card p {
  font-size: 0.9rem;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .features-footer .features-container {
    grid-template-columns: 1fr;
  }

  .features-footer .feature-card {
    padding: 1rem;
  }
}
