/**
 * SpotPro public marketing — feature cards, screenshot grids, highlights.
 */

/* ---- Section headings ---- */
.sp-section-heading h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #04193e;
  margin-bottom: 0.35rem;
}

.sp-section-heading p {
  font-size: 1rem;
  max-width: 42rem;
}

/* ---- Feature cards (inner pages) ---- */
.sp-feature-section {
  margin-top: 0.5rem;
}

.sp-feature-card {
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.sp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4, 25, 62, 0.1) !important;
}

.sp-feature-card .card-body {
  padding: 1.35rem 1.4rem 1.4rem;
}

.sp-feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #edf4fc, #f8fbff);
  color: #0a3283;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.sp-feature-card .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #04193e;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.sp-feature-card .card-text {
  font-size: 0.9rem;
  color: #5c6b7a;
  line-height: 1.55;
  margin-bottom: 0;
}

.sp-feature-card--accent {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  box-shadow: 0 4px 20px rgba(16, 110, 234, 0.08) !important;
  border: 1px solid rgba(16, 110, 234, 0.15) !important;
}

.sp-feature-card--accent .sp-feature-card-icon {
  background: linear-gradient(135deg, #0a3283, #106eea);
  color: #fff;
}

/* ---- Screenshot grids ---- */
.sp-shot-section {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.sp-shot {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-shot img {
  display: block;
  width: 100%;
  height: auto;
}

a.sp-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.sp-shot-caption {
  font-size: 0.875rem;
  color: #5c6b7a;
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.sp-shot-caption strong {
  color: #04193e;
  font-weight: 600;
}

/* Legacy class aliases (pages not yet migrated) */
.image-row {
  margin-top: 2.5rem;
}

.image-gallery {
  border-radius: 12px;
  border: 1px solid #e8eef5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.image-gallery:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.image-info {
  font-size: 0.875rem;
  color: #5c6b7a;
}

/* ---- Payment / callout panel ---- */
.sp-callout {
  border-radius: 14px;
  border: 1px solid rgba(16, 110, 234, 0.2);
  background: linear-gradient(135deg, #f0f6ff, #fff);
  padding: 1.5rem 1.75rem;
}

.sp-callout h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #04193e;
  margin-bottom: 0.75rem;
}

.sp-callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem 1.25rem;
}

.sp-callout-item strong {
  display: block;
  color: #04193e;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.sp-callout-item span {
  font-size: 0.85rem;
  color: #5c6b7a;
  line-height: 1.45;
}

/* ---- Greysheet accents ---- */
.gs-pillar {
  border-left: 4px solid #0a3283;
  padding: 0.75rem 0 0.75rem 1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #444;
  background: #f8fbff;
  border-radius: 0 8px 8px 0;
  height: 100%;
}

.gs-value-chip {
  display: inline-block;
  background: #edf4fc;
  color: #04193e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  margin: 0.15rem 0.25rem 0.15rem 0;
}

/* ---- Homepage highlight cards ---- */
#highlights .sp-highlight-card {
  text-align: left;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 1.25rem;
  background: #fff;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#highlights .sp-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(4, 25, 62, 0.1);
  border-color: rgba(16, 110, 234, 0.25);
}

#highlights .sp-highlight-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

#highlights .sp-highlight-card h4 a {
  color: #04193e;
}

#highlights .sp-highlight-card h4 a:hover {
  color: #106eea;
}

#highlights .sp-highlight-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#highlights .sp-highlight-thumb img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  object-position: top center;
}

#highlights .sp-highlight-card:hover .sp-highlight-thumb {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

#highlights .sp-highlight-card p {
  font-size: 0.9rem;
  color: #5c6b7a;
  line-height: 1.55;
  margin: 0;
}

/* ---- Nav polish ---- */
.navbar .nav-cta a {
  background: linear-gradient(135deg, #106eea, #0a3283);
  color: #fff !important;
  padding: 0.45rem 1rem !important;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 0.25rem;
}

.navbar .nav-cta a:hover,
.navbar .nav-cta a:focus {
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(16, 110, 234, 0.35);
}

.navbar .nav-cta a:before {
  display: none !important;
}

.navbar .features-dropdown > ul {
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 10px;
  min-width: 220px;
}

.navbar .features-dropdown > ul a {
  font-size: 14px;
  padding: 9px 18px;
}

.navbar .features-dropdown.dropdown-open > ul,
.navbar .features-dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* ---- Footer social ---- */
.footer-share h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-share .social-links a {
  margin-right: 0.35rem;
}

/* ---- Inner page legacy cards (scoped downgrade) ---- */
.inner-page .card:not(.sp-feature-card) {
  border-radius: 12px;
  border: 1px solid #e8eef5;
}

.inner-page .card:not(.sp-feature-card) .card-title {
  font-size: 1.05rem;
  letter-spacing: 0;
  color: #04193e;
}