/* ═══════════════════════════════════════════
   ServerDeal Design System
   Theme: "Server Rack" — datacenter-inspired
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Custom Properties ── */
:root {
  --bg-deep:     #f8f9fb;
  --bg-surface:  #ffffff;
  --bg-card:     #ffffff;
  --bg-card-alt: #f2f4f8;
  --border:      #e2e6ed;
  --border-hover:#c8cdd8;

  --text:        #2c3038;
  --text-heading:#14161c;
  --text-muted:  #616876;
  --text-dim:    #949ba8;

  --accent:      #3b6ef0;
  --accent-hover:#2559d6;
  --accent-dim:  rgba(59, 110, 240, 0.08);

  --deal:        #0e8c5a;
  --deal-dim:    rgba(14, 140, 90, 0.08);
  --gold:        #d4890e;
  --gold-dim:    rgba(212, 137, 14, 0.1);
  --violet:      #7248e0;
  --red:         #dc2645;

  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', 'Cascadia Code', monospace;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* subtle grid overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(59, 110, 240, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(114, 72, 224, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(14, 140, 90, 0.03) 0%, transparent 40%);
}

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-hover); }

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════ */
.announce {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.announce a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.announce a:hover { opacity: .85; color: #fff; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--deal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--deal);
  animation: led-pulse 3s ease-in-out infinite;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  padding: .45rem .85rem;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: all .18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-heading);
  background: var(--accent-dim);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59, 110, 240, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/* hero status bar */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .4rem 1rem;
  font-size: .78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}
.hero-status .dot {
  width: 7px;
  height: 7px;
  background: var(--deal);
  border-radius: 50%;
  animation: led-pulse 2s ease-in-out infinite;
}
.hero-status .dot.warn { background: var(--gold); animation-delay: .7s; }

/* ── Hero Category Tabs ── */
.hero-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.hero-tab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all .18s;
}
.hero-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-tab.active-hero {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
  margin-bottom: .2rem;
}
.stat-label {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE SECTION
   ═══════════════════════════════════════════ */
.why-choose {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.why-choose-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.4px;
  margin-bottom: .5rem;
}
.why-choose-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: .4rem;
  letter-spacing: -0.2px;
}
.why-card p {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════════ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.section-title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════
   CATEGORY CARDS (Free VPS / Free Hosting)
   ═══════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  opacity: 0;
  transition: opacity .25s;
}
.cat-card:hover {
  color: var(--text);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
}
.cat-card:hover::after { opacity: 1; }

.cat-card .cat-icon { font-size: 2rem; line-height: 1; }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
}

.cat-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PRICE TIER CARDS — comparison-card style
   ═══════════════════════════════════════════ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.15rem 1.25rem;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

/* color strip at top — varied by tier */
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background .25s, opacity .25s;
}
.tier-card:nth-child(1)::before { background: #22c55e; }
.tier-card:nth-child(2)::before { background: #4ade80; }
.tier-card:nth-child(3)::before { background: var(--accent); }
.tier-card:nth-child(4)::before { background: #818cf8; }
.tier-card:nth-child(5)::before { background: var(--violet); }

.tier-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  color: var(--text);
}

.tier-card .tier-icon {
  font-size: 1.5rem;
  margin: .4rem 0 .3rem;
}
.tier-card .price-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}
.tier-card .price-tag small {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tier-card .tier-label {
  font-size: .8rem;
  color: var(--text-heading);
  font-weight: 600;
}
.tier-card .tier-features {
  margin: .7rem 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.tier-card .tier-feat {
  font-size: .72rem;
  color: var(--text-muted);
}
.tier-card .tier-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: .75rem;
  font-weight: 600;
}

.tier-card .btn { width: 100%; }

/* ═══════════════════════════════════════════
   PROVIDER CARDS
   ═══════════════════════════════════════════ */
.provider-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.provider-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.provider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.provider-header-left {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.provider-card-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.provider-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
}

.provider-price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deal);
  white-space: nowrap;
  background: var(--deal-dim);
  padding: .3rem .7rem;
  border-radius: 6px;
  letter-spacing: -0.3px;
}

/* ── Specs Grid ── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .55rem;
  margin-bottom: .85rem;
}

.spec-item {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .55rem .7rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-item .spec-label {
  color: var(--text-dim);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
}

.spec-item .spec-value {
  color: var(--text);
  font-weight: 600;
  font-size: .82rem;
  font-family: var(--font-mono);
}

/* ── Rating ── */
.rating {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .75rem;
}

.stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 1px;
}
.rating-num {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 500;
}

/* ── Feature Tags ── */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
}

.tag {
  background: rgba(59, 110, 240, 0.07);
  color: #3b6ef0;
  font-size: .72rem;
  padding: .22rem .6rem;
  border-radius: 99px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

/* ── Locations ── */
.locations {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ── Trial Badge ── */
.trial-badge {
  display: inline-block;
  padding: .18rem .55rem;
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  vertical-align: middle;
  margin-left: .35rem;
  text-transform: uppercase;
}
.trial-badge.always-free {
  background: var(--deal-dim);
  color: var(--deal);
}
.trial-badge.trial {
  background: rgba(212, 137, 14, 0.1);
  color: var(--gold);
}

/* ── Host Type Badge ── */
.host-type-badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 99px;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  vertical-align: middle;
  margin-left: .35rem;
  text-transform: uppercase;
}
.host-type-badge.php {
  background: rgba(59, 110, 240, 0.08);
  color: var(--accent);
}
.host-type-badge.static {
  background: rgba(114, 72, 224, 0.08);
  color: var(--violet);
}

/* ── Provider Description ── */
.provider-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem 1.15rem;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .18s;
  font-family: var(--font-body);
  letter-spacing: 0.1px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(79, 143, 255, .3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text-heading);
  background: var(--accent-dim);
}

.btn-sm {
  padding: .35rem .7rem;
  font-size: .76rem;
}

.card-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-weight: 500;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text-heading); }
.breadcrumb .sep { color: var(--border); }

/* ═══════════════════════════════════════════
   PROVIDER DETAIL PAGE
   ═══════════════════════════════════════════ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text-muted);
  font-size: .84rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  transition: color .15s;
}
.back-link:hover { color: var(--text-heading); }

.detail-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.detail-header-top {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.detail-header-info { flex: 1; min-width: 200px; }
.detail-header .provider-name {
  font-size: 1.5rem;
  margin-bottom: .35rem;
}
.detail-header .provider-price {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ── Provider Avatar ── */
.provider-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provider-avatar-fallback {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.provider-summary {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: .3rem;
  line-height: 1.5;
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
}
.detail-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Expert Rating Card ── */
.expert-rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.expert-rating-badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 20px rgba(79, 143, 255, .25);
}

.expert-rating-content { flex: 1; }
.expert-rating-content h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
  margin-bottom: .5rem;
}
.expert-rating-content p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── Review Section ── */
.review-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.review-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
  margin-bottom: 1rem;
}

.review-section p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .93rem;
}

/* ── Pros & Cons ── */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.proscons-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.proscons-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.proscons-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
}

.pros .proscons-icon {
  background: var(--deal-dim);
  color: var(--deal);
}

.cons .proscons-icon {
  background: rgba(244, 63, 94, 0.12);
  color: var(--red);
}

.proscons-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.proscons-card li {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.proscons-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.pros li::before { background: var(--deal); }
.cons li::before { background: var(--red); }

/* ── Sidebar ── */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.2px;
  margin-bottom: 1rem;
}

.sidebar-specs .ss-item {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
}
.sidebar-specs .ss-item:last-child { border-bottom: none; }
.ss-label { color: var(--text-dim); font-weight: 500; }
.ss-value { color: var(--text); font-weight: 600; font-family: var(--font-mono); font-size: .8rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-dim);
  font-size: .8rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════ */
._404-title {
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .75rem;
  letter-spacing: -2px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes led-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .tier-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .detail-body {
    grid-template-columns: 1fr;
  }

  .proscons-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 1rem 2rem;
  }
  .hero h1 {
    font-size: 1.75rem;
    letter-spacing: -0.6px;
  }
  .hero p {
    font-size: .95rem;
  }

  .section {
    padding: 1rem 1rem 2rem;
  }

  .nav-inner {
    padding: 0 .85rem;
    height: 54px;
  }
  .nav-links a {
    font-size: .72rem;
    padding: .3rem .55rem;
  }

  .tier-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: .5rem;
  }
  .tier-card {
    padding: 1rem .6rem .9rem;
  }
  .tier-card .price-tag {
    font-size: 1.15rem;
  }

  .provider-card {
    padding: 1.15rem;
  }
  .provider-header {
    flex-direction: column;
    gap: .5rem;
  }

  .detail-header {
    padding: 1.25rem;
  }
  .detail-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .expert-rating-card {
    flex-direction: column;
    gap: 1rem;
  }
  .expert-rating-badge {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo { font-size: 1.1rem; }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: 1.5rem 1rem;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .72rem; }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-tab {
    font-size: .72rem;
    padding: .4rem .75rem;
  }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
