@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,500;0,700;1,300;1,500&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ===== CSS 变量 ===== */
:root {
  --neon-green: #69ff69;
  --neon-cyan: #00ffff;
  --dark: #172617;
  --dark-80: rgba(23,38,23,0.8);
  --dark-60: rgba(23,38,23,0.6);
  --chrome-light: #e8ffe8;
  --chrome-mid: #9dffb0;
  --glow-green: 0 0 12px #69ff69, 0 0 28px rgba(105,255,105,0.4);
  --glow-cyan: 0 0 12px #00ffff, 0 0 28px rgba(0,255,255,0.4);
  --metallic: linear-gradient(135deg, #69ff69 0%, #b4ffb4 30%, #00ffff 60%, #69ff69 100%);
  --metallic-chrome: linear-gradient(180deg, #e8ffe8 0%, #69ff69 40%, #00c8c8 80%, #003c3c 100%);
  --font-head: 'Cormorant Garamond', 'Crimson Pro', Georgia, serif;
  --font-body: 'Crimson Pro', 'Cormorant Garamond', Georgia, serif;
  --radius-card: 28px;
  --radius-btn: 40px;
  --header-h: 64px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ===== 重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--neon-green);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--neon-cyan); text-decoration: none; transition: color var(--transition), text-shadow var(--transition); }
a:hover { color: var(--neon-green); text-shadow: var(--glow-green); }
ul, menu { list-style: none; }
dl, dt, dd { margin: 0; padding: 0; }

/* ===== 全局工具 ===== */
.site-wrap { display: flex; flex-direction: column; min-height: 100vh; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--dark) 0%, #0d1f0d 100%);
  border-bottom: 1.5px solid var(--neon-green);
  box-shadow: 0 2px 24px rgba(105,255,105,0.12);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

/* details/summary nav */
.nav-details {
  width: 100%;
  position: relative;
}
.nav-details[open] > .nav-overlay { display: flex; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-h);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.nav-toggle::-webkit-details-marker { display: none; }

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.brand-mark { width: 36px; height: 36px; object-fit: contain; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--neon-green);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  box-shadow: var(--glow-green);
}
.nav-details[open] .hamburger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-details[open] .hamburger-icon span:nth-child(2) { opacity: 0; }
.nav-details[open] .hamburger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* full-screen overlay menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,10,0.97);
  z-index: 199;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding-top: var(--header-h);
}
.nav-overlay-inner { width: 100%; max-width: 480px; padding: 32px 24px; }
.nav-menu { display: flex; flex-direction: column; gap: 0; }
.nav-menu li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neon-green);
  border-bottom: 1px solid rgba(105,255,105,0.15);
  letter-spacing: 0.04em;
  transition: color var(--transition), padding-left var(--transition), text-shadow var(--transition);
  min-height: 48px;
}
.nav-menu li a:hover { color: var(--neon-cyan); padding-left: 12px; text-shadow: var(--glow-cyan); }

/* top nav bar (desktop helper) */
.nav-bar {
  display: none;
}

/* ===== PAGE OFFSET FOR FIXED HEADER ===== */
.hero, .page-hero { margin-top: var(--header-h); }

/* ===== HERO (HOME) ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,38,23,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,20,20,0.4) 100%);
}
/* fallback bg when no image */
.hero-media:not(:has(.hero-img)) {
  background: linear-gradient(135deg, #172617 0%, #0d2e1a 40%, #003030 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 48px 40px 56px;
  max-width: 640px;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(105,255,105,0.5));
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--chrome-light);
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 56px 24px 40px;
  background: linear-gradient(135deg, #172617 0%, #0a1f0a 60%, #001818 100%);
  border-bottom: 1.5px solid rgba(105,255,105,0.2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
.page-hero .eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 10px;
  font-weight: 500;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--chrome-mid);
  max-width: 600px;
  line-height: 1.65;
}
.meta-date {
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(105,255,105,0.6);
  letter-spacing: 0.04em;
}
.meta-date time { color: var(--neon-cyan); }

/* variant tints */
.page-hero--ranking { border-bottom-color: rgba(0,255,255,0.25); }
.page-hero--compare::before { background: radial-gradient(ellipse at 20% 50%, rgba(105,255,105,0.07) 0%, transparent 70%); }
.page-hero--faq { background: linear-gradient(135deg, #0d1a0d 0%, #001818 100%); }
.page-hero--about { background: linear-gradient(160deg, #172617 0%, #0a2020 100%); }
.page-hero--privacy { padding-bottom: 32px; }

/* ===== CONTENT LAYOUT ===== */
.content-layout {
  flex: 1;
  display: flex;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px 60px;
  align-items: flex-start;
}

/* ===== ASIDE / SIDEBAR (left) ===== */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  order: -1;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-green) transparent;
  margin-right: 40px;
}
.sidebar-inner {
  background: linear-gradient(160deg, rgba(23,38,23,0.9) 0%, rgba(0,30,20,0.7) 100%);
  border: 1px solid rgba(105,255,105,0.2);
  border-radius: var(--radius-card);
  padding: 24px 20px;
}
.sidebar-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 12px;
  font-weight: 600;
}
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links li a {
  display: block;
  padding: 8px 10px;
  font-size: 0.92rem;
  color: rgba(105,255,105,0.8);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  min-height: 36px;
  line-height: 1.4;
}
.sidebar-links li a:hover {
  background: rgba(105,255,105,0.1);
  color: var(--neon-green);
  text-shadow: var(--glow-green);
}
.sidebar-divider { height: 1px; background: rgba(105,255,105,0.12); margin: 16px 0; }

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  min-width: 0;
}

/* ===== ARTICLE / SECTION ===== */
.page-article { display: flex; flex-direction: column; gap: 48px; }
.page-content-section {
  background: linear-gradient(160deg, rgba(23,38,23,0.6) 0%, rgba(0,20,15,0.4) 100%);
  border: 1px solid rgba(105,255,105,0.12);
  border-radius: var(--radius-card);
  padding: 36px 36px 40px;
}

/* Prose styles inside content */
.page-content-section h1,
.page-content-section h2,
.page-content-section h3,
.page-content-section h4 {
  font-family: var(--font-head);
  color: var(--neon-green);
  margin-bottom: 12px;
  margin-top: 32px;
  line-height: 1.25;
}
.page-content-section h2 { font-size: 1.55rem; border-bottom: 1px solid rgba(105,255,105,0.15); padding-bottom: 8px; }
.page-content-section h3 { font-size: 1.2rem; color: var(--neon-cyan); }
.page-content-section p { margin-bottom: 18px; color: var(--chrome-light); font-size: 1rem; }
.page-content-section ul, .page-content-section ol { padding-left: 22px; margin-bottom: 18px; color: var(--chrome-light); }
.page-content-section li { margin-bottom: 6px; }
.page-content-section a { color: var(--neon-cyan); border-bottom: 1px solid rgba(0,255,255,0.3); }
.page-content-section a:hover { color: var(--neon-green); border-bottom-color: var(--neon-green); }
.page-content-section table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.95rem; }
.page-content-section th {
  background: rgba(105,255,105,0.1);
  color: var(--neon-green);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1.5px solid var(--neon-green);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}
.page-content-section td { padding: 9px 14px; border-bottom: 1px solid rgba(105,255,105,0.1); color: var(--chrome-light); }
.page-content-section tr:hover td { background: rgba(105,255,105,0.04); }
.page-content-section blockquote {
  border-left: 3px solid var(--neon-cyan);
  padding: 12px 20px;
  margin: 20px 0;
  color: var(--chrome-mid);
  font-style: italic;
  background: rgba(0,255,255,0.04);
  border-radius: 0 12px 12px 0;
}
.page-content-section time { color: var(--neon-cyan); font-size: 0.9em; }

/* h2 + p.subtitle pattern */
h2 + p.subtitle,
h2 + p.subhead,
h2 + p.desc,
h2 + p.lead {
  color: var(--chrome-mid);
  font-size: 1rem;
  margin-top: -6px;
  margin-bottom: 20px;
  line-height: 1.55;
}
.sidebar-title + p.subtitle { font-size: 0.85rem; color: rgba(105,255,105,0.6); }

/* ===== CARD LIST (dl > dt > a + dd) ===== */
.card-list { display: flex; flex-direction: column; gap: 12px; }
.card-list dt {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
}
.card-list dt a {
  color: var(--neon-green);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), text-shadow var(--transition);
  padding-bottom: 2px;
}
.card-list dt a:hover {
  color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}
.card-list dd {
  color: rgba(105,255,105,0.65);
  font-size: 0.92rem;
  padding-left: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(105,255,105,0.1);
  line-height: 1.55;
}
.card-list > dt:last-of-type + dd { border-bottom: none; }

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.card {
  background: linear-gradient(160deg, rgba(23,38,23,0.9) 0%, rgba(0,25,20,0.7) 100%);
  border: 1px solid rgba(105,255,105,0.15);
  border-bottom: 3px solid var(--neon-green);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(105,255,105,0.18);
  border-bottom-color: var(--neon-cyan);
  border-color: rgba(0,255,255,0.3);
}
.card-body { padding: 22px 24px 20px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 8px; }
.card-body h3 a { color: var(--neon-green); }
.card-body h3 a:hover { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
.card-body p { font-size: 0.9rem; color: rgba(105,255,105,0.65); line-height: 1.5; margin: 0; }

/* ===== HOME SECTIONS ===== */
.home-extra { display: flex; flex-direction: column; gap: 48px; }
.home-ranking, .home-reviews {
  background: linear-gradient(160deg, rgba(23,38,23,0.5) 0%, rgba(0,20,15,0.3) 100%);
  border: 1px solid rgba(105,255,105,0.1);
  border-radius: var(--radius-card);
  padding: 32px;
}
.home-ranking h2, .home-reviews h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--neon-green);
  margin-bottom: 6px;
}

/* ===== COMPARE CTA ROW ===== */
.compare-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.compare-nav-hint, .faq-more {
  background: rgba(0,255,255,0.04);
  border: 1px solid rgba(0,255,255,0.15);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.compare-nav-hint h2, .faq-more h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--neon-cyan);
  margin-bottom: 6px;
}

/* ===== REVIEW HERO IMAGE ===== */
.review-hero-media {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
  margin-top: var(--header-h);
}
.review-hero-img { width: 100%; height: 340px; object-fit: cover; object-position: center top; }
.review-hero-media + .page-hero { margin-top: 0; }

/* ===== REVIEW RELATED ===== */
.review-related {
  background: rgba(23,38,23,0.5);
  border: 1px solid rgba(105,255,105,0.1);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.review-related h2 { font-family: var(--font-head); font-size: 1.3rem; color: var(--neon-green); margin-bottom: 6px; }

/* ===== CHILD PAGES ===== */
.child-pages {
  background: rgba(0,255,255,0.03);
  border: 1px solid rgba(0,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.child-pages h2 { font-family: var(--font-head); font-size: 1.3rem; color: var(--neon-cyan); margin-bottom: 6px; }

/* ===== ABOUT / PRIVACY LINKS ===== */
.about-links, .privacy-note {
  background: rgba(105,255,105,0.03);
  border: 1px solid rgba(105,255,105,0.1);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.about-links h2, .privacy-note h2 { font-family: var(--font-head); font-size: 1.3rem; color: var(--neon-green); margin-bottom: 6px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, #69ff69 0%, #00ffff 100%);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), filter var(--transition);
  text-shadow: none;
  -webkit-text-fill-color: var(--dark);
  min-height: 48px;
  line-height: 1.3;
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(105,255,105,0.6), 0 0 48px rgba(0,255,255,0.3);
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: var(--dark);
  text-shadow: none;
  -webkit-text-fill-color: var(--dark);
}

.btn-outline {
  display: inline-block;
  padding: 11px 28px;
  background: transparent;
  color: var(--neon-cyan);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--neon-cyan);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  min-height: 48px;
  line-height: 1.3;
}
.btn-outline:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: var(--glow-cyan);
  color: var(--neon-green);
  border-color: var(--neon-green);
  text-shadow: var(--glow-green);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #0d1a0d 0%, #061006 100%);
  border-top: 1.5px solid rgba(105,255,105,0.2);
  margin-top: auto;
}

.footer-cta {
  text-align: center;
  padding: 56px 24px 48px;
  border-bottom: 1px solid rgba(105,255,105,0.1);
  background: radial-gradient(ellipse at 50% 0%, rgba(105,255,105,0.06) 0%, transparent 70%);
}
.footer-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--neon-green);
  text-shadow: var(--glow-green);
  margin-bottom: 10px;
}
.footer-cta p.subtitle { color: var(--chrome-mid); margin-bottom: 24px; font-size: 1rem; }

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 32px 36px;
}
.footer-brand .brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.footer-brand p { color: rgba(105,255,105,0.55); font-size: 0.92rem; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 4px; }
.footer-links li a {
  font-size: 0.9rem;
  color: rgba(105,255,105,0.65);
  padding: 5px 0;
  min-height: 32px;
  display: block;
  transition: color var(--transition), text-shadow var(--transition);
}
.footer-links li a:hover { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
.footer-legal { border-top: 1px solid rgba(105,255,105,0.08); padding-top: 14px; }
.footer-legal li a { color: rgba(105,255,105,0.4); font-size: 0.82rem; }

.footer-bottom {
  text-align: center;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(105,255,105,0.08);
}
.copyright { color: rgba(105,255,105,0.35); font-size: 0.82rem; letter-spacing: 0.03em; }

/* ===== SPARKLE DECORATIONS ===== */
.footer-cta::before {
  content: '✦';
  display: block;
  font-size: 1.2rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 16px;
  opacity: 0.7;
}

/* ===== EYEBROW ===== */
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  font-weight: 600;
}

/* ===== PARALLAX / GLOW ANIMATION ===== */
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 8px #69ff69, 0 0 20px rgba(105,255,105,0.3); }
  50% { text-shadow: 0 0 18px #69ff69, 0 0 40px rgba(105,255,105,0.6), 0 0 60px rgba(0,255,255,0.2); }
}
.hero-h1 { animation: glow-pulse 3s ease-in-out infinite; }

@keyframes cyan-glow-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 20px #00ffff, 0 0 40px rgba(0,255,255,0.5); }
}
.page-hero .eyebrow { animation: cyan-glow-pulse 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero-h1 { animation: none; }
  .page-hero .eyebrow { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(105,255,105,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sidebar { width: 200px; margin-right: 28px; }
  .content-layout { padding: 28px 16px 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .content-layout { flex-direction: column; padding: 20px 14px 40px; }
  .sidebar {
    width: 100%;
    order: 0;
    position: static;
    max-height: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .sidebar-inner { border-radius: 16px; padding: 18px 16px; }
  .page-content-section { padding: 22px 18px 26px; border-radius: 18px; }
  .hero { height: 70vh; min-height: 360px; }
  .hero-content { padding: 32px 20px 40px; max-width: 100%; }
  .hero-h1 { font-size: 1.7rem; }
  .hero-desc { font-size: 1rem; }
  .home-ranking, .home-reviews { padding: 22px 18px; border-radius: 18px; }
  .card-grid { grid-template-columns: 1fr; }
  .card { border-radius: 18px; }
  .review-hero-img { height: 220px; }
  .review-related, .child-pages, .compare-nav-hint, .faq-more,
  .about-links, .privacy-note { padding: 20px 18px; border-radius: 18px; }
  .footer-main { padding: 28px 16px; }
  .footer-cta { padding: 40px 16px 36px; }
  .nav-menu li a { font-size: 1.1rem; }
  .brand-name { font-size: 1.2rem; }
  .page-hero { padding: 40px 16px 28px; }
  .page-hero h1 { font-size: 1.5rem; }
  .compare-cta-row { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
}

@media (max-width: 375px) {
  body { font-size: 16px; }
  .hero-h1 { font-size: 1.45rem; }
  .page-hero h1 { font-size: 1.3rem; }
  .hero-content { padding: 24px 14px 32px; }
}
