/* 91PORNAPP官方下载平台样式 - 91-porny.xyz */
:root {
  --primary: #ff6600;
  --primary-dark: #e55a00;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border: #2a2a2a;
  --gradient: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --radius: 12px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-link:hover { text-decoration: none; }
.logo-img { width: 48px; height: 48px; border-radius: 10px; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.logo-text span { color: var(--primary); }

.nav-main { display: flex; gap: 8px; align-items: center; }
.nav-main a {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--text-primary);
  background: var(--bg-card);
  text-decoration: none;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(255,102,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,102,0,0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.page-header {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 { font-size: 2rem; margin-bottom: 8px; }
.page-header .breadcrumb { color: var(--text-muted); font-size: 0.9rem; }
.page-header .breadcrumb a { color: var(--text-secondary); }

.page-body { padding: 48px 0 80px; }

.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--primary); }
.legal-content p, .legal-content li { color: var(--text-secondary); margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin-left: 24px; margin-bottom: 16px; }

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.8;
}

.error-page h1 { font-size: 1.8rem; margin: 16px 0; }
.error-page p { color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; }

.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }

.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; overflow-x: hidden; }
  body { overflow-x: hidden; max-width: 100%; }
  .menu-toggle { display: block; flex-shrink: 0; }
  .header-inner { padding: 10px 16px; gap: 8px; }
  .logo-link { min-width: 0; flex: 1; overflow: hidden; }
  .logo-img { width: 40px; height: 40px; flex-shrink: 0; }
  .logo-text { font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-main.open { display: flex; }
  .nav-main a { width: 100%; text-align: center; padding: 12px; font-size: 0.92rem; }
  .container { padding: 0 16px; width: 100%; max-width: 100%; }
  .footer-brand p { overflow-wrap: break-word; word-break: break-word; }
  .page-header { padding: 32px 0 24px; }
  .page-header h1 { font-size: 1.6rem; }
  .page-body { padding: 32px 0 56px; }
  .legal-content h2 { font-size: 1.15rem; margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 36px 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .error-code { font-size: 5rem; }
}

/* ===== 首页专属排版（v3 Bento + 侧边栏指南）===== */
.page-home { background: #050505; }
.home-main { overflow-x: hidden; }

/* Hero */
.hp-hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,102,0,0.08) 0%, transparent 40%),
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255,102,0,0.14) 0%, transparent 55%),
    #050505;
  pointer-events: none;
}
.hp-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,102,0,0.4), transparent);
}
.hp-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-width: 0;
}
.hp-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 16px;
}
.hp-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hp-hero-copy h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-lead {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 520px;
}
.hp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(255,102,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,102,0,0.45);
  color: #fff !important;
}
.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #333;
  color: var(--text-secondary) !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s;
}
.hp-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}
.hp-kw-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-kw-pills li {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid #222;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Phone fan */
.hp-hero-phones {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-phone {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  background: #111;
}
.hp-phone img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.hp-phone-center {
  width: 220px;
  z-index: 3;
  border-color: rgba(255,102,0,0.35);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 40px rgba(255,102,0,0.1);
}
.hp-phone-left {
  width: 140px;
  left: 5%;
  transform: rotate(-12deg) translateY(20px);
  z-index: 1;
  opacity: 0.75;
}
.hp-phone-right {
  width: 140px;
  right: 5%;
  transform: rotate(12deg) translateY(20px);
  z-index: 2;
  opacity: 0.85;
}

/* Trust strip */
.hp-trust {
  padding: 0;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
}
.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.hp-trust-item:last-child { border-right: none; }
.hp-trust-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.hp-trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.hp-trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section headers */
.hp-section-head { margin-bottom: 40px; }
.hp-section-head-center { text-align: center; }
.hp-section-head-center p { margin: 0 auto; }
.hp-section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 10px;
}
.hp-section-head h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
}
.hp-section-head p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 580px;
}

/* Bento grid */
.hp-bento {
  padding: 80px 0;
  background: #070707;
}
.hp-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hp-bento-card {
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.hp-bento-card:hover {
  border-color: rgba(255,102,0,0.35);
  transform: translateY(-3px);
}
.hp-bento-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}
.hp-bento-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a;
}
.hp-bento-wide .hp-bento-visual { aspect-ratio: auto; min-height: 200px; }
.hp-bento-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hp-bento-text { padding: 20px 22px; }
.hp-bento-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.12em;
}
.hp-bento-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 6px 0 8px;
}
.hp-bento-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Showcase carousel */
.hp-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hp-showcase-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 20px 16px;
  max-width: 100%;
}
.hp-showcase-track::-webkit-scrollbar { display: none; }
.hp-showcase-slide {
  flex: 0 0 150px;
  margin: 0;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #222;
  background: #111;
  transition: transform 0.2s, border-color 0.2s;
}
.hp-showcase-slide:hover {
  transform: scale(1.04);
  border-color: rgba(255,102,0,0.4);
}
.hp-showcase-slide img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.hp-showcase-slide figcaption {
  padding: 8px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid #1a1a1a;
}

/* Download timeline */
.hp-download {
  padding: 80px 0;
  background: #070707;
}
.hp-timeline {
  max-width: 720px;
  margin: 0 auto 36px;
  position: relative;
}
.hp-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(255,102,0,0.1));
}
.hp-timeline-step {
  display: flex;
  gap: 24px;
  padding: 0 0 32px;
  position: relative;
}
.hp-timeline-step:last-child { padding-bottom: 0; }
.hp-timeline-dot {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,102,0,0.3);
  z-index: 1;
}
.hp-timeline-body {
  flex: 1;
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.hp-timeline-step:hover .hp-timeline-body {
  border-color: rgba(255,102,0,0.3);
}
.hp-timeline-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hp-timeline-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.hp-kw-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hp-kw-row li {
  font-size: 0.76rem;
  color: var(--text-muted);
  border: 1px dashed #2a2a2a;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Guide layout */
.hp-guide {
  padding: 80px 0;
  background: #050505;
  border-top: 1px solid var(--border);
}
.hp-guide-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  min-width: 0;
}
.hp-guide-sidebar {
  position: sticky;
  top: 120px;
  min-width: 0;
}
.hp-guide-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hp-guide-toc a {
  font-size: 0.82rem;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  padding: 8px 14px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.hp-guide-toc a:hover {
  color: var(--primary) !important;
  background: rgba(255,102,0,0.06);
  border-left-color: var(--primary);
}
.hp-guide-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 8px 16px 8px 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hp-article {
  padding: 32px 0;
  border-bottom: 1px solid #161616;
  min-width: 0;
}
.hp-article:last-child { border-bottom: none; }
.hp-article-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.hp-article-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.65;
  flex-shrink: 0;
}
.hp-article-head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hp-article p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 12px;
  text-align: justify;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hp-article p:last-child { margin-bottom: 0; }
.hp-article-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  min-width: 0;
}
.hp-article-row > div { min-width: 0; }
.hp-article-row-reverse { grid-template-columns: auto 1fr; }
.hp-article-fig {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.hp-article-fig img {
  width: 130px;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.hp-callout {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255,102,0,0.06);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 10px;
}
.hp-callout p { margin: 0; font-size: 0.9rem; }

/* FAQ grid */
.hp-faq {
  padding: 80px 0;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
}
.hp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hp-faq-item {
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.hp-faq-item[open] { border-color: rgba(255,102,0,0.3); }
.hp-faq-item summary {
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 10px;
}
.hp-faq-item[open] summary::after { content: '−'; }
.hp-faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.hp-cta {
  padding: 64px 0 80px;
  background: #050505;
}
.hp-cta-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,102,0,0.25);
  background:
    linear-gradient(135deg, rgba(255,102,0,0.12) 0%, rgba(255,102,0,0.02) 60%),
    #0a0a0a;
  box-shadow: 0 0 60px rgba(255,102,0,0.08);
}
.hp-cta-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.hp-cta-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.hp-cta-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-trust-item:nth-child(2) { border-right: none; }
  .hp-trust-item:nth-child(1),
  .hp-trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hp-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-bento-wide { grid-column: span 2; }
  .hp-guide-layout { grid-template-columns: 1fr; }
  .hp-guide-sidebar {
    position: static;
    margin-bottom: 8px;
  }
  .hp-guide-toc {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .hp-guide-toc::-webkit-scrollbar { display: none; }
  .hp-guide-toc a {
    flex-shrink: 0;
    white-space: nowrap;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
  }
  .hp-guide-toc a:hover { border-left-color: transparent; border-bottom-color: var(--primary); }
}

@media (max-width: 768px) {
  .hp-hero { padding: 40px 0 48px; }
  .hp-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hp-hero-phones { order: -1; height: 320px; }
  .hp-phone-center { width: 170px; }
  .hp-phone-left, .hp-phone-right { width: 110px; }
  .hp-hero-copy h1 { font-size: 1.85rem; }
  .hp-lead { font-size: 0.9rem; max-width: 100%; }

  .hp-bento,
  .hp-showcase,
  .hp-download,
  .hp-guide,
  .hp-faq { padding: 52px 0; }

  .hp-section-head h2 { font-size: 1.4rem; }
  .hp-bento-grid { grid-template-columns: 1fr; }
  .hp-bento-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .hp-faq-grid { grid-template-columns: 1fr; }

  .hp-article { padding: 24px 0; }
  .hp-article-head { flex-direction: column; gap: 4px; }
  .hp-article-head h3 { font-size: 1.05rem; }
  .hp-article p { font-size: 0.88rem; text-align: left; }
  .hp-guide-content { padding: 0 4px; }
  .hp-article-row,
  .hp-article-row-reverse { grid-template-columns: 1fr; gap: 16px; }
  .hp-article-fig { justify-self: center; }
  .hp-article-fig img { width: 110px; }

  .hp-cta-card { padding: 36px 20px; }
  .hp-cta-title { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hp-hero-phones { height: 260px; }
  .hp-phone-center { width: 140px; }
  .hp-phone-left, .hp-phone-right { display: none; }
  .hp-trust-grid { grid-template-columns: 1fr; }
  .hp-trust-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .hp-trust-item:last-child { border-bottom: none; }
  .hp-showcase-slide { flex: 0 0 120px; }
  .hp-hero-actions { flex-direction: column; }
  .hp-btn-primary, .hp-btn-outline { justify-content: center; width: 100%; }
}
