/* ═══════════════════════════════════════════════════════════════
   FINDBESTAI — TOOL DETAIL PAGE  v3
   Contact-card hover glow · Animated ring border on hero
   Comparison table · Pros/Cons · "More tools" grid with See All
   No ads · No Related section · Tags at bottom like blog
═══════════════════════════════════════════════════════════════ */

/* ── PAGE WRAPPER ── */
.tool-detail-main {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px) 80px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text3);
  flex-wrap: wrap;
  padding: 32px 0 20px;
}
.breadcrumb a { color: var(--text3); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: var(--border-md); font-size: .7rem; }
.bc-current { color: var(--text2); font-weight: 500; }

/* ═══════════════════════════════
   HERO CARD — animated ring border
   (same technique as search-wrap / compare-wrap)
═══════════════════════════════ */
.hero-ring-wrap {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
  background-size: 300% 300%;
  animation: ringGlow 6s ease infinite;
  box-shadow: 0 0 48px var(--glow), 0 0 96px var(--glow2);
  margin-bottom: 36px;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

/* Subtle bg glow from tool color */
.hero-bg-blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }

/* ── FEATURED RIBBON ── */
.featured-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: linear-gradient(135deg,#f59e0b,#d97706);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 5px 44px;
  transform: rotate(35deg);
  box-shadow: 0 2px 12px rgba(245,158,11,.5);
  text-transform: uppercase;
  z-index: 5;
}

/* ── LOGO + NAME ROW ── */
.hero-logo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.hero-logo {
  width: 82px; height: 82px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  overflow: hidden;
  font-size: 2rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.hero-logo:hover { transform: scale(1.06) rotate(-3deg); }
.hero-logo img {
  width: 50px; height: 50px;
  object-fit: contain;
  filter: brightness(1.1);
}
.hero-logo-info { flex: 1; min-width: 0; }
.hero-name {
  font-size: clamp(1.5rem,4vw,2.1rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 8px;
}
.hero-cat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-cat {
  font-size: .8rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s;
}
.hero-cat:hover { color: var(--accent2); }

/* ── META GRID ── */
.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.meta-item {
  background: var(--surface2);
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background .15s;
}
.meta-item:hover { background: var(--surface3); }
.meta-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text3);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.meta-val {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
}
.stars-gold { color: var(--gold); letter-spacing: 1px; font-size: .85rem; }

/* ── BEST FOR ── */
.best-for-badge {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: color-mix(in srgb,var(--accent2) 10%,var(--surface2));
  border: 1px solid color-mix(in srgb,var(--accent2) 25%,transparent);
  border-radius: 10px;
  padding: 9px 16px;
  margin-bottom: 16px;
  font-size: .84rem;
}
.bf-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent2);
  font-weight: 800;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}
.bf-val { color: var(--text2); line-height: 1.45; }

/* ── HERO DESC ── */
.hero-desc {
  font-size: .94rem;
  color: var(--text2);
  line-height: 1.72;
  margin-bottom: 20px;
}

/* ── ACTION BUTTONS ── */
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-visit {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(79,163,255,.38);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.btn-visit:hover { opacity:.88; transform:translateY(-2px); box-shadow:0 8px 30px rgba(79,163,255,.48); }
.btn-alt {
  background: var(--surface2);
  color: var(--text2);
  border: 1px solid var(--border-md);
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .86rem;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-alt:hover { background:var(--surface3); color:var(--text); border-color:var(--border-hi); }
.btn-compare {
  background: transparent;
  color: var(--text3);
  border: 1px solid var(--border);
  padding: 11px 16px;
  border-radius: 12px;
  font-size: .82rem;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-compare:hover { color:var(--accent); border-color:var(--accent); background:color-mix(in srgb,var(--accent) 6%,transparent); }

/* ═══════════════════════════════
   2-COLUMN LAYOUT
═══════════════════════════════ */
.detail-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
.detail-left { display: flex; flex-direction: column; gap: 20px; }

/* ── SECTION CARD — contact-card hover effect ── */
.detail-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s;
  position: relative;
  overflow: hidden;
}
.detail-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.28), 0 0 28px var(--glow), 0 0 56px var(--glow2);
  border-color: var(--border-md);
}
[data-theme="light"] .detail-section:hover {
  box-shadow: 0 10px 32px rgba(15,30,60,.14), 0 0 28px var(--glow), 0 0 56px var(--glow2);
}

.section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.01em;
}
.sec-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  color: var(--accent);
  background: color-mix(in srgb,var(--accent) 12%,transparent);
  border: 1px solid color-mix(in srgb,var(--accent) 25%,transparent);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: .06em;
}
.section-desc {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── PRICING + FREE ALT ── */
.price-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .85rem;
  margin-bottom: 10px;
}
.price-label {
  color: var(--text3);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  padding-top: 1px;
}
.price-val { color: var(--text2); line-height: 1.5; }

.free-alt-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: color-mix(in srgb,var(--green) 8%,var(--surface2));
  border: 1px solid color-mix(in srgb,var(--green) 25%,transparent);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .85rem;
}
.fa-label { color: var(--green); font-weight: 700; font-size: .75rem; font-family:'JetBrains Mono',monospace; }
.fa-link { color: var(--accent); text-decoration: none; font-weight: 700; font-size: .85rem; transition: color .15s; white-space: nowrap; }
.fa-link:hover { color: var(--accent2); }

/* ── PROS & CONS ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pros-box, .cons-box {
  border-radius: 14px;
  padding: 18px;
}
.pros-box {
  background: color-mix(in srgb,var(--green) 8%,var(--surface2));
  border: 1px solid color-mix(in srgb,var(--green) 22%,transparent);
}
.cons-box {
  background: color-mix(in srgb,var(--red) 7%,var(--surface2));
  border: 1px solid color-mix(in srgb,var(--red) 20%,transparent);
}
.pc-header {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
}
.pc-header-pro { color: var(--green); }
.pc-header-con { color: var(--red); }
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 6px 0;
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.5;
  border-bottom: 1px solid color-mix(in srgb,var(--border) 40%,transparent);
}
.pc-item:last-child { border-bottom: none; }
.pc-icon { font-size: .75rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.pc-pro .pc-icon { color: var(--green); }
.pc-con .pc-icon { color: var(--red); }

/* ── FEATURES LIST ── */
.features-list { display: flex; flex-direction: column; gap: 2px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.55;
  transition: background .15s, transform .15s;
  cursor: default;
}
.feature-item:hover { background: var(--surface2); transform: translateX(4px); }
.feat-icon {
  color: var(--accent);
  font-size: .78rem;
  flex-shrink: 0;
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
}

/* ── FREE ALTERNATIVES ── */
.alts-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}
.alt-card {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
.alt-card:hover {
  border-color: var(--border-hi);
  background: var(--surface3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.alt-logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
}
.alt-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.alt-name { font-size: .84rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── COMPARISON TABLE ── */
.comp-table-wrap { overflow-x: auto; border-radius: 12px; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
}
.comp-table thead th {
  padding: 11px 16px;
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  white-space: nowrap;
  background: var(--surface2);
}
.comp-table thead th:first-child { border-radius: 12px 0 0 0; }
.comp-table thead th:last-child  { border-radius: 0 12px 0 0; }
.comp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid color-mix(in srgb,var(--border) 55%,transparent);
  color: var(--text2);
  vertical-align: middle;
}
.comp-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.comp-table tbody tr { transition: background .15s; }
.comp-table tbody tr:hover { background: var(--card-hover-bg); }
.comp-table tbody tr:last-child td { border-bottom: none; }
/* Highlight "this tool" column */
.comp-col-highlight {
  background: color-mix(in srgb,var(--accent) 6%,transparent) !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
}
.comp-check { color: var(--green); font-size: 1rem; }
.comp-cross { color: var(--red); font-size: .9rem; }
.comp-part  { color: var(--gold); font-size: .85rem; }
.comp-th-highlight {
  background: color-mix(in srgb,var(--accent) 12%,var(--surface2)) !important;
  color: var(--accent) !important;
}

/* ── TAGS SECTION (like blog) ── */
.tags-section {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.tags-section-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 10px;
}
.tags-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   SIDEBAR — no ads, no quick info
═══════════════════════════════ */
.detail-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sidebar cards — same contact-card hover */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s;
}
.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.28), 0 0 28px var(--glow), 0 0 56px var(--glow2);
  border-color: var(--border-md);
}
[data-theme="light"] .sidebar-card:hover {
  box-shadow: 0 10px 32px rgba(15,30,60,.14), 0 0 28px var(--glow), 0 0 56px var(--glow2);
}
.sc-title {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
}
.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid color-mix(in srgb,var(--border) 50%,transparent);
  gap: 8px;
}
.sc-row:last-of-type { border-bottom: none; }
.sc-lbl { font-size: .78rem; color: var(--text3); white-space: nowrap; }
.sc-val { font-size: .82rem; font-weight: 600; color: var(--text2); text-align: right; }
.sc-link { font-size: .82rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.sc-link:hover { color: var(--accent2); }
.sc-visit-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  margin-top: 14px;
  transition: opacity .2s, transform .2s;
  box-sizing: border-box;
}
.sc-visit-btn:hover { opacity: .88; transform: translateY(-1px); }

/* Free alt sidebar */
.sidebar-freealt {
  border-color: color-mix(in srgb,var(--green) 28%,transparent) !important;
  background: color-mix(in srgb,var(--green) 5%,var(--surface)) !important;
}
.sfa-title { font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.sfa-sub { font-size: .78rem; color: var(--text3); margin-bottom: 12px; }
.sfa-btn {
  display: block;
  background: color-mix(in srgb,var(--green) 14%,var(--surface2));
  border: 1px solid color-mix(in srgb,var(--green) 32%,transparent);
  color: var(--green);
  text-align: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .83rem;
  text-decoration: none;
  transition: all .2s;
}
.sfa-btn:hover { background: color-mix(in srgb,var(--green) 22%,var(--surface2)); transform: translateY(-1px); }

/* ═══════════════════════════════
   MORE IN CATEGORY — enhanced
═══════════════════════════════ */
.more-section {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.more-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.more-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
}
.more-see-all-top {
  font-size: .82rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s;
}
.more-see-all-top:hover { color: var(--accent2); }

.more-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

/* More cards — same contact-card glow hover */
.more-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s;
  position: relative;
  overflow: hidden;
}
.more-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,var(--accent),var(--accent2),var(--accent3),var(--accent));
  background-size: 300% 300%;
  opacity: 0;
  z-index: 0;
  transition: opacity .3s;
  animation: ringGlow 4s ease infinite;
  pointer-events: none;
}
.more-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: var(--surface);
  z-index: 0;
  transition: background .3s;
}
.more-card > * { position: relative; z-index: 1; }
.more-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px var(--glow), 0 0 80px var(--glow2), 0 16px 40px rgba(0,0,0,.25);
  border-color: transparent;
}
.more-card:hover::before { opacity: 1; }

.more-logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.more-card:hover .more-logo { transform: scale(1.1) rotate(-3deg); }
.more-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.more-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.more-desc {
  font-size: .74rem;
  color: var(--text3);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0;
}
.more-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.stars-sm { color: var(--gold); font-size: .7rem; letter-spacing: .5px; }
.more-rating {
  font-size: .74rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text2);
  font-weight: 500;
}

/* "See all" button below more grid */
.more-see-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 13px 28px;
  background: var(--surface2);
  border: 1px solid var(--border-md);
  border-radius: 14px;
  color: var(--text2);
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
  width: 100%;
  box-sizing: border-box;
}
.more-see-all-btn:hover {
  background: var(--surface3);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px var(--glow);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.more-grid .reveal:nth-child(1){transition-delay:.05s}
.more-grid .reveal:nth-child(2){transition-delay:.1s}
.more-grid .reveal:nth-child(3){transition-delay:.15s}
.more-grid .reveal:nth-child(4){transition-delay:.2s}
.more-grid .reveal:nth-child(5){transition-delay:.25s}
.more-grid .reveal:nth-child(6){transition-delay:.3s}
.more-grid .reveal:nth-child(7){transition-delay:.35s}
.more-grid .reveal:nth-child(8){transition-delay:.4s}

/* ═══════════════════════════════
   TABLET  ≤ 1024px
═══════════════════════════════ */
@media (max-width:1024px) {
  .detail-content { grid-template-columns: 1fr 265px; gap: 18px; }
  .more-grid { grid-template-columns: repeat(3,1fr); }
  .hero-meta-grid { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════
   MOBILE  ≤ 768px
═══════════════════════════════ */
@media (max-width:768px) {
  .tool-detail-main { padding: 0 14px 56px; }
  .breadcrumb { padding: 20px 0 14px; font-size: .72rem; }

  /* Hero */
  .hero-ring-wrap { border-radius: 18px; padding: 1.5px; margin-bottom: 24px; }
  .hero-card { padding: 18px 16px; border-radius: 17px; }
  .hero-bg-blob { width: 240px; height: 240px; top: -50px; right: -50px; }
  .featured-ribbon { display: none; }

  .hero-logo-wrap { gap: 14px; margin-bottom: 16px; }
  .hero-logo { width: 60px; height: 60px; border-radius: 14px; }
  .hero-logo img { width: 38px; height: 38px; }
  .hero-name { font-size: 1.35rem; }

  .hero-meta-grid {
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 14px;
  }
  .meta-item { padding: 10px 12px; }
  .meta-val { font-size: .84rem; }

  .best-for-badge { font-size: .78rem; padding: 8px 12px; gap: 7px; }
  .hero-desc { font-size: .86rem; margin-bottom: 14px; }
  .hero-actions { gap: 8px; }
  .btn-visit { width: 100%; justify-content: center; font-size: .88rem; padding: 12px 16px; }
  .btn-alt, .btn-compare { flex: 1; text-align: center; font-size: .8rem; padding: 10px 12px; }

  /* Stack layout */
  .detail-content { grid-template-columns: 1fr; gap: 16px; }
  .detail-sidebar { position: static; top: auto; order: 2; }
  .detail-left { order: 1; }

  .detail-section { padding: 18px 16px; border-radius: 14px; }
  .detail-section:hover { transform: none; }
  .section-title { font-size: .94rem; margin-bottom: 14px; }

  /* Pros/cons — stack on mobile */
  .pros-cons-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Alts — 1 col on mobile */
  .alts-grid { grid-template-columns: 1fr; gap: 8px; }

  /* Comparison table — scrolls horizontally */
  .comp-table-wrap { border-radius: 10px; }
  .comp-table { font-size: .78rem; }
  .comp-table td, .comp-table thead th { padding: 9px 12px; }

  /* More grid — 2 col on mobile */
  .more-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .more-card { padding: 14px 12px; }
  .more-desc { display: none; }
  .more-section { margin-top: 36px; padding-top: 28px; }

  /* Sidebar */
  .sidebar-card:hover { transform: none; box-shadow: none; }
}

/* ═══════════════════════════════
   SMALL  ≤ 480px
═══════════════════════════════ */
@media (max-width:480px) {
  .hero-meta-grid { grid-template-columns: repeat(2,1fr); }
  .hero-actions { flex-direction: column; }
  .btn-alt, .btn-compare { width: 100%; text-align: center; }
  .more-grid { grid-template-columns: 1fr 1fr; }
  .more-card { border-radius: 12px; }
  .more-see-all-btn { font-size: .83rem; padding: 12px; }
}
