/* ============================================
   Features Hub - product comparison page
   ============================================ */
:root {
  --fh-blue: #1e40af;
  --fh-blue-2: #3b82f6;
  --fh-orange: #ff7a18;
  --fh-orange-2: #ff9d3a;
  --fh-ink: #0f172a;
  --fh-muted: #475569;
  --fh-line: #e2e8f0;
  --fh-bg: #f8fafc;
}

/* ---------- HERO ---------- */
.fh-hero {
  position: relative;
  background: linear-gradient(135deg, #0b1733 0%, #1e3a8a 60%, #1e40af 100%);
  color: #fff;
  padding: 90px 0 70px;
  overflow: hidden;
}
.fh-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.5; pointer-events: none;
}
.fh-hero-glow--1 { width: 380px; height: 380px; background: var(--fh-blue); top: -100px; left: -80px; }
.fh-hero-glow--2 { width: 320px; height: 320px; background: var(--fh-orange); bottom: -120px; right: -80px; opacity: 0.4; }
.fh-hero .container { position: relative; z-index: 2; }
.fh-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.fh-hero-eyebrow i { color: var(--fh-orange-2); }
.fh-hero-h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #fff;
}
.fh-hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--fh-orange-2) 0%, #ffd4a3 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fh-hero-lead {
  font-size: 17px; line-height: 1.6;
  max-width: 720px; margin: 0 auto 22px;
  color: rgba(255,255,255,0.85);
}
.fh-hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px;
}
.fh-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #fff; font-size: 13px; font-weight: 600;
}
.fh-chip i { color: var(--fh-orange-2); font-size: 12px; }
.fh-hero-nav {
  display: inline-flex; flex-wrap: wrap; gap: 8px; padding: 6px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.fh-hero-nav-pill {
  padding: 9px 18px;
  background: transparent;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px; font-weight: 700;
  text-decoration: none; transition: all .25s;
}
.fh-hero-nav-pill:hover {
  background: var(--fh-orange);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- PRODUCT CARDS ---------- */
.fh-products {
  background: var(--fh-bg);
  padding: 70px 0 50px;
}
.fh-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--fh-line);
  border-radius: 22px;
  padding: 32px 28px;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 14px 36px rgba(15,23,42,0.06);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
  scroll-margin-top: 100px;
}
.fh-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.fh-card--blue::before { background: linear-gradient(90deg, var(--fh-blue), var(--fh-blue-2)); }
.fh-card--orange::before { background: linear-gradient(90deg, var(--fh-orange), var(--fh-orange-2)); }
.fh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15,23,42,0.10);
}

.fh-card-head { position: relative; margin-bottom: 22px; }
.fh-card-icon {
  position: absolute; top: 0; right: 0;
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 26px; color: #fff;
}
.fh-card--blue .fh-card-icon {
  background: linear-gradient(135deg, var(--fh-blue), var(--fh-blue-2));
  box-shadow: 0 10px 24px rgba(30,64,175,0.30);
}
.fh-card--orange .fh-card-icon {
  background: linear-gradient(135deg, var(--fh-orange), var(--fh-orange-2));
  box-shadow: 0 10px 24px rgba(255,122,24,0.30);
}
.fh-card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.fh-card-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--fh-bg);
  color: var(--fh-muted);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.04em;
}
.fh-card-tagline {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fh-muted);
}
.fh-card-name {
  font-size: 30px; font-weight: 800; color: var(--fh-ink);
  margin: 0 0 10px; line-height: 1.1;
}
.fh-card-desc {
  font-size: 15px; line-height: 1.6; color: var(--fh-muted);
  margin: 0; padding-right: 30px;
}

.fh-card-features {
  background: var(--fh-bg);
  border: 1px solid var(--fh-line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.fh-card-features-label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fh-muted);
  margin-bottom: 10px;
}
.fh-feat-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
}
.fh-feat-grid li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--fh-ink);
}
.fh-feat-grid li i {
  color: var(--fh-orange);
  font-size: 13px;
  width: 18px;
  flex-shrink: 0;
}
.fh-card--blue .fh-feat-grid li i { color: var(--fh-blue-2); }

.fh-card-actions {
  display: flex; gap: 10px; margin-top: auto;
}
.fh-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  font-size: 13.5px; font-weight: 700;
  border-radius: 11px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s;
}
.fh-btn--primary {
  background: linear-gradient(135deg, var(--fh-orange), var(--fh-orange-2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,122,24,0.30);
}
.fh-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255,122,24,0.40);
}
.fh-btn--outline {
  background: #fff;
  color: var(--fh-ink);
  border-color: var(--fh-line);
}
.fh-btn--outline:hover {
  background: var(--fh-bg);
  color: var(--fh-ink);
  border-color: #cbd5e1;
}
.fh-card-links {
  display: flex; gap: 12px; margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--fh-line);
  font-size: 13px;
}
.fh-card-links a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fh-muted); font-weight: 600;
  text-decoration: none;
}
.fh-card-links a:hover { color: var(--fh-orange); }
.fh-card-links i { font-size: 12px; }

/* ---------- COMPARISON TABLE ---------- */
.fh-compare { background: #fff; padding: 70px 0; }
.fh-section-head { margin-bottom: 36px; }
.fh-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fh-orange);
  margin-bottom: 12px;
}
.fh-section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800; color: var(--fh-ink);
  margin: 0 0 8px;
}
.fh-section-head p {
  font-size: 16px; color: var(--fh-muted); max-width: 620px;
  margin: 0 auto;
}
.fh-compare-wrap {
  background: #fff;
  border: 1px solid var(--fh-line);
  border-radius: 16px;
  overflow: auto;
  box-shadow: 0 14px 36px rgba(15,23,42,0.05);
}
.fh-compare-table {
  width: 100%; border-collapse: collapse;
  min-width: 760px;
}
.fh-compare-table th, .fh-compare-table td {
  padding: 16px 18px; text-align: center;
  border-bottom: 1px solid var(--fh-line);
  font-size: 14px;
  color: var(--fh-ink);
  vertical-align: middle;
}
.fh-compare-table thead th {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  padding: 20px 18px;
  border-bottom: 0;
}
.fh-compare-table thead th:first-child { background: #1e293b; }
.fh-compare-table thead th strong {
  display: block; font-size: 17px; font-weight: 800;
}
.fh-compare-table thead th span {
  display: block; font-size: 11.5px; font-weight: 500;
  color: rgba(255,255,255,0.7); margin-top: 3px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.fh-compare-table tbody th {
  text-align: left;
  background: var(--fh-bg);
  font-weight: 700; font-size: 14px;
  color: var(--fh-muted);
}
.fh-compare-table tbody tr:hover td { background: rgba(255,122,24,0.04); }
.fh-soon {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--fh-orange), var(--fh-orange-2));
  color: #fff;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 999px;
}
.fh-compare-cta-row td a {
  display: inline-block;
  padding: 9px 14px;
  color: var(--fh-orange);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s;
}
.fh-compare-cta-row td a:hover {
  background: rgba(255,122,24,0.10);
}

/* ---------- CROSS-LINKS ---------- */
.fh-links-section {
  background: var(--fh-bg);
  padding: 70px 0;
}
.fh-link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--fh-line);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  height: 100%;
}
.fh-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--fh-orange);
  box-shadow: 0 16px 36px rgba(255,122,24,0.12);
  color: inherit;
}
.fh-link-card > i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--fh-orange), var(--fh-orange-2));
  color: #fff;
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(255,122,24,0.25);
}
.fh-link-card h4 {
  font-size: 17px; font-weight: 800; color: var(--fh-ink);
  margin: 0 0 6px;
}
.fh-link-card p {
  font-size: 13.5px; color: var(--fh-muted); margin: 0;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .fh-hero { padding: 70px 0 50px; }
  .fh-card { padding: 26px 22px; }
  .fh-card-name { font-size: 26px; }
  .fh-card-icon { width: 50px; height: 50px; font-size: 22px; }
  .fh-products, .fh-compare, .fh-links-section { padding: 50px 0; }
}
@media (max-width: 575.98px) {
  .fh-hero { padding: 50px 0 40px; }
  .fh-hero-h1 { font-size: 30px; }
  .fh-card { padding: 24px 18px; }
  .fh-card-name { font-size: 22px; padding-right: 0; }
  .fh-card-icon { width: 42px; height: 42px; font-size: 18px; }
  .fh-card-desc { padding-right: 0; font-size: 14.5px; }
  .fh-feat-grid { grid-template-columns: 1fr; }
  .fh-card-actions { flex-direction: column; gap: 8px; }
  .fh-card-links { flex-wrap: wrap; gap: 14px; }
}
