/* =========================================
   VS PAGE STYLES — AffordableGLPs.com
   ========================================= */

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb .container { display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light); }

/* vs Hero */
.vs-hero {
  background: linear-gradient(140deg, #142d4c 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 48px 0 44px;
  text-align: center;
}
.vs-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.vs-hero .hero-sub {
  font-size: .98rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Verdict cards */
.verdict-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}
.verdict-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
}
.verdict-card.vc-winner {
  border-color: var(--accent);
  background: rgba(16,185,129,.12);
}
.verdict-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; color: #fff; }
.verdict-price { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.verdict-label { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.verdict-rating { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.verdict-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

/* Provider detail columns */
.vs-detail-section { padding: 64px 0; }
.vs-detail-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 8px;
}
.vs-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.vs-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.vs-col h3 { font-size: 1.1rem; color: var(--primary); font-weight: 800; margin-bottom: 16px; }
.vs-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding: 0; }
.vs-col li { font-size: .88rem; color: var(--text-muted); display: flex; gap: 8px; }
.vs-col li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.vs-col .cta-btn { display: block; text-align: center; width: 100%; box-sizing: border-box; }

/* Recommendation grid */
.rec-section { background: var(--bg-alt); padding: 56px 0; }
.rec-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 28px;
}
.rec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rec-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.rec-card h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin-bottom: 12px; }
.rec-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.rec-card li { font-size: .88rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.rec-card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* Hub CTA banner */
.hub-cta {
  background: var(--primary);
  color: #fff;
  padding: 36px 0;
  text-align: center;
}
.hub-cta p { font-size: 1rem; margin-bottom: 16px; color: rgba(255,255,255,.8); }
.hub-cta .cta-btn { background: var(--accent); font-size: .95rem; padding: 12px 28px; }
.hub-cta .cta-btn:hover { background: var(--accent-dark); }

/* Mobile */
@media (max-width: 640px) {
  .verdict-wrap  { grid-template-columns: 1fr; }
  .vs-columns    { grid-template-columns: 1fr; }
  .rec-grid      { grid-template-columns: 1fr; }
}

/* =========================================
   GUIDE PAGE STYLES
   ========================================= */
.guide-section { padding: 56px 0; }
.guide-section h2 { font-size: clamp(1.25rem, 3vw, 1.7rem); color: var(--primary); font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.guide-section h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 28px 0 10px; }
.guide-section p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.guide-section ul { padding-left: 20px; margin-bottom: 16px; }
.guide-section li { font-size: .92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 6px; }
.guide-section strong { color: var(--primary); }
.guide-section a { color: var(--accent-dark); text-decoration: underline; }

.guide-key-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin: 28px 0; }
.guide-key-fact { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.guide-key-fact .fact-icon { font-size: 1.4rem; margin-bottom: 10px; display: block; }
.guide-key-fact h4 { font-size: .88rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.guide-key-fact p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.steps-list { list-style: none; padding: 0; counter-reset: steps; display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.steps-list > li { counter-increment: steps; display: flex; gap: 16px; align-items: flex-start; }
.steps-list > li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; background: var(--primary); color: #fff; border-radius: 50%; font-size: .82rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.step-body { flex: 1; }
.step-title { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

.guide-simple-table { width: 100%; border-collapse: collapse; margin: 16px 0 28px; font-size: .87rem; overflow-x: auto; display: block; }
.guide-simple-table th { background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; font-size: .8rem; }
.guide-simple-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.guide-simple-table tr:last-child td { border-bottom: none; }
.guide-simple-table tr:nth-child(even) td { background: var(--bg-alt); }

@media (max-width: 640px) {
  .guide-key-facts { grid-template-columns: 1fr 1fr; }
  .guide-simple-table { font-size: .8rem; }
  .guide-simple-table th, .guide-simple-table td { padding: 8px 10px; }
}
@media (max-width: 400px) {
  .guide-key-facts { grid-template-columns: 1fr; }
}
