/* ============================================================
   Fund My Equipment, theme-v3-blue.css
   Concept B: Fintech Clean — Deep Blue palette
   Loaded after theme-v2.css; overrides where they conflict.
   ============================================================ */

:root {
  /* Overwrite v2 accent with deep blue */
  --accent: #1e40af;
  --accent-2: #1e3a8a;
  --accent-3: #172554;
  --accent-soft: #dbeafe;
  --accent-tint: #eff6ff;
  --accent-tint-strong: #bfdbfe;

  /* Refined ink scale */
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #334155;

  /* Status colors stay the same */
  --positive: #059669;
  --positive-soft: #d1fae5;
  --positive-tint: #ecfdf5;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.site-header .container { gap: 32px; }
.site-cta {
  background: var(--accent);
  border-radius: 8px;
}
.site-cta:hover { background: var(--accent-2); }

.primary-menu a { font-weight: 500; }
.primary-menu a:hover { color: var(--accent); }

/* ============================================================
   Hero — light cream gradient with radial accent
   ============================================================ */

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(219, 234, 254, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero::before { display: none; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--positive-soft);
  color: var(--positive);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "●";
  color: var(--positive);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-deck {
  font-size: 19px;
  color: var(--ink-3);
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 560px;
}

.hero-cta { gap: 12px; margin-bottom: 28px; }

/* Trust ticks as pills */
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-trust span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span::before {
  content: "✓";
  color: var(--positive);
  font-weight: 700;
  margin-right: 0;
}

/* Buttons in v3 */
.btn { border-radius: 8px; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.15s;
  line-height: 1;
}
.btn-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
  transform: translateY(-1px);
}

/* ============================================================
   Hero quote widget (functional)
   ============================================================ */

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

.quote-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  position: relative;
}
.quote-widget::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  background: var(--accent-soft);
  border-radius: 50%;
  z-index: -1;
}
.quote-widget h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}
.quote-widget .quote-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}

.quote-form .form-row { margin-bottom: 14px; }
.quote-form .form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quote-form input,
.quote-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.quote-form input:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.quote-form button[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.15s;
}
.quote-form button[type="submit"]:hover {
  background: var(--accent-2);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
  transform: translateY(-1px);
}
.quote-widget-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  justify-content: space-between;
}

/* ============================================================
   Stat callouts — lighter style
   ============================================================ */

.stat-callout-value { color: var(--accent); }

/* ============================================================
   Trust strip (lender names)
   ============================================================ */

.trust-strip {
  background: var(--bg-soft);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-strip-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.lender-logo {
  color: var(--ink-3);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

/* ============================================================
   Section headings
   ============================================================ */

h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================================
   Process steps with numbered icons
   ============================================================ */

.process-steps li {
  border-radius: 16px;
  padding: 28px 24px 24px;
}
.process-steps li::before {
  background: var(--accent-tint);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  top: -20px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.12);
}

/* ============================================================
   Category cards — concept B style
   ============================================================ */

.cat-grid-fintech {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card-fintech {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}
.cat-card-fintech::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-tint);
  opacity: 0;
  transition: opacity 0.2s;
}
.cat-card-fintech:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.cat-card-fintech:hover::after { opacity: 1; }
.cat-card-fintech-content { position: relative; z-index: 1; }
.cat-card-fintech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.cat-card-fintech h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.cat-card-fintech-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.cat-card-fintech-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-3);
}
.cat-card-fintech-stats div strong {
  display: block;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

/* ============================================================
   Features grid
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature { padding: 24px; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(30, 64, 175, 0.2);
}
.feature h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--ink-3); font-size: 15px; line-height: 1.6; }

/* ============================================================
   Calculator promo section (dark)
   ============================================================ */

.calc-section {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
}
.calc-section h2 { color: #fff; }
.calc-section .eyebrow { color: var(--accent-tint-strong); }
.calc-section .section-deck { color: #cbd5e1; font-size: 18px; max-width: 480px; }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.calc-mockup {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.calc-mockup-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-panel);
  border-radius: 10px;
  margin-bottom: 24px;
}
.calc-mockup-tab {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
  flex: 1;
  text-align: center;
}
.calc-mockup-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.calc-result {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 22px;
  margin-top: 18px;
  text-align: center;
}
.calc-result-label { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.calc-result-value {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.calc-result-detail { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* ============================================================
   Industry pills cloud
   ============================================================ */

.ind-section { background: var(--bg-soft); }
.ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.ind-pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.ind-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ============================================================
   Resources / articles grid
   ============================================================ */

.res-grid-fintech {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.res-card-fintech {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
  display: block;
}
.res-card-fintech:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.res-card-fintech-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.res-card-fintech-tag {
  background: var(--accent-tint);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.res-card-fintech h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.res-card-fintech-excerpt {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.res-card-fintech-byline {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.res-card-fintech-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ============================================================
   CTA banner (blue gradient final)
   ============================================================ */

.cta-final-blue {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
  pointer-events: none;
}
.cta-final-blue .container { position: relative; max-width: 700px; }
.cta-final-blue h2 {
  color: #fff;
  font-size: 48px;
  margin: 0 auto 16px;
  line-height: 1.1;
}
.cta-final-blue p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}
.cta-final-blue .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.cta-final-blue .btn-primary:hover {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--bg-soft);
}

/* ============================================================
   Override existing v2 accent uses
   ============================================================ */

.advisor-byline a { color: var(--accent); }
.advisor-creds { color: var(--muted); }
.advisor-name { color: var(--ink); }
.callout-warn { background: var(--accent-tint); border-color: var(--accent); }
.callout-warn .callout-title { color: var(--accent-3); }
.callout-key { border-color: var(--ink); }
.faq-list summary::after { color: var(--accent); }
.faq-list details[open] { border-color: var(--accent); }
.sidebar-cta .btn-primary { background: var(--accent); border-color: var(--accent); }
.sidebar-cta .btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.equipment-card:hover { border-color: var(--accent); }
.equipment-card-cta { color: var(--accent); }
.sidebar-nav a.is-current { color: var(--accent); }
.tag-accent { background: var(--accent-soft); color: var(--accent); }
.hero-eyebrow { color: var(--positive); background: var(--positive-soft); }
.stat-callout-value { color: var(--accent); }
.cta-banner-light { border-color: var(--accent-soft); background: var(--accent-tint); }

/* Header CTA */
.site-cta { background: var(--accent); }
.site-cta:hover { background: var(--accent-2); }

/* Body links should be blue */
.article-body a { color: var(--accent); }
.article-body a:hover { color: var(--accent-2); }

/* ============================================================
   Comparison page: "vs" pills in hero
   ============================================================ */

.hero-vs {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hero-vs-pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 100px;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.hero-vs-divider {
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ============================================================
   Comparison page: color-coded pros/cons cards
   ============================================================ */

.vs-pros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.vs-pros-card {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}
.vs-pros-card.col-a {
  background: var(--accent-tint);
  border-color: var(--accent-soft);
}
.vs-pros-card.col-b {
  background: var(--bg-soft);
  border-color: var(--line);
}
.vs-pros-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.vs-pros-card.col-a h3 { color: var(--accent); }
.vs-pros-card.col-b h3 { color: var(--ink); }
.vs-pros-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vs-pros-card li {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.vs-pros-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.vs-pros-card.col-a li::before { color: var(--accent); }
.vs-pros-card.col-b li::before { color: var(--ink-3); }

/* ============================================================
   Comparison page: When-wins cards
   ============================================================ */

.when-wins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.when-wins-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid;
}
.when-wins-a {
  background: var(--accent-tint);
  border-color: var(--accent-soft);
}
.when-wins-b {
  background: var(--positive-tint);
  border-color: var(--positive-soft);
}
.when-wins-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.when-wins-a h3 { color: var(--accent); }
.when-wins-b h3 { color: var(--positive); }
.when-wins-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.when-wins-card li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-3);
}
.when-wins-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.when-wins-a li::before { color: var(--accent); }
.when-wins-b li::before { color: var(--positive); }

/* ============================================================
   Glossary: A-Z alpha index
   ============================================================ */

.alpha-index {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
}
.alpha-index h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.alpha-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.alpha-grid a {
  display: block;
  padding: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  border-radius: 4px;
  text-decoration: none;
}
.alpha-grid a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.alpha-grid a.is-current {
  background: var(--accent-soft);
  color: var(--accent);
}
.alpha-grid a.disabled {
  color: var(--muted);
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   Glossary: prominent definition callout
   ============================================================ */

.definition-callout {
  background: var(--accent-tint);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.definition-callout-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.definition-callout p {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
}
.definition-callout strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================================
   Related terms grid (glossary)
   ============================================================ */

.related-terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}
.related-terms-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.15s;
}
.related-terms-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.related-terms-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-terms-card strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.related-terms-card .related-excerpt {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .vs-pros-grid, .when-wins-grid, .related-terms-grid {
    grid-template-columns: 1fr;
  }
  .alpha-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============================================================
   Archive pages — v3
   ============================================================ */

.archive-page-v3 {
  padding: 56px 0 80px;
  background: #fff;
}

.archive-grid-v3 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.archive-card-v3 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.15s;
}
.archive-card-v3:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.archive-card-v3 a {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}
.archive-card-v3-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.archive-card-v3 h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.archive-card-v3-excerpt {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 14px;
}
.archive-card-v3-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.archive-card-v3-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.archive-card-v3-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* Glossary archive — modern A-Z + letter groups */
.glossary-alpha-v3 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 32px;
  justify-content: center;
}
.glossary-alpha-v3 a,
.glossary-alpha-v3 span {
  display: inline-block;
  min-width: 36px;
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.1s;
}
.glossary-alpha-v3 a {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.glossary-alpha-v3 a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.glossary-alpha-v3 span.disabled {
  color: var(--muted);
  opacity: 0.35;
  cursor: default;
}

.glossary-letter-group-v3 {
  margin-bottom: 48px;
  scroll-margin-top: 96px;
}
.glossary-letter-h-v3 {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-soft);
  line-height: 1;
}

/* Pagination — v3 */
.archive-pagination-v3 {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.archive-pagination-v3 .page-numbers {
  display: inline-block;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-3);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
  min-width: 44px;
  text-align: center;
}
.archive-pagination-v3 .page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.archive-pagination-v3 .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.archive-pagination-v3 .page-numbers.dots {
  background: transparent;
  border-color: transparent;
}

@media (max-width: 980px) {
  .archive-grid-v3 { grid-template-columns: 1fr 1fr; }
  .glossary-letter-h-v3 { font-size: 36px; }
}
@media (max-width: 640px) {
  .archive-grid-v3 { grid-template-columns: 1fr; }
  .glossary-alpha-v3 a, .glossary-alpha-v3 span { min-width: 32px; padding: 6px 8px; font-size: 13px; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .hero h1 { font-size: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .calc-grid { grid-template-columns: 1fr; }
  .cat-grid-fintech, .features-grid, .res-grid-fintech { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 32px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .cat-grid-fintech, .features-grid, .res-grid-fintech { grid-template-columns: 1fr; }
  .quote-form .form-row-grid { grid-template-columns: 1fr; }
  .calc-mockup { padding: 24px; }
  .cta-final-blue h2 { font-size: 32px; }
}
