:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --success: #0e9f6e;
  --warning: #f59e0b;
  --dark: #111827;
  --gray: #6b7280;
  --light: #f9fafb;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fff;
}

/* NAVBAR */
.navbar-brand { font-size: 1.3rem; letter-spacing: -0.5px; }
.navbar { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  padding: 70px 0 60px;
}
.hero h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; }
.hero p { font-size: 1.15rem; opacity: 0.9; }

/* CARDS */
.card { border: 1px solid #e5e7eb; border-radius: 12px; transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-header { border-radius: 12px 12px 0 0 !important; }

/* BADGE RECOMMENDED */
.badge-recommended {
  background: #0e9f6e;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* STARS */
.stars { color: #f59e0b; font-size: 1.1rem; }
.stars-sm { color: #f59e0b; font-size: 0.9rem; }

/* RATING BADGE */
.rating-badge {
  background: #1a56db;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* COMPARISON TABLE */
.table-comparison th { background: #1a56db; color: #fff; font-weight: 600; }
.table-comparison td { vertical-align: middle; }
.table-comparison .check { color: #0e9f6e; font-size: 1.2rem; }
.table-comparison .cross { color: #ef4444; font-size: 1.2rem; }

/* PROS CONS */
.pros-cons .pro { color: #0e9f6e; }
.pros-cons .con { color: #ef4444; }

/* CTA BUTTON */
.btn-cta {
  background: #0e9f6e;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta:hover { background: #057a55; color: #fff; transform: translateY(-1px); }

.btn-primary-custom {
  background: #1a56db;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover { background: #1e40af; color: #fff; }

/* SECTION */
.section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.section-subtitle { color: #6b7280; font-size: 1.05rem; margin-bottom: 32px; }

/* HOST CARD */
.host-card { border: 2px solid #e5e7eb; border-radius: 14px; padding: 28px; margin-bottom: 24px; }
.host-card.featured { border-color: #1a56db; }
.host-logo { font-size: 1.6rem; font-weight: 800; color: #1a56db; }

/* AFFILIATE NOTICE */
.affiliate-notice {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #92400e;
  margin-bottom: 28px;
}

/* FOOTER */
footer { font-size: 0.9rem; }
footer a { text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #fff !important; }

/* FAQ */
.accordion-button:not(.collapsed) { background: #eff6ff; color: #1a56db; font-weight: 600; }
.accordion-button { font-weight: 500; }

/* TRUST BAR */
.trust-bar { background: #f3f4f6; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.trust-item { font-size: 0.9rem; color: #374151; font-weight: 500; }
.trust-item span { color: #1a56db; font-size: 1.2rem; margin-right: 6px; }

/* PRICING TABLE */
.pricing-card { text-align: center; border-radius: 12px; padding: 24px; border: 2px solid #e5e7eb; }
.pricing-card.best { border-color: #1a56db; background: #eff6ff; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: #1a56db; }
.price-period { font-size: 0.85rem; color: #6b7280; }
.price-renewal { font-size: 0.8rem; color: #9ca3af; margin-top: 4px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 48px 0 40px; }
  .host-card { padding: 20px; }
}
