/* Shared content-page styles — Car-Loans */
:root {
  --bg: #F7F6F2;
  --bg-2: #EFEDE5;
  --ink: #0A1F3D;
  --ink-2: #1F3556;
  --muted: #5F6675;
  --line: #E5E2D8;
  --accent: #F26B1F;
  --accent-dk: #C9551A;
  --accent-soft: rgba(242, 107, 31, 0.08);
  --green: #1B9B5E;
  --card: #FFFFFF;
  --sans: 'Heebo', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: var(--sans); font-weight: 400;
  color: var(--ink); background: var(--bg);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-icon { display: none; }
.brand-name { font-family: var(--sans); font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; line-height: 1; }
.brand-name b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 700; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--accent); color: #fff; border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .18s ease; white-space: nowrap; }
.nav-cta:hover { background: var(--accent-dk); box-shadow: 0 8px 20px rgba(242, 107, 31, 0.28); transform: translateY(-1px); }

/* PAGE HEADER */
.page-header {
  position: relative;
  padding: 60px 28px 50px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.page-header .eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--accent-dk);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 13px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.page-header h1 {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.035em;
  color: var(--ink); margin: 0 auto 16px;
  max-width: 22ch;
}
.page-header h1 .ac { color: var(--accent); }
.page-header .lead {
  font-size: 18px; color: var(--muted);
  max-width: 60ch; margin: 0 auto;
  line-height: 1.55;
}

/* ARTICLE */
.article-shell {
  max-width: 880px; margin: 0 auto;
  padding: 20px 28px 50px;
}
.article-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 24px; padding: 50px 44px;
  box-shadow: 0 1px 2px rgba(10,31,61,.05), 0 14px 38px rgba(10,31,61,.07);
  position: relative; overflow: hidden;
}
.article-card::before {
  content: ""; position: absolute;
  top: 0; inset-inline-start: 0; width: 70%; height: 3px;
  background: linear-gradient(to left, var(--accent), transparent);
}
.article-card h2 {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.025em; color: var(--ink);
  margin: 30px 0 14px;
  padding-inline-start: 14px;
  border-inline-start: 4px solid var(--accent);
  line-height: 1.25;
}
.article-card h2:first-child { margin-top: 0; }
.article-card h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.015em; color: var(--ink);
  margin: 22px 0 10px;
}
.article-card p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-2); margin: 12px 0;
}
.article-card a {
  color: var(--accent-dk); text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.article-card a:hover { color: var(--accent); }
.article-card strong { color: var(--ink); font-weight: 700; }
.article-card ul {
  list-style: none; padding: 0; margin: 14px 0;
}
.article-card ul li {
  position: relative; padding-inline-start: 26px;
  font-size: 16px; line-height: 1.65;
  color: var(--ink-2); margin: 8px 0;
}
.article-card ul li::before {
  content: "✓"; position: absolute;
  inset-inline-start: 0;
  color: var(--accent); font-weight: 800;
}

/* INLINE CTA */
.inline-cta {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border: 1.5px solid var(--accent);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.inline-cta .ic-text {
  flex: 1; min-width: 220px;
}
.inline-cta h3 {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 4px;
  border: 0 !important;
  padding: 0 !important;
}
.inline-cta p {
  font-size: 14.5px; color: var(--muted);
  margin: 0; line-height: 1.5;
}
.inline-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: var(--accent); color: #fff;
  border-radius: 14px;
  font-weight: 800; font-size: 15px;
  text-decoration: none; flex-shrink: 0;
  transition: all .18s ease;
}
.inline-cta a:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(242, 107, 31, 0.32);
}

/* CARDS GRID (for vehicles / blog) */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 16px;
}
.tile {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px 24px;
  transition: all .25s ease;
  text-decoration: none; color: var(--ink); display: block;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(10,31,61,.06), 0 14px 38px rgba(10,31,61,.10);
  border-color: var(--accent);
}
.tile .tile-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--accent-dk);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.tile h3 {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
  margin: 0 0 8px; line-height: 1.25;
  border: 0 !important; padding: 0 !important;
}
.tile p {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.55; margin: 0;
}

/* FOOTER */
.foot { border-top: 1px solid var(--line); background: var(--bg); margin-top: 40px; }
.foot-inner { max-width: 1240px; margin: 0 auto; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 500; }
.foot-inner a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 1px; font-weight: 600; }
.foot-inner a:hover { border-bottom-color: var(--ink); }

@media (max-width: 760px) {
  .nav-inner { padding: 12px 18px; }
  .nav-links { display: none; }
  .page-header { padding: 36px 22px 28px; }
  .page-header h1 { font-size: 32px; }
  .page-header .lead { font-size: 16px; }
  .article-shell { padding: 8px 18px 32px; }
  .article-card { padding: 30px 22px; border-radius: 18px; }
  .article-card h2 { font-size: 22px; }
  .inline-cta { padding: 22px 20px; flex-direction: column; align-items: stretch; text-align: center; }
  .inline-cta a { justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
}
