/* =====================================================
   AKD Ink — Enhancement styles
   Deal banner, trust bar, testimonials, ext-link modal
   ===================================================== */

/* ---- Modal hint copy (under contact-info modal fields) ---- */
.modal-hint { font-size: 12px; color: var(--fg-muted); margin: 4px 0 10px; line-height: 1.4; }

/* ---- Trust bar ---- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: #f2f0eb;
  padding: 14px 48px;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 13px;
  color: #444;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  white-space: nowrap;
}

.trust-item span:last-child { line-height: 1.35; }

.trust-item a {
  color: #090302;
  text-decoration: none;
  font-weight: 600;
}

.trust-item a:hover {
  text-decoration: underline;
}

.trust-icon {
  font-size: 15px;
  line-height: 1;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: #ccc;
  flex-shrink: 0;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 80px 48px;
  background: var(--bg, #fff);
}

.testimonials-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.testimonials-header h2 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #090302;
  margin: 0;
}

.rating-badge {
  background: #A9D01E;
  color: #090302;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e0db;
  border-radius: 8px;
  padding: 28px;
}

.stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.testimonial-quote {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 16px;
}

.testimonial-author {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #090302;
}

.testimonial-location {
  font-weight: 400;
  color: #888;
}

.testimonial-company {
  display: block;
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ---- External link modal ---- */
.ext-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 3, 2, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ext-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  position: relative;
}

.ext-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
}

.ext-modal-close:hover {
  color: #090302;
}

.ext-modal-title {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #090302;
  margin: 0 0 12px;
}

.ext-modal-body {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px;
}

.ext-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-stay {
  background: none;
  border: 2px solid #090302;
  color: #090302;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-stay:hover {
  background: #f2f0eb;
}

.btn-continue {
  background: #A9D01E;
  color: #090302;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-continue:hover {
  opacity: 0.85;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .trust-bar {
    padding: 10px 16px;
    justify-content: flex-start;
  }

  .trust-item {
    padding: 4px 12px;
  }

  .trust-divider {
    display: none;
  }

  .testimonials {
    padding: 48px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
