/* Page-specific tweaks go here (one-off overrides) */

/* Insights list hero */
.insights-categories {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-6);
}

.chip {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--color-border);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.chip:hover { border-color: var(--color-circuit); color: var(--color-circuit); }
.chip.is-active { background: var(--color-circuit); border-color: var(--color-circuit); color: white; }

/* Quality: badges featured */
.quality-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-5);
  margin-block: var(--sp-7);
}

.quality-badge {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-out);
}

.quality-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.quality-badge-name {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--sp-3);
}

.quality-badge-desc {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* About: values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.value-card {
  padding: var(--sp-6);
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  text-align: center;
}

.value-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-4);
  background: white;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-circuit);
  box-shadow: var(--shadow-sm);
}

.value-card .icon svg,
.value-card .icon img { width: 26px; height: 26px; display: block; object-fit: contain; }

.value-card h4 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.value-card p { font-size: var(--fs-sm); }

/* Thank you page */
.thanks {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.thanks-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-success);
  color: white;
  margin: 0 auto var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop var(--dur-slow) var(--ease-out);
}

.thanks-icon svg { width: 44px; height: 44px; }

@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Services page: detailed card */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  padding-block: var(--sp-7);
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child { border-bottom: 0; }
.service-detail:nth-child(even) > :first-child { order: 2; }

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-circuit));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: var(--sp-6);
}

.service-detail-visual svg { width: 70%; height: 70%; }

.service-detail ul {
  margin-top: var(--sp-4);
}

.service-detail li {
  position: relative;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: rgba(30, 91, 198, 0.1);
  border-radius: 50%;
}

.service-detail li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-circuit);
  border-bottom: 2px solid var(--color-circuit);
  transform: rotate(45deg);
}

@media (max-width: 820px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .service-detail:nth-child(even) > :first-child { order: 0; }
  .quality-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .thanks-icon { width: 72px; height: 72px; }
}
