/* Navy Gold scheme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1B4F8A;
  --accent:  #F0A500;
  --dark:    #0D2644;
  --light:   #EBF3FA;
  --white:   #FFFFFF;
  --text:    #1E2A35;
  --muted:   #5E7080;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
  --max-w:   1140px;
  --tr:      0.2s ease;
}
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: #f8f9fa; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.3; color: var(--dark); }
a { color: var(--primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--accent); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.site-header { background: var(--dark); padding: 14px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); font-weight: 700; }
.logo span { color: var(--accent); }
.header-meta { font-size: 13px; color: rgba(255,255,255,0.6); }

.hero { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); color: var(--white); padding: 60px 0 50px; text-align: center; }
.hero h1 { font-size: clamp(24px, 3.5vw, 46px); color: var(--white); margin-bottom: 14px; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto 24px; }
.hero-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 700; color: var(--accent); display: block; }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }

.section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-header { margin-bottom: 36px; }
.section-header h2 { font-size: clamp(20px, 2.5vw, 32px); margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 16px; }

/* TABLE */
.ranking-table-wrap { overflow-x: auto; }
.ranking-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 700px; }
.ranking-table thead th { background: var(--dark); color: var(--white); padding: 13px 14px; text-align: left; font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 600; }
.ranking-table tbody td { padding: 14px; border-bottom: 1px solid #e8ecf0; vertical-align: middle; }
.ranking-table tbody tr:hover { background: var(--light); }
.ranking-table tbody tr:nth-child(1) { background: #fffbf0; }
.rank-num { font-size: 20px; font-weight: 700; color: var(--primary); text-align: center; }
.rank-num.gold { color: #D4A017; }
.company-name { font-weight: 700; font-size: 15px; color: var(--dark); display: block; }
.company-desc { font-size: 13px; color: var(--muted); margin-top: 3px; }
.stars { color: #F0A500; letter-spacing: 1px; font-size: 15px; }
.visit-btn { display: inline-block; background: var(--accent); color: var(--dark); font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: 4px; white-space: nowrap; transition: all var(--tr); }
.visit-btn:hover { background: var(--primary); color: var(--white); }
.tag { display: inline-block; background: var(--light); color: var(--primary); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; margin: 2px 2px 0 0; }

/* CARDS */
.company-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.company-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border-top: 4px solid var(--primary); transition: transform var(--tr), box-shadow var(--tr); }
.company-card.gold-card { border-top-color: #D4A017; }
.company-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.card-head { padding: 20px 20px 14px; display: flex; justify-content: space-between; align-items: flex-start; }
.card-rank { font-size: 28px; font-weight: 700; color: var(--primary); line-height: 1; }
.card-rank.gold { color: #D4A017; }
.card-badge { font-size: 11px; font-weight: 700; background: var(--accent); color: var(--dark); padding: 3px 10px; border-radius: 12px; }
.card-body { padding: 0 20px 20px; }
.card-body h3 { font-size: 18px; margin-bottom: 6px; }
.card-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.card-rating { font-size: 14px; margin-bottom: 10px; }
.card-pros { list-style: none; margin-bottom: 14px; }
.card-pros li { font-size: 13px; padding: 3px 0 3px 18px; position: relative; color: var(--text); }
.card-pros li::before { content: "✓"; position: absolute; left: 0; color: #2E7D52; font-weight: 700; }
.card-price { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.card-price strong { color: var(--primary); font-size: 16px; }
.card-cta { display: block; text-align: center; background: var(--primary); color: var(--white); font-weight: 700; font-size: 14px; padding: 11px; border-radius: 4px; transition: background var(--tr); }
.card-cta:hover { background: var(--accent); color: var(--dark); }

/* METHODOLOGY */
.method-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.method-item { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); text-align: center; }
.method-pct { font-size: 32px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 8px; }
.method-item h4 { font-size: 15px; margin-bottom: 6px; }
.method-item p { font-size: 13px; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid #dde3ea; }
.faq-q { background: none; border: none; width: 100%; text-align: left; font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 16px; padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--dark); }
.faq-q::after { content: "+"; font-size: 22px; color: var(--primary); }
.faq-item.open .faq-q::after { content: "-"; }
.faq-a { display: none; padding: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* BREADCRUMBS */
.breadcrumbs { background: var(--dark); padding: 8px 0; font-size: 13px; }
.breadcrumbs ol { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
.breadcrumbs li + li::before { content: ">"; margin-right: 6px; color: rgba(255,255,255,0.4); }
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs li:last-child { color: rgba(255,255,255,0.5); }

.update-badge { display: inline-block; background: var(--accent); color: var(--dark); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }

/* FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 40px 0 24px; font-size: 14px; margin-top: 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 8px; }
.footer-brand span { color: var(--accent); }
.footer-about { font-size: 13px; max-width: 320px; color: rgba(255,255,255,0.5); }
.footer-links h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.35); max-width: 700px; margin: 8px auto 0; text-align: center; line-height: 1.6; }

@media (max-width: 768px) {
  .hero-stats { gap: 20px; }
  .company-cards { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}
