/* Marking page styles */

/* Hero */
.marking-hero {
  text-align: center;
  padding: 2em 0 1.5em;
}
.marking-h1 {
  font-size: 2.4em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.marking-subhead {
  font-size: 1.05em;
  color: #5d5d5d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Trust strip */
.marking-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  background: #f9f9f9;
  border-radius: 4px;
  padding: 1.2em 2em;
  margin: 0 0 2.5em;
}
.marking-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9em;
  color: #444;
}
.marking-trust-item .icon {
  color: #d52349;
  font-size: 1em;
}

/* Service cards */
.price {
  font-size: 1.75em;
  font-weight: bold;
  margin: 0.5em 0;
  color: #4caf50;
}
.save {
  font-size: 0.55em;
  color: #d52349;
  font-weight: bold;
  display: inline-block;
  background: #fdecea;
  padding: 0.15em 0.5em;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 0.3em;
}
.service-best-for {
  font-size: 0.82em;
  color: #888;
  margin: 0 0 0.8em;
  font-style: italic;
}
.service-option {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.service-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.selected-service {
  border: 2px solid #4caf50 !important;
  transform: scale(1.02);
}
.service-popular {
  border: 2px solid #d52349;
}
.popular-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #d52349;
  color: white;
  font-size: 0.72em;
  font-weight: bold;
  padding: 0.25em 0.8em;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* Email capture in payment selection */
.marking-email-capture {
  margin: 1em 0 1.25em;
}
.marking-email-capture label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  font-size: 0.9em;
}
.marking-email-capture input[type="email"] {
  width: 100%;
  max-width: 380px;
  padding: 0.6em 0.9em;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.95em;
}
.marking-email-error {
  display: block;
  color: #d52349;
  font-size: 0.85em;
  margin-top: 0.35em;
  min-height: 1.2em;
}

/* Testimonials */
.marking-testimonials {
  margin-top: 3em;
}
.marking-testimonial {
  background: #f9f9f9;
  border-left: 3px solid #d52349;
  border-radius: 0 4px 4px 0;
  padding: 1.5em;
  height: 100%;
  box-sizing: border-box;
}
.marking-stars {
  color: #f5a623;
  font-size: 1.1em;
  margin-bottom: 0.6em;
}
.marking-quote {
  font-style: italic;
  font-size: 0.9em;
  line-height: 1.6;
  color: #5d5d5d;
  margin: 0 0 0.75em;
}
.marking-reviewer {
  font-size: 0.82em;
  font-weight: 600;
  color: #252122;
  margin: 0;
}

/* Cross-sell CTA section */
.marking-crosssell {
  margin-top: 3em;
  padding: 2em;
  background: #f9f9f9;
  border-radius: 4px;
  text-align: center;
}

/* 24-hour fast-track callout */
.marking-fast-track {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #d52349;
  border-radius: 0 4px 4px 0;
  padding: 1.25em 1.5em;
  margin: 1.5em 0 0;
}

.marking-fast-track .icon {
  color: #d52349;
  font-size: 1.2em;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.marking-fast-track strong {
  display: block;
  margin-bottom: 0.35em;
  color: #252122;
}

.marking-fast-track p {
  margin: 0;
  font-size: 0.92em;
  color: #5d5d5d;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 768px) {
  .marking-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8em;
    padding: 1em 1.5em;
  }
  .marking-h1 {
    font-size: 1.9em;
  }
  .marking-testimonial {
    margin-bottom: 1em;
  }
}
