@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@300;400;500;700&display=swap');

/* ===== 变量与重置 ===== */
:root {
  --c-primary: #56228b;
  --c-secondary: #8b4513;
  --c-dark: #1f1726;
  --c-dark2: #2a1f35;
  --c-dark3: #342640;
  --c-primary-light: #7a3db8;
  --c-primary-dim: #3d1866;
  --c-secondary-light: #a85520;
  --c-accent: #c47a3a;
  --c-text: #e8dff4;
  --c-text-muted: #b09ecf;
  --c-text-dim: #7a6b99;
  --c-border: rgba(86,34,139,0.35);
  --c-card-bg: rgba(42,31,53,0.85);
  --c-card-hover: rgba(52,38,64,0.95);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.32), 0 1px 6px rgba(86,34,139,0.18);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(86,34,139,0.22);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.5), 0 4px 16px rgba(86,34,139,0.32);
  --font-main: 'Noto Naskh Arabic', 'Noto Sans Arabic', 'PingFang SC', 'Microsoft YaHei', serif;
  --font-sans: 'Noto Sans Arabic', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-w: 1200px;
  --nav-h: 68px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-dark);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--c-dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent); }
ul { list-style: none; }

/* ===== 有机纹理背景 ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(86,34,139,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 80%, rgba(139,69,19,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(31,23,38,0) 0%, rgba(31,23,38,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ===== 侧边导航 aside ===== */
.site-nav-aside {
  position: fixed;
  left: -280px;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--c-dark2);
  border-right: 1px solid var(--c-border);
  z-index: 200;
  transition: left var(--transition);
  overflow-y: auto;
  padding: 80px 0 40px;
}

.site-nav-aside nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 16px;
}

.site-nav-aside nav ul li a {
  display: block;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.site-nav-aside nav ul li a:hover,
.site-nav-aside nav ul li a[aria-current="page"] {
  background: rgba(86,34,139,0.28);
  color: var(--c-text);
}

/* ===== 页面包裹器 ===== */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== 顶部 Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(31,23,38,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-center {
  display: flex;
  align-items: center;
}

.brand-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-link:hover { color: var(--c-primary-light); }

.header-nav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(86,34,139,0.22);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 40px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.pill-btn:hover {
  background: rgba(86,34,139,0.45);
  color: var(--c-text);
  border-color: var(--c-primary);
}

/* ===== 粘性二级锚点条 ===== */
.sub-sticky-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(42,31,53,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-sticky-bar::-webkit-scrollbar { display: none; }

.sub-sticky-bar nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  align-items: center;
  height: 48px;
}

.sub-sticky-bar nav a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  min-height: 40px;
  transition: background var(--transition), color var(--transition);
}

.sub-sticky-bar nav a:hover,
.sub-sticky-bar nav a.active {
  background: rgba(86,34,139,0.35);
  color: var(--c-text);
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark2) 50%, var(--c-primary-dim) 100%);
}

.hero-slash {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(150deg, transparent 30%, rgba(86,34,139,0.15) 60%, rgba(139,69,19,0.1) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 560px;
}

.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  min-height: 52px;
  box-shadow: 0 4px 20px rgba(86,34,139,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(86,34,139,0.55);
}

.hero-media {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.hero-blob-placeholder {
  width: 340px;
  height: 340px;
  opacity: 0.7;
}

.hero-blob-placeholder svg {
  width: 100%;
  height: 100%;
}

/* ===== 通用 Section 布局 ===== */
.home-section,
.ranking-hero-section,
.ranking-content-section,
.ranking-children-section,
.review-top-section,
.review-body-section,
.compare-header-section,
.compare-body-section,
.faq-intro-section,
.faq-body-section,
.about-hero-section,
.about-body-section,
.privacy-header-section,
.privacy-body-section,
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

/* ===== 首页区块 ===== */
.home-main {
  flex: 1;
}

.rankings-section {
  background: rgba(42,31,53,0.4);
  border-radius: var(--radius-xl);
  margin: 40px auto;
}

.reviews-section {
  margin: 0 auto;
}

.section-aside {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.section-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(86,34,139,0.3);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.9rem;
  min-height: 44px;
  align-self: flex-start;
  transition: all var(--transition);
}

.section-more-btn:hover {
  background: rgba(86,34,139,0.5);
  color: var(--c-text);
}

.section-figure {
  flex: 1;
}

/* ===== 排行卡片 ===== */
.rank-list,
.review-list,
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-card,
.review-card,
.compare-card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.rank-card:hover,
.review-card:hover,
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: var(--c-card-hover);
}

.rank-badge {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-light);
  opacity: 0.6;
  line-height: 1;
  min-width: 48px;
  font-variant-numeric: tabular-nums;
}

.rank-card-body h3,
.review-card-body h3,
.compare-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.rank-card-body h3 a,
.review-card-body h3 a,
.compare-card h3 a {
  color: var(--c-text);
}

.rank-card-body h3 a:hover,
.review-card-body h3 a:hover,
.compare-card h3 a:hover {
  color: var(--c-accent);
}

.rank-card-body p,
.review-card-body p,
.compare-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.review-card { flex-direction: column; }
.review-card-body { width: 100%; }

.compare-card { flex-direction: column; }

/* ===== 子页列表 ===== */
.child-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.child-card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  padding: 22px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.child-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.child-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-secondary-light);
  opacity: 0.55;
  line-height: 1;
  min-width: 44px;
}

.child-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.child-card h3 a { color: var(--c-text); }
.child-card h3 a:hover { color: var(--c-accent); }
.child-card p { font-size: 0.88rem; color: var(--c-text-muted); }
.child-card time { font-size: 0.82rem; color: var(--c-text-dim); display: block; margin-top: 6px; }

/* ===== Aside（右侧）===== */
.right-aside,
.ranking-extra-aside,
.review-right-aside,
.compare-right-aside,
.faq-right-aside,
.about-right-aside,
.privacy-right-aside {
  flex: 0 0 240px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.aside-inner,
.ranking-extra-aside,
.review-meta-aside,
.compare-nav-aside,
.faq-nav-aside,
.about-quick-aside,
.privacy-nav-aside,
.content-page-aside .aside-inner {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
}

.ranking-side-aside,
.ranking-extra-aside,
.review-meta-aside,
.review-right-aside,
.compare-nav-aside,
.compare-right-aside,
.faq-nav-aside,
.faq-right-aside,
.about-quick-aside,
.about-right-aside,
.privacy-nav-aside,
.privacy-right-aside {
  flex: 0 0 240px;
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: calc(var(--nav-h) + 60px);
  align-self: flex-start;
}

.aside-eyebrow,
.aside-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.aside-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 14px;
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aside-links li a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--c-text-muted);
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}

.aside-links li a:hover {
  background: rgba(86,34,139,0.25);
  color: var(--c-text);
}

.aside-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(86,34,139,0.25);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.88rem;
  min-height: 40px;
  transition: all var(--transition);
}

.aside-cta:hover {
  background: rgba(86,34,139,0.45);
  color: var(--c-text);
}

.aside-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 14px 0;
}

.aside-desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ===== eyebrow / small 眉题 ===== */
.eyebrow,
small.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

/* ===== 页面标题区 ===== */
.page-h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 14px;
}

.page-lead {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 620px;
}

.page-date {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--c-accent);
  margin-bottom: 12px;
  margin-right: 12px;
}

.page-date-mod {
  font-size: 0.82rem;
  color: var(--c-text-dim);
}

/* ===== 正文 prose ===== */
.prose {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 720px;
}

.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 2em 0 0.7em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--c-border);
}

.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 1.5em 0 0.5em;
}

.prose p { margin-bottom: 1.2em; }

.prose ul, .prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li { margin-bottom: 0.4em; }

.prose a {
  color: var(--c-primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover { color: var(--c-accent); }

.prose blockquote {
  border-left: 3px solid var(--c-primary);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: rgba(86,34,139,0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.92rem;
}

.prose th, .prose td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}

.prose th {
  background: rgba(86,34,139,0.2);
  color: var(--c-text);
  font-weight: 600;
}

.prose td { color: var(--c-text-muted); }

/* ===== 专用页布局 ===== */

/* ranking */
.ranking-main { flex: 1; }

.ranking-hero-section { padding-top: 48px; }

.ranking-hero-figure {
  flex: 1;
}

.ranking-content-section,
.ranking-children-section {
  flex-direction: column;
}

.ranking-content-section {
  flex-direction: row;
}

.ranking-content-figure,
.ranking-children-section .children-figure {
  flex: 1;
}

.children-label-aside {
  flex: 0 0 200px;
}

/* review */
.review-main { flex: 1; }

.review-top-section { align-items: flex-start; }

.review-hero-figure {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}

.review-hero-text {}

.review-body-section { align-items: flex-start; }

.review-content-figure { flex: 1; }

/* compare */
.compare-main { flex: 1; }
.compare-header-section { align-items: flex-start; }
.compare-header-figure { flex: 1; }
.compare-body-section { align-items: flex-start; }
.compare-content-figure { flex: 1; }

/* faq */
.faq-main { flex: 1; }
.faq-intro-section { align-items: flex-start; }
.faq-intro-figure { flex: 1; }
.faq-body-section { align-items: flex-start; }
.faq-content-figure { flex: 1; }

.faq-prose details {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--c-card-bg);
}

.faq-prose summary {
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-prose summary::-webkit-details-marker { display: none; }

/* about */
.about-main { flex: 1; }
.about-hero-section { align-items: flex-start; }
.about-brand-figure {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}
.about-body-section { align-items: flex-start; }
.about-content-figure { flex: 1; }

/* privacy */
.privacy-main { flex: 1; }
.privacy-header-section { align-items: flex-start; }
.privacy-header-figure { flex: 1; }
.privacy-body-section { align-items: flex-start; }
.privacy-content-figure { flex: 1; }

/* default layout */
.default-main { flex: 1; }
.content-section { align-items: flex-start; }
.content-figure { flex: 1; }
.content-body { max-width: 720px; }

/* ===== 首页 content-page-aside ===== */
.content-page-aside {
  flex: 0 0 240px;
  position: sticky;
  top: calc(var(--nav-h) + 60px);
  align-self: flex-start;
}

/* ===== 页脚 ===== */
.site-footer {
  margin-top: auto;
  background: var(--c-dark2);
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: row;
  gap: 0;
}

.site-footer > section {
  padding: 48px 36px;
}

.footer-brand {
  flex: 0 0 340px;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-big {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-primary-light);
  line-height: 1.2;
  opacity: 0.85;
  word-break: break-all;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: 24px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
}

.footer-links ul li a:hover { color: var(--c-text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--c-text-dim);
}

.footer-privacy {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-privacy:hover { color: var(--c-text); }

/* ===== 动效：Stagger + Scroll Reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--i, 0) * 0.09s);
  }

  .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-h1 {
    animation: fadeUp 0.7s ease 0.1s both;
  }

  .hero-lead {
    animation: fadeUp 0.7s ease 0.25s both;
  }

  .hero-cta {
    animation: fadeUp 0.7s ease 0.4s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== 断点：移动端 ===== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .header-nav-pills { display: none; }

  .brand-link { font-size: 1rem; }

  .hero-content {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
    min-height: auto;
  }

  .hero-section { min-height: auto; }
  .hero-media { display: none; }
  .hero-text { max-width: 100%; }

  .home-section,
  .ranking-hero-section,
  .ranking-content-section,
  .review-top-section,
  .review-body-section,
  .compare-header-section,
  .compare-body-section,
  .faq-intro-section,
  .faq-body-section,
  .about-hero-section,
  .about-body-section,
  .privacy-header-section,
  .privacy-body-section,
  .content-section {
    flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }

  .right-aside,
  .ranking-side-aside,
  .ranking-extra-aside,
  .review-meta-aside,
  .review-right-aside,
  .compare-nav-aside,
  .compare-right-aside,
  .faq-nav-aside,
  .faq-right-aside,
  .about-quick-aside,
  .about-right-aside,
  .privacy-nav-aside,
  .privacy-right-aside,
  .content-page-aside,
  .section-aside {
    flex: none;
    width: 100%;
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-brand {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 32px 20px;
  }

  .footer-links {
    padding: 24px 20px;
  }

  .footer-brand-big { font-size: 1.6rem; }

  .rank-card, .child-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .ranking-children-section {
    flex-direction: column;
  }

  .sub-sticky-bar nav {
    padding: 0 12px;
  }

  .aside-links li a {
    min-height: 44px;
  }

  .pill-btn, .section-more-btn, .aside-cta {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  html { font-size: 16px; }

  .hero-h1 { font-size: 1.5rem; }

  .page-h1 { font-size: 1.4rem; }

  .rankings-section, .reviews-section {
    border-radius: var(--radius-lg);
  }

  .footer-links ul { flex-direction: column; }
}
