*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #0a84ff;
  --blue-dark: #0060cc;
  --green: #30b67a;
  --star: #f5a623;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f8fafc;
  --white: #ffffff;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.08);
  --radius: 10px;
}
body {

  line-height: 1.6;
}
.compare-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 16px 60px;
}
/* ── Hero comparison card ── */
.compare-hero {
  padding: 32px 28px;
  margin-bottom: 28px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.broker-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.broker-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.broker-logo-wrap img {
  height: 88px;
  width: auto;
  object-fit: contain;
}
.broker-nameo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--text);
  font-size: 30px;
}
.broker-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.star-icon { color: var(--star); font-size: 24px; }
.rating-val { font-weight: 700;color: #06b384;font-size: 18px; font-family: 'Inter', sans-serif; }
.rating-max {color: var(--muted);letter-spacing: 4px; }
.register-btny{    text-align: center;
    padding: 11px 16px;
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    transition: background .15s, color .15s;
    margin-bottom: 10px;
    font-weight: 600;}

.register-btny:hover { background: #007bbd;; transform: translateY(-1px); color: #fff; }
.register-btno {
  display: inline-block;
  background: #007bbd;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-bottom: 10px;
  font-size: 16px;
  margin-left: 18px;
}
.register-btno:hover { background: #10b981;; transform: translateY(-1px); color: #fff; }
.risk-note {
  color: var(--muted);
  /* max-width: 200px; */
  line-height: 1.4;
  margin-bottom: 12px;
}
/* Available in */
.available-in {
  display: flex;
  align-items: center;
  gap: 6px;

  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
}
.available-in .check { color: var(--green); }
.available-in strong { color: var(--text); }
.country-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  vertical-align: middle;
}
.country-flag-emoji {
  line-height: 1;
}
/* VS divider */
.vs-col {
  padding: 0 12px;
}
.vs-badge {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #000;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;font-size: 40px;

}

.intro-text a { color: var(--blue); text-decoration: underline; }
/* ── Section headings ── */
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text);
  border-left: 3px solid #42acd5;
  padding-left: 12px;
}
/* ── Our pick card ── */
.our-pick-card {
  background: #f0f7ff;
  border: 1px solid #c3dffe;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.our-pick-card .pick-label {
  font-weight: 600;
  color: #040404;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  margin-top: 0;
}
.our-pick-card .pick-broker {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;text-indent: 32px;
}
.our-pick-card p {
  color: #374151;
  line-height: 1.65;    text-indent: 32px;
}
/* ── Comparison table ── */
.compare-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--card-shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table thead th {
  padding: 10px 18px;
  font-weight: 800;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 16px;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.broker-th { color: #040404; }

.compare-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  vertical-align: middle;
      transition: background-color 0.2s ease; 
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  background: #fafbfc;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td{background: #eef2f7 !important;}
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.tag-green { background: #dcfce7; color: #166534; }
.tag-blue { background: #dbeafe; color: #1e40af; }
.tag-gray { background: #f1f5f9; color: #475569; }
/* ── Pros/Cons ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.pros-cons-header {
    padding: 10px 18px 0 22px;
  font-family: 'Fraunces', serif;
font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}


.pros-cons-body { padding: 6px 10px; }
.pros-cons-body ul { list-style: none; }
.pros-cons-body li {
  color: var(--text);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid #f9fafb;
}
.pros-cons-body li:last-child { border-bottom: none; }
.pros-cons-body li .icon { flex-shrink: 0;  margin-top: 2px; }
.pros li .icon { color: var(--green); }
.cons li .icon { color: #ef4444; }
.pros p, .cons p {
  position: relative;
  padding-left: 32px; 
  line-height: 1.6;
  margin: 8px 0;
}
.pros p::before,
.cons p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}
.pros p::before {
  content: "+";
  color: #28a868;
  border: 1px solid #28a868;
}
.cons p::before {
  content: "−";
  color: #dd3333;
  border: 1px solid #dd3333; 
}


/* ── Article body ── */
.article-body {
  padding: 28px;
  color: #374151;
  line-height: 30px;
}
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
  padding-bottom: 6px;

}
.article-body h3 {
  font-weight: 600;
  color: var(--text);
  margin: 18px 0 8px;
}
.article-body p { margin-bottom: 12px; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.article-body table th,
.article-body table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.article-body table th { background: #f1f5f9; font-weight: 600; }
.article-body table tr:nth-child(even) td { background: #fafbfc; }
/* ── Responsive ── */
@media (max-width:963px){.register-btno{margin-top: 22px;}

}
@media (max-width:908px){
  .register-btny{display: block;padding: 8px 8px;}.register-btno{margin-top: 5px; margin-left: 0px;}

}

@media (max-width: 680px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vs-col { flex-direction: row;     justify-content: space-around;}
  .vs-line { width: 60px; height: 1px; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .broker-col { padding: 0; }
  .compare-table thead th,
  .compare-table tbody td { padding: 10px 10px; }
}