/* Karl Malone Ford Park City — Customer FAQ & Help Center
   Design: Clean, white surfaces, blue accent, Libre Baskerville headings, Inter body
   Accent: #2B7FFF | Background: #FFFFFF | Text: #1A1A2E | Muted: #6B7280
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2B7FFF;
  --blue-dark:  #1A5FCC;
  --blue-light: #EBF3FF;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --ink:        #1A1A2E;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --max-w:      1200px;
  --font-head:  'Libre Baskerville', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ─── Header / Nav ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.site-wordmark {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
}
.site-wordmark:hover { text-decoration: none; color: var(--blue); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--blue-light);
  color: var(--blue);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0A1628 0%, #1A3A6B 60%, #2B7FFF 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.rating-badge .stars { color: #FBBF24; letter-spacing: 1px; }
.rating-badge .score { font-weight: 700; font-size: 1.1rem; }

/* ─── Section ───────────────────────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--gray-50); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* ─── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ─── Review Cards ──────────────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 1px; }

.review-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.75rem;
}

.review-author { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.review-date { font-size: 0.8rem; color: var(--gray-400); }
.review-platform {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 500;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ─── Q&A / FAQ ─────────────────────────────────────────────────────────── */
.qa-list { display: flex; flex-direction: column; gap: 1.5rem; }

.qa-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.qa-question {
  background: var(--blue-light);
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-dark);
  border-bottom: 1px solid var(--gray-200);
}

.qa-answer {
  background: var(--white);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ─── Compare Table ─────────────────────────────────────────────────────── */
.compare-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.compare-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 1.25rem 1.5rem;
}

.compare-header h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.compare-header p { font-size: 0.9rem; opacity: 0.88; }

.compare-points { list-style: none; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.compare-points li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.compare-points li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── Best-Of Grid ──────────────────────────────────────────────────────── */
.bestof-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.bestof-query {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.bestof-answer { font-size: 0.9rem; color: var(--gray-700); line-height: 1.65; }

/* ─── Service Cards ─────────────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ─── Info Box ──────────────────────────────────────────────────────────── */
.info-box {
  background: var(--blue-light);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.info-box h3 { font-family: var(--font-head); font-size: 1rem; color: var(--blue-dark); margin-bottom: 0.5rem; }
.info-box p, .info-box a { font-size: 0.95rem; color: var(--gray-700); }

/* ─── CTA Button ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--blue-dark); text-decoration: none; color: var(--white); }
.btn:active { transform: scale(0.97); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); color: var(--blue-dark); }

.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover { background: var(--gray-100); color: var(--blue-dark); }

/* ─── Tag / Badge ───────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--gray-400);
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-400); }

/* ─── Page Header ───────────────────────────────────────────────────────── */
.page-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.5rem 0 2rem;
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.page-header p { font-size: 1rem; color: var(--gray-500); max-width: 600px; }

/* ─── Stat Row ──────────────────────────────────────────────────────────── */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
}

.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.2rem; }

/* ─── Two-column layout ─────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* ─── Platform Pagination ───────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.pagination a:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }
.pagination .current { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ─── Source Link ───────────────────────────────────────────────────────── */
.source-link {
  font-size: 0.78rem;
  color: var(--gray-400);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.source-link:hover { color: var(--blue); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { color: var(--white); font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; display: block; }
.footer-address { font-size: 0.88rem; line-height: 1.8; }
.footer-address a { color: var(--gray-400); }
.footer-address a:hover { color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--gray-400); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

/* ─── Responsive Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

@media (max-width: 640px) {
  .site-nav { display: none; }
  .hero { padding: 2.5rem 0 2rem; }
  .section { padding: 2.5rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}

/* ─── Print ─────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .btn { display: none; }
  body { font-size: 12pt; }
}
