/* brand-year-model.css */

.model-cta-section {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  border: 1px solid var(--sky-pale);
  border-radius: 16px;
  padding: 28px 24px;
  margin: 32px 0;
}
.model-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0;
}
.model-cta-card {
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s ease;
}
.model-cta-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(91, 155, 213, 0.14);
}
.model-cta-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, #f0f7ff, #dbeafe);
  color: var(--sky);
  margin-bottom: 4px;
}
.model-cta-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.model-cta-card__header .model-cta-card__icon { margin-bottom: 0; }
.model-cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.model-cta-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 4px;
}
.model-cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
  border: none;
  cursor: pointer;
}
.model-cta-card__btn--primary {
  background: var(--sky);
  color: var(--white);
}
.model-cta-card__btn--primary:hover {
  background: #0056b3;
  transform: translateY(-1px);
  text-decoration: none;
}
.model-cta-card__btn--ghost {
  background: transparent;
  color: var(--sky);
  border: 1.5px solid var(--sky);
}
.model-cta-card__btn--ghost:hover {
  background: var(--sky);
  color: var(--white);
  text-decoration: none;
}
.model-cta-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 14px 0 0;
  font-style: italic;
}

@media (max-width: 600px) {
  .model-cta-grid { grid-template-columns: 1fr; }
}
.year-switcher { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.year-switcher__link {
  padding: 6px 14px;
  border: 1.5px solid var(--sky-pale);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.year-switcher__link:hover { border-color: #007AFF; color: #007AFF; background: rgba(0, 122, 255, 0.06); }
.year-switcher__link--active,
.year-switcher__link--active:hover {
  background: #007AFF;
  color: #fff;
  border-color: #007AFF;
  box-shadow: 0 4px 14px rgba(0, 122, 255, 0.35);
  transform: translateY(-1px);
}
.trim-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.trim-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px;
  background: var(--white);
  border: 1.5px solid var(--sky-pale);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.15s;
}
.trim-card:hover { border-color: var(--sky); transform: translateY(-2px); text-decoration: none; }
.trim-card__body { font-size: 12px; color: var(--sky); font-weight: 600; text-transform: uppercase; }
.trim-card__motor { font-size: 13px; font-weight: 600; }
.trim-card__name { font-size: 13px; color: var(--ink-soft); }