/* Bluebird AGI — Comparison page styles */

.comp-tab {
  padding:8px 20px;
  border-radius:8px;
  font-size:.85rem;
  font-weight:700;
  cursor:pointer;
  border:1.5px solid rgba(35,66,97,0.2);
  color:var(--text-muted);
  background:var(--white);
  transition:all .15s;
}

.comp-tab:hover,.comp-tab.active {
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
}

.comp-header-row {
  display:grid;
  grid-template-columns:1fr 160px 160px;
  gap:0;
  border-bottom:2px solid var(--sky-border);
  padding-bottom:16px;
  margin-bottom:4px;
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}

.comp-row {
  display:grid;
  grid-template-columns:1fr 160px 160px;
  gap:0;
  padding:14px 0;
  border-bottom:1px solid rgba(35,66,97,0.07);
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
  align-items:center;
}

.comp-row-last {
  border-bottom:none;
}

.comp-label-col {
  font-size:.88rem;
  color:var(--navy);
  font-weight:500;
  padding-right:20px;
}

.comp-col {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  font-size:.8rem;
}

.comp-col-bluebird {
  background:rgba(46,115,76,0.05);
  border-radius:8px;
  padding:6px 4px;
}

.comp-brand-pill {
  padding:4px 14px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.comp-brand-bb {
  background:rgba(46,115,76,0.15);
  color:#2E734C;
  border:1px solid rgba(46,115,76,0.3);
}

.comp-brand-other {
  background:rgba(176,217,238,0.5);
  color:var(--text-muted);
  border:1px solid var(--sky-border);
}

.comp-price {
  font-size:1.15rem;
  font-weight:900;
  color:var(--navy);
}

.comp-price span {
  font-size:.75rem;
  font-weight:500;
  color:var(--text-muted);
}

.comp-price-other {
  color:var(--text-muted);
}

.comp-yes {
  color:#2E734C;
  font-weight:700;
  font-size:.8rem;
}

.comp-no {
  color:#b91c1c;
  font-weight:600;
  font-size:.76rem;
}

.comp-partial {
  color:#d97706;
  font-weight:600;
  font-size:.76rem;
}

.comp-verdict {
  margin:32px auto 0;
  max-width:780px;
  background:rgba(35,66,97,0.04);
  border:1px solid var(--sky-border);
  border-left:3px solid #2E734C;
  border-radius:10px;
  padding:20px 24px;
}

.comp-verdict-inner {
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.comp-verdict-icon {
  width:28px;
  height:28px;
  background:#2E734C;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex-shrink:0;
  font-size:.9rem;
}

.comp-verdict-inner div {
  font-size:.88rem;
  color:var(--text-muted);
  line-height:1.65;
}

.comp-verdict-inner strong {
  color:var(--navy);
}

@media(max-width:640px) {
  .comp-header-row,.comp-row {
    grid-template-columns:1fr 110px 110px;
  }
  .comp-label-col {
    font-size:.8rem;
  }
}

.pain-box {
  background:#fff;
  border-radius:14px;
  padding:28px 24px;
  text-align:center;
  border:1px solid rgba(26,46,69,0.08);
  box-shadow:0 2px 12px rgba(26,46,69,0.06);
  position:relative;
  overflow:hidden;
  cursor:default;
  transition:border-color .2s,box-shadow .2s;
}

.pain-box:hover {
  border-color:rgba(239,68,68,0.35);
  box-shadow:0 6px 24px rgba(239,68,68,0.14);
}

.pain-x {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity .25s;
  background:rgba(255,255,255,0.88);
  border-radius:14px;
  pointer-events:none;
}

.pain-box:hover .pain-x {
  opacity:1;
}

.pain-x svg {
  width:72px;
  height:72px;
}

.comp-hero {
  padding:clamp(48px,8vw,80px) 0;
  text-align:center;
  position:relative;
}

.comp-hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,5vw,3.4rem);
  font-weight:800;
  letter-spacing:-0.025em;
  line-height:1.1;
  margin-bottom:16px;
  color:#1a2e45;
}

.comp-hero .hero-sub {
  font-family:'DM Sans',-apple-system,sans-serif;
  font-size:clamp(1.1rem,2.5vw,1.4rem);
  font-weight:600;
  color:#1a2e45;
  margin:0;
}

@media(max-width:768px) {
  .comp-hero {
    background-size: auto 200% !important;
  }
}

.comp-intro {
  font-size:1.05rem;
  color:#3a5068;
  line-height:1.8;
  max-width:700px;
  margin:0 auto 48px;
  padding-top:8px;
}

.comp-h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  font-weight:800;
  color:#1a2e45;
  margin-bottom:8px;
  letter-spacing:-0.02em;
}

.comp-table {
  width:100%;
  border-collapse:collapse;
  margin-bottom:40px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 2px 24px rgba(26,46,69,0.08);
}

.comp-table thead tr {
  background:#1a2e45;
}

.comp-table th {
  padding:16px 20px;
  text-align:left;
  font-family:'DM Sans',-apple-system,sans-serif;
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#d4ecf7;
}

.comp-table th.bb-col {
  background:#2E734C;
  color:#fff;
}

.comp-table th.feat-col {
  background:#1a2e45;
  width:36%;
}

.comp-table th.comp-col {
  background:#334155;
}

.comp-table tbody tr {
  border-bottom:1px solid rgba(26,46,69,0.07);
  transition:background .12s;
}

.comp-table tbody tr:last-child {
  border-bottom:none;
}

.comp-table tbody tr:hover {
  background:rgba(26,46,69,0.03);
}

.comp-table td {
  padding:14px 20px;
  font-size:.9rem;
  color:#2a4560;
  line-height:1.55;
  vertical-align:top;
}

.comp-table td.feat-cell {
  font-weight:600;
  color:#1a2e45;
  background:rgba(26,46,69,0.02);
}

.comp-table td.cell-yes {
  color:#1a5c38;
}

.comp-table td.cell-yes .check {
  color:#2E734C;
  font-weight:900;
  margin-right:4px;
}

.comp-table td.cell-no {
  color:#7a1a1a;
}

.comp-table td.cell-no .cross {
  color:#dc2626;
  font-weight:900;
  margin-right:4px;
}

.comp-table td.cell-partial {
  color:#7a5c00;
}

.comp-table td.cell-partial .partial {
  color:#d97706;
  font-weight:900;
  margin-right:4px;
}

@media(max-width:640px) {
  .comp-table th,.comp-table td {
    padding:10px 12px;
    font-size:.82rem;
  }
  .comp-table th.feat-col {
    width:28%;
  }
}

.verdict-box {
  background:linear-gradient(135deg,rgba(26,46,69,0.04),rgba(46,115,76,0.04));
  border:1.5px solid rgba(46,115,76,0.2);
  border-left:4px solid #2E734C;
  border-radius:14px;
  padding:28px 32px;
  margin-bottom:48px;
}

.verdict-box h3 {
  font-family:'Playfair Display',serif;
  font-size:1.1rem;
  font-weight:700;
  color:#1a2e45;
  margin-bottom:12px;
  letter-spacing:-0.01em;
}

.verdict-box p {
  font-size:.95rem;
  color:#3a5068;
  line-height:1.75;
  margin:0;
}

.comp-cta-wrap {
  background:linear-gradient(135deg,#1a2e45 0%,#0f2033 100%);
  padding:clamp(48px,8vw,72px) 0;
  text-align:center;
}

.comp-cta-wrap h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:800;
  color:#f0f6ff;
  margin-bottom:12px;
  letter-spacing:-0.02em;
}

.comp-cta-wrap p {
  font-size:.95rem;
  color:rgba(240,246,252,0.65);
  margin-bottom:28px;
}
