/* DirectShift.in — Design System & Homepage */

:root {
  --yellow: #f5b800;
  --yellow-hover: #e0a800;
  --yellow-soft: #fff8e6;
  --yellow-muted: #f0c94d;
  --charcoal: #1c1f24;
  --charcoal-soft: #2a2f36;
  --text: #1c1f24;
  --text-secondary: #5a6169;
  --text-muted: #8a9199;
  --border: #e6e8eb;
  --border-soft: #eef0f2;
  --bg: #ffffff;
  --bg-muted: #f7f8fa;
  --bg-card: #ffffff;
  --verified: #1a9a5c;
  --verified-bg: #e8f7ef;
  --shadow-sm: 0 1px 2px rgba(28, 31, 36, 0.04);
  --shadow-md: 0 4px 16px rgba(28, 31, 36, 0.06);
  --shadow-lg: 0 12px 32px rgba(28, 31, 36, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --container: 1180px;
  --header-h: 72px;
  --font: "Montserrat", "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-direct {
  color: var(--charcoal);
}

.logo-shift {
  color: var(--yellow);
  position: relative;
}

.logo-shift .dot {
  color: var(--yellow);
}

.logo-tld {
  color: var(--charcoal);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  transition: color 0.15s, background 0.15s;
}

.nav-trigger {
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover,
.nav a.is-active,
.nav-trigger:hover,
.nav-trigger.is-active,
.nav-trigger[aria-expanded="true"] {
  color: var(--charcoal);
  background: var(--bg-muted);
}

.nav a.has-caret::after,
.nav-trigger.has-caret::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.55;
}

.nav-item {
  position: relative;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 200;
}

.nav-submenu:not([hidden]) {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  color: var(--charcoal);
  background: var(--bg-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--charcoal);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background 0.15s;
}

.icon-btn:hover {
  background: var(--bg-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.btn-primary:hover {
  background: var(--yellow-hover);
}

.btn-ghost {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-muted);
  color: var(--charcoal);
}

.btn-block {
  width: 100%;
}

.link-accent {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.88rem;
}

.link-accent:hover {
  color: var(--yellow-hover);
}

.link-accent span {
  color: var(--yellow);
}

/* ——— Hero ——— */
.hero {
  background: var(--bg-muted);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-kicker::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.hero h1 .accent {
  color: var(--yellow);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.search-box {
  display: flex;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 560px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 0.98rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-submit {
  width: 56px;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  flex-shrink: 0;
  transition: background 0.15s;
}

.search-submit:hover {
  background: var(--yellow-hover);
}

.search-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  max-width: 560px;
}

.search-hints > span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hint-chip {
  display: inline-flex;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hint-chip:hover {
  border-color: var(--yellow);
  color: var(--charcoal);
  background: var(--yellow-soft);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.16;
}

.hero-blob-1 {
  width: 240px;
  height: 240px;
  right: -20px;
  top: -40px;
}

.hero-blob-2 {
  width: 140px;
  height: 140px;
  left: -20px;
  bottom: 40px;
  opacity: 0.12;
}

.hero-icon-float {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  color: var(--charcoal);
  z-index: 4;
}

.hero-icon-float svg {
  width: 22px;
  height: 22px;
  stroke: var(--yellow);
}

.hero-icon-1 {
  top: 28px;
  left: 24px;
}

.hero-icon-2 {
  top: 56px;
  right: 28px;
}

.hero-icon-3 {
  bottom: 88px;
  left: 20px;
}

.hero-cars {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
  height: 200px;
  z-index: 2;
}

.hero-car {
  position: absolute;
  filter: drop-shadow(0 14px 22px rgba(28, 31, 36, 0.14));
}

.hero-car img,
.hero-car svg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-car-back-left {
  width: 52%;
  left: 4%;
  bottom: 28px;
  z-index: 1;
  opacity: 0.9;
}

.hero-car-back-right {
  width: 50%;
  right: 2%;
  bottom: 36px;
  z-index: 1;
  opacity: 0.88;
}

.hero-car-front {
  width: 68%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--yellow-soft);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.hero-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ——— Main layout ——— */
.main-wrap {
  padding: 48px 0 72px;
  background: var(--bg);
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}

.section {
  margin-bottom: 52px;
}

.section:last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-header h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}

.brand-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Car cards */
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.car-card {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.car-card:hover {
  border-color: #f0d466;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.car-card:hover .car-explore {
  color: var(--charcoal);
}

.car-card:hover .car-explore span {
  transform: translateX(3px);
}

.car-visual {
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 12px 10px 4px;
}

.car-visual img,
.car-visual svg {
  width: 92%;
  height: 100%;
  max-height: 96px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.car-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.car-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.car-explore {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.car-explore span {
  color: var(--yellow);
  transition: transform 0.15s;
  display: inline-block;
}

/* Question cards */
.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.question-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.question-card:hover {
  border-color: #e8d48a;
  box-shadow: var(--shadow-md);
}

.q-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.q-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--yellow-soft);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.q-icon svg {
  width: 18px;
  height: 18px;
}

.q-badge {
  display: inline-flex;
  padding: 4px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 6px;
}

.question-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--charcoal);
}

.model-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-badge {
  display: inline-flex;
  padding: 3px 9px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.q-preview {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.q-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.read-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--charcoal);
}

.read-link:hover {
  color: var(--yellow-hover);
}

.verified-mini {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--verified);
}

/* Topic cards */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.topic-card:hover {
  border-color: #f0d466;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.topic-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--yellow-soft);
  color: var(--charcoal);
  display: grid;
  place-items: center;
}

.topic-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.topic-card h3 {
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.topic-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ——— Sidebar ——— */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.side-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.filter-group {
  margin-bottom: 12px;
}

.filter-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.filter-group select,
.filter-group input,
.filter-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-muted);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
}

.filter-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235a6169' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.filter-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

.filter-group input::placeholder,
.filter-group textarea::placeholder {
  color: var(--text-muted);
}

.filter-group select:focus,
.filter-group input:focus,
.filter-group textarea:focus {
  outline: 2px solid rgba(245, 184, 0, 0.35);
  outline-offset: 1px;
  border-color: var(--yellow);
}

.featured-card {
  border-top: 3px solid var(--yellow);
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--verified);
  background: var(--verified-bg);
  padding: 4px 9px;
  border-radius: 6px;
}

.updated-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.featured-card h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.featured-tags {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 600;
}

.featured-preview {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Question detail preview */
.detail-preview {
  background: var(--bg-muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--charcoal);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.detail-preview h3 {
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.applicable {
  margin-bottom: 14px;
}

.applicable-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.short-answer-box {
  background: var(--yellow-soft);
  border: 1px solid #f0e0a8;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.short-answer-box h4 {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.short-answer-box p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.detail-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  cursor: default;
}

.detail-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.related-mini h4 {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  line-height: 1.35;
  transition: border-color 0.15s;
}

.related-item:hover {
  border-color: var(--yellow);
  color: var(--charcoal);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--charcoal);
  color: #c8ccd1;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand .logo-direct,
.footer-brand .logo-tld {
  color: #fff;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 240px;
  margin-bottom: 18px;
  color: #9aa1a9;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #3a4048;
  display: grid;
  place-items: center;
  color: #c8ccd1;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.socials a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245, 184, 0, 0.08);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.84rem;
  color: #9aa1a9;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--yellow);
}

.newsletter p,
.yt-subscribe-col p,
.newsletter-widget p {
  font-size: 0.82rem;
  color: #9aa1a9;
  margin-bottom: 12px;
  line-height: 1.45;
}

.newsletter-widget h4 {
  margin-bottom: 8px;
}

.yt-widget-wrap {
  margin-top: 4px;
  min-height: 28px;
}

.yt-sub-count {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
}

.btn-yt-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-xs);
  background: #ff0000;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s, transform 0.1s;
}

.btn-yt-subscribe:hover {
  background: #e00000;
  color: #fff !important;
}

.btn-yt-subscribe:active {
  transform: translateY(1px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  padding: 11px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid #3a4048;
  background: var(--charcoal-soft);
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #6b737c;
}

.newsletter-form input:focus {
  border-color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid #2f343c;
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  color: #6b737c;
}

.footer-bottom .disclaimer {
  max-width: 640px;
  line-height: 1.45;
}

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Page: Questions listing ——— */
.page-hero {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border-soft);
  padding: 40px 0 44px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.page-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.page-crumb a:hover {
  color: var(--charcoal);
}

.page-crumb .sep {
  opacity: 0.45;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.page-hero-visual {
  position: relative;
  height: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.page-hero-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.16;
  right: -20px;
  top: -30px;
}

.page-hero-qmark {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 2.2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.page-hero-clipboard {
  position: absolute;
  left: 28px;
  top: 36px;
  width: 64px;
  height: 80px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  padding: 14px 10px 10px;
}

.page-hero-clipboard::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
}

.page-hero-clipboard span {
  display: block;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 6px;
}

.page-hero-car {
  position: relative;
  z-index: 2;
  width: 78%;
  margin-bottom: 8px;
  filter: drop-shadow(0 10px 18px rgba(28, 31, 36, 0.12));
}

.page-hero-car img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.listing-wrap {
  padding: 40px 0 72px;
  background: var(--bg);
}

/* ——— About page ——— */
.about-hero .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-hero-mark {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-hero-mark .logo-direct { color: var(--charcoal); }
.about-hero-mark .logo-shift { color: var(--yellow); }

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
  padding: 40px 0 72px;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.about-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-point {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
}

.about-point strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.about-point p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-cta-band {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--yellow-soft);
  border: 1px solid #f0e0a8;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

/* ——— Contact page ——— */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
  padding: 40px 0 72px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px 26px;
}

.contact-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 8px;
}

.contact-lead {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.contact-lead a {
  color: var(--charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

#contact-status.is-error {
  color: #d14343;
  font-weight: 600;
}

.contact-success {
  margin-top: 8px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.contact-email-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.contact-email-link {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  word-break: break-all;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

.contact-email-link:hover {
  color: var(--text);
}

.listing-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.listing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.ask-cta {
  text-align: center;
}

.ask-cta p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.ask-cta span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.listing-count {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
}

.listing-count span {
  color: var(--text-muted);
  font-weight: 600;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sort-control select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235a6169' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  font-weight: 600;
}

.q-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.q-list-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}

.q-list-card:hover {
  border-color: #e8d48a;
  box-shadow: var(--shadow-md);
}

.q-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow-soft);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.q-list-icon svg {
  width: 20px;
  height: 20px;
}

.q-list-body {
  min-width: 0;
}

.q-list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.q-list-card h2 {
  font-size: 1.02rem;
  font-weight: 700;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.q-list-card h2 a:hover {
  color: var(--charcoal);
}

.bookmark-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.bookmark-btn:hover {
  background: var(--bg-muted);
  color: var(--charcoal);
}

.q-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.q-list-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius-xs);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover {
  border-color: var(--yellow);
  color: var(--charcoal);
}

.page-btn.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
}

/* ——— Page: Question detail ——— */
.detail-wrap {
  padding: 28px 0 72px;
  background: var(--bg);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.detail-header {
  margin-bottom: 24px;
}

.detail-header h1 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 12px 0 14px;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.detail-stats-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  flex: 1;
}

.detail-stat {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.detail-actions {
  display: flex;
  gap: 4px;
}

.answer-block {
  margin-bottom: 28px;
}

.answer-block > h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.short-answer {
  background: var(--yellow-soft);
  border: 1px solid #f0e0a8;
  border-radius: var(--radius);
  padding: 18px 20px;
}

.short-answer p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
}

.answer-prose {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: flow-root; /* clear floats from floated images */
}

.answer-prose p {
  margin-bottom: 14px;
  width: auto;
  max-width: none;
}

.answer-prose .answer-media {
  margin: 0 0 16px;
  padding: 0;
  max-width: 100%;
}

.answer-prose .answer-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.answer-prose .answer-media--full {
  float: none;
  width: 100%;
  max-width: 100%;
}

.answer-prose .answer-media--center {
  float: none;
  width: 72%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.answer-prose .answer-media--left {
  float: left;
  width: 38%;
  max-width: 280px;
  margin: 4px 18px 12px 0;
}

.answer-prose .answer-media--right {
  float: right;
  width: 38%;
  max-width: 280px;
  margin: 4px 0 12px 18px;
}

@media (max-width: 640px) {
  .answer-prose .answer-media--center {
    width: 100%;
    max-width: 100%;
  }
  .answer-prose .answer-media--left,
  .answer-prose .answer-media--right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 14px;
  }
}

.answer-prose h3 {
  font-size: 0.98rem;
  font-weight: 700;
  font-weight: 700;
  color: var(--charcoal);
  margin: 20px 0 10px;
}

.answer-prose ul,
.answer-prose ol {
  margin: 0 0 14px 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.answer-prose ul {
  list-style: disc;
}

.answer-prose ol {
  list-style: decimal;
}

.answer-prose li {
  padding-left: 4px;
}

.pro-tip {
  background: var(--verified-bg);
  border: 1px solid #c6e8d4;
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 8px;
}

.pro-tip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--verified);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.pro-tip strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--verified);
  margin-bottom: 4px;
}

.pro-tip p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ——— Content block callouts (warning, note) ——— */
.block-callout {
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 8px;
}

.block-callout-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.block-callout strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.block-callout-content {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.block-callout-content > :first-child {
  margin-top: 0;
}

.block-callout-content > :last-child {
  margin-bottom: 0;
}

.block-callout-content p {
  margin: 0 0 8px;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.block-callout p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.block-warning {
  background: var(--yellow-soft);
  border: 1px solid #f0e0a8;
}

.block-warning .block-callout-icon {
  background: var(--yellow);
  color: var(--charcoal);
  flex-shrink: 0;
}

.block-warning strong {
  color: #9a7000;
}

.block-note {
  background: #eef2f7;
  border: 1px solid #d4dce6;
}

.block-note .block-callout-icon {
  background: #5a7da8;
  color: #fff;
}

.block-note strong {
  color: #3d5a80;
}

.block-cost-card {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.block-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
}

.block-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed {
  margin-top: 4px;
}

.video-embed-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.video-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed--short {
  max-width: 320px;
}

.video-embed--short .video-embed-frame {
  padding-bottom: 177.78%;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.shorts-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow-md);
}

.shorts-phone {
  height: 90%;
  width: auto;
  max-width: min(42%, 220px);
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
}

.shorts-preview {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  color: inherit;
  text-decoration: none;
}

.shorts-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shorts-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

@media (max-width: 640px) {
  .shorts-phone {
    max-width: min(48%, 180px);
    height: 88%;
  }

  .shorts-play {
    width: 40px;
    height: 40px;
  }
}

.video-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.video-watch-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
}

.video-watch-link:hover {
  color: var(--yellow-hover);
}

.amazon-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amazon-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}

.amazon-card:hover {
  border-color: #f0c14b;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.amazon-card-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff8e6;
  color: #111;
}

.amazon-card-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: var(--bg-muted);
}

.amazon-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amazon-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.amazon-card-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c45500;
}

.amazon-card-body strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.amazon-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}

.amazon-card-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.amazon-card-cta {
  margin-top: 8px;
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 20px;
  background: #ffd814;
  color: #111;
  font-size: 0.82rem;
  font-weight: 700;
}

.amazon-disclaimer {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.related-questions {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.related-questions li {
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 0;
}

.related-questions a {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  text-decoration: none;
}

.related-questions a:hover {
  color: var(--charcoal);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-card:hover {
  border-color: #e8d48a;
  box-shadow: var(--shadow-md);
}

.related-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.related-card .related-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: auto;
}

/* ——— Owner report bars ——— */
.owner-report-card {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.owner-report-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.owner-report-count {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.owner-report-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.owner-report-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.owner-bar {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.owner-bar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.owner-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.owner-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.owner-bar-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: right;
}

/* ——— Interaction blocks ——— */
.interaction-block {
  margin-bottom: 20px;
}

.interaction-card {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.interaction-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.interaction-body {
  /* container for buttons */
}

.helpful-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-feedback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.btn-feedback:hover {
  border-color: var(--yellow);
  color: var(--charcoal);
}

.btn-feedback.is-selected {
  background: var(--yellow-soft);
  border-color: var(--yellow);
  color: var(--charcoal);
  font-weight: 700;
}

.btn-feedback.is-dimmed {
  opacity: 0.45;
  pointer-events: none;
}

.btn-feedback-icon {
  font-size: 1rem;
  line-height: 1;
}

.interaction-success {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--verified);
  padding: 12px 0 0;
}

.interaction-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 14px 0 10px;
}

.feedback-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.feedback-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.feedback-option:hover {
  border-color: #ddd;
}

.feedback-option input[type="radio"] {
  accent-color: var(--yellow);
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.feedback-option:has(input:checked) {
  border-color: var(--yellow);
  background: var(--yellow-soft);
  color: var(--charcoal);
  font-weight: 600;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.82rem;
}

/* ——— Report trigger ——— */
.report-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
}

.report-trigger:hover {
  color: var(--charcoal);
}

.report-trigger strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.report-trigger svg {
  flex-shrink: 0;
}

/* ——— Report modal ——— */
.report-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 31, 36, 0.45);
  display: grid;
  place-items: center;
  padding: 24px;
}

.report-overlay[hidden] {
  display: none;
}

.report-modal {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: min(100%, 440px);
  padding: 24px;
  position: relative;
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.report-modal-header h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
}

.report-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.report-close:hover {
  background: var(--bg-muted);
  color: var(--charcoal);
}

.report-modal input,
.report-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-muted);
  color: var(--text);
  resize: vertical;
  outline: none;
  font: inherit;
  font-size: 0.88rem;
}

.report-modal textarea {
  min-height: 96px;
}

.report-modal input:focus,
.report-modal textarea:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(245, 184, 0, 0.25);
  outline-offset: 1px;
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.report-modal .btn-block {
  margin-top: 4px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list a {
  display: block;
  padding: 8px 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  border-left: 2px solid transparent;
}

.toc-list a:hover,
.toc-list a.is-active {
  background: var(--yellow-soft);
  color: var(--charcoal);
  border-left-color: var(--yellow);
}

.car-info-card .car-info-visual {
  background: #eef0f3;
  border-radius: var(--radius-sm);
  padding: 12px 10px 6px;
  margin-bottom: 12px;
}

.car-info-card .car-info-visual img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: center bottom;
}

.car-info-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.car-info-card .car-info-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.car-specs dt {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.car-specs dd {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .main-grid {
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }

  .topic-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .listing-grid {
    grid-template-columns: 240px 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    height: 280px;
    order: -1;
  }

  .page-hero-visual {
    height: 200px;
    order: -1;
  }

  .main-grid,
  .listing-grid,
  .detail-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .about-aside,
  .contact-aside {
    position: static;
  }

  .sidebar,
  .listing-sidebar,
  .detail-sidebar {
    position: static;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-preview {
    grid-column: 1 / -1;
  }

  .car-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .question-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero,
  .page-hero {
    padding: 36px 0 44px;
  }

  .car-grid,
  .question-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .header-actions .btn {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .q-list-card {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }
}
