/* ============================================
   91 - 原创CSS样式表
   主题：海贼王冒险风格
   配色：海贼红 #E63946 / 深海蓝 #1D3557 / 宝藏金 #F4A261
   前缀：av- (anime video)
   ============================================ */

/* === 基础重置 === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; color: #2B2D42; background: #F1FAEE; line-height: 1.7; overflow-x: hidden; }
a { color: #E63946; text-decoration: none; transition: color 0.3s; }
a:hover { color: #F4A261; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === 容器 === */
.apxyq3w-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === 动画 === */
.apxyq3w-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.apxyq3w-fade.apxyq3w-visible { opacity: 1; transform: translateY(0); }

/* === 头部导航 === */
.apxyq3w-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(29, 53, 87, 0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.apxyq3w-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.apxyq3w-logo-link { display: flex; align-items: center; }
.apxyq3w-logo-img { height: 42px; width: auto; }
.apxyq3w-nav-list { display: flex; gap: 8px; }
.apxyq3w-nav-item { color: #F1FAEE; padding: 8px 16px; border-radius: 6px; font-size: 15px; font-weight: 500; transition: all 0.3s; }
.apxyq3w-nav-item:hover { color: #F4A261; background: rgba(244, 162, 97, 0.15); }
.apxyq3w-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.apxyq3w-mobile-toggle span { display: block; width: 24px; height: 2px; background: #F1FAEE; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* === 搜索栏 === */
.apxyq3w-search-bar { background: rgba(11, 29, 51, 0.9); border-top: 1px solid rgba(244, 162, 97, 0.2); }
.apxyq3w-search-inner { max-width: 1200px; margin: 0 auto; padding: 10px 20px; }
.apxyq3w-search-form { display: flex; max-width: 600px; margin: 0 auto; }
.apxyq3w-search-input { flex: 1; padding: 10px 18px; border: 2px solid rgba(244, 162, 97, 0.3); border-right: none; border-radius: 25px 0 0 25px; background: rgba(255,255,255,0.08); color: #F1FAEE; font-size: 14px; outline: none; transition: border-color 0.3s; }
.apxyq3w-search-input::placeholder { color: rgba(241, 250, 238, 0.5); }
.apxyq3w-search-input:focus { border-color: #F4A261; }
.apxyq3w-search-btn { padding: 10px 20px; background: linear-gradient(135deg, #E63946, #F4A261); border: none; border-radius: 0 25px 25px 0; color: white; cursor: pointer; transition: opacity 0.3s; }
.apxyq3w-search-btn:hover { opacity: 0.85; }

/* === Hero区域 === */
.apxyq3w-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 80px; overflow: hidden; }
.apxyq3w-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.apxyq3w-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,29,51,0.85) 0%, rgba(29,53,87,0.7) 50%, rgba(230,57,70,0.4) 100%); }
.apxyq3w-hero-content { position: relative; z-index: 2; max-width: 800px; }
.apxyq3w-hero-title { font-size: 3.2rem; font-weight: 800; color: #FFFFFF; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.4); line-height: 1.3; }
.apxyq3w-hero-subtitle { font-size: 1.2rem; color: rgba(241, 250, 238, 0.9); margin-bottom: 35px; line-height: 1.8; }
.apxyq3w-hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.apxyq3w-hero-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.apxyq3w-tag { padding: 6px 16px; background: rgba(244, 162, 97, 0.2); border: 1px solid rgba(244, 162, 97, 0.4); border-radius: 20px; color: #F4A261; font-size: 13px; }

/* === 按钮 === */
.apxyq3w-btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: 2px solid transparent; text-align: center; }
.apxyq3w-btn-primary { background: linear-gradient(135deg, #E63946, #c0392b); color: white; box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4); }
.apxyq3w-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5); color: white; }
.apxyq3w-btn-outline { border-color: #F4A261; color: #F4A261; background: transparent; }
.apxyq3w-btn-outline:hover { background: #F4A261; color: #1D3557; }
.apxyq3w-btn-secondary { background: #1D3557; color: #F1FAEE; padding: 12px 28px; }
.apxyq3w-btn-secondary:hover { background: #E63946; color: white; }
.apxyq3w-btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 6px; background: #E63946; color: white; }
.apxyq3w-btn-sm:hover { background: #c0392b; color: white; }
.apxyq3w-btn-ghost { background: transparent; border: 1px solid #1D3557; color: #1D3557; }
.apxyq3w-btn-ghost:hover { background: #1D3557; color: white; }

/* === 数据统计 === */
.apxyq3w-stats { background: linear-gradient(135deg, #1D3557, #0B1D33); padding: 50px 0; }
.apxyq3w-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.apxyq3w-stat-item { padding: 20px; }
.apxyq3w-stat-num { display: block; font-size: 2.8rem; font-weight: 800; color: #F4A261; margin-bottom: 8px; }
.apxyq3w-stat-label { color: rgba(241, 250, 238, 0.8); font-size: 14px; }

/* === 通用区块 === */
.apxyq3w-section { padding: 80px 0; }
.apxyq3w-section:nth-child(even) { background: #FFFFFF; }
.apxyq3w-section-header { text-align: center; margin-bottom: 50px; }
.apxyq3w-section-title { font-size: 2.2rem; font-weight: 700; color: #1D3557; margin-bottom: 15px; position: relative; display: inline-block; }
.apxyq3w-section-title::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: linear-gradient(90deg, #E63946, #F4A261); border-radius: 2px; }
.apxyq3w-section-desc { color: #666; font-size: 16px; max-width: 700px; margin: 20px auto 0; }
.apxyq3w-section-more { text-align: center; margin-top: 40px; }

/* === 视频卡片 === */
.apxyq3w-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.apxyq3w-video-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.4s; }
.apxyq3w-video-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(230, 57, 70, 0.15); }
.apxyq3w-video-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.apxyq3w-video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.apxyq3w-video-card:hover .apxyq3w-video-thumb img { transform: scale(1.08); }
.apxyq3w-play-overlay { position: absolute; inset: 0; background: rgba(11, 29, 51, 0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
.apxyq3w-video-card:hover .apxyq3w-play-overlay { opacity: 1; }
.apxyq3w-play-btn { width: 64px; height: 64px; background: rgba(230, 57, 70, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.apxyq3w-play-btn:hover { transform: scale(1.1); }
.apxyq3w-video-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.75); color: white; padding: 2px 8px; border-radius: 4px; font-size: 12px; }
.apxyq3w-video-info { padding: 16px; }
.apxyq3w-video-title { font-size: 15px; font-weight: 600; color: #1D3557; margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.apxyq3w-video-meta { display: flex; gap: 12px; font-size: 12px; color: #999; flex-wrap: wrap; }

/* === 影视传媒 === */
.apxyq3w-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.apxyq3w-media-card { background: white; padding: 35px 25px; border-radius: 12px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s; border: 1px solid rgba(230, 57, 70, 0.08); }
.apxyq3w-media-card:hover { transform: translateY(-5px); border-color: #E63946; box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12); }
.apxyq3w-media-icon { font-size: 3rem; margin-bottom: 18px; }
.apxyq3w-media-title { font-size: 18px; font-weight: 600; color: #1D3557; margin-bottom: 12px; }
.apxyq3w-media-desc { color: #666; font-size: 14px; line-height: 1.7; }

/* === 娱乐专区 === */
.apxyq3w-entertainment-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.apxyq3w-ent-card { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.apxyq3w-ent-large { grid-row: span 2; }
.apxyq3w-ent-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.apxyq3w-ent-card:hover img { transform: scale(1.06); }
.apxyq3w-ent-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; background: linear-gradient(transparent, rgba(11, 29, 51, 0.9)); color: white; }
.apxyq3w-ent-overlay h3 { font-size: 20px; margin-bottom: 8px; }
.apxyq3w-ent-overlay p { font-size: 14px; opacity: 0.85; }

/* === AI赋能 === */
.apxyq3w-ai { background: linear-gradient(135deg, #0B1D33, #1D3557) !important; }
.apxyq3w-ai .apxyq3w-section-title { color: #F4A261; }
.apxyq3w-ai .apxyq3w-section-desc { color: rgba(241, 250, 238, 0.7); }
.apxyq3w-ai-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.apxyq3w-ai-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(244, 162, 97, 0.2); border-radius: 12px; padding: 35px 25px; transition: all 0.4s; }
.apxyq3w-ai-card:hover { background: rgba(244, 162, 97, 0.1); border-color: #F4A261; transform: translateY(-5px); }
.apxyq3w-ai-num { font-size: 3rem; font-weight: 800; color: rgba(244, 162, 97, 0.3); margin-bottom: 15px; }
.apxyq3w-ai-title { font-size: 18px; font-weight: 600; color: #F4A261; margin-bottom: 12px; }
.apxyq3w-ai-desc { color: rgba(241, 250, 238, 0.7); font-size: 14px; line-height: 1.7; }

/* === 社区功能 === */
.apxyq3w-community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.apxyq3w-comm-card { background: white; padding: 30px 25px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s; border-left: 4px solid #E63946; }
.apxyq3w-comm-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12); }
.apxyq3w-comm-title { font-size: 18px; font-weight: 600; color: #1D3557; margin-bottom: 12px; }
.apxyq3w-comm-desc { color: #666; font-size: 14px; line-height: 1.7; }

/* === 专家团队 === */
.apxyq3w-experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.apxyq3w-expert-card { background: white; padding: 30px 20px; border-radius: 12px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s; }
.apxyq3w-expert-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12); }
.apxyq3w-expert-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px; border: 3px solid #F4A261; }
.apxyq3w-expert-name { font-size: 18px; font-weight: 700; color: #1D3557; margin-bottom: 5px; }
.apxyq3w-expert-role { font-size: 13px; color: #E63946; margin-bottom: 12px; font-weight: 500; }
.apxyq3w-expert-bio { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.apxyq3w-expert-awards { display: flex; gap: 8px; justify-content: center; margin-bottom: 15px; flex-wrap: wrap; }
.apxyq3w-award { padding: 3px 10px; background: rgba(244, 162, 97, 0.15); color: #F4A261; border-radius: 12px; font-size: 11px; font-weight: 500; }
.apxyq3w-expert-actions { display: flex; gap: 8px; justify-content: center; }

/* === FAQ === */
.apxyq3w-faq { background: #F8F9FA !important; }
.apxyq3w-faq-list { max-width: 800px; margin: 0 auto; }
.apxyq3w-faq-item { background: white; border-radius: 10px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.apxyq3w-faq-question { width: 100%; padding: 20px 25px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: #1D3557; text-align: left; transition: color 0.3s; }
.apxyq3w-faq-question:hover { color: #E63946; }
.apxyq3w-faq-arrow { transition: transform 0.3s; flex-shrink: 0; margin-left: 15px; }
.apxyq3w-faq-item.apxyq3w-active .apxyq3w-faq-arrow { transform: rotate(180deg); }
.apxyq3w-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.apxyq3w-faq-item.apxyq3w-active .apxyq3w-faq-answer { max-height: 300px; padding: 0 25px 20px; }
.apxyq3w-faq-answer p { color: #666; font-size: 14px; line-height: 1.8; }

/* === 用户评价 === */
.apxyq3w-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.apxyq3w-review-card { background: white; padding: 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s; }
.apxyq3w-review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.apxyq3w-review-stars { color: #F4A261; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.apxyq3w-review-text { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 15px; font-style: italic; }
.apxyq3w-review-author strong { display: block; color: #1D3557; font-size: 15px; }
.apxyq3w-review-author span { font-size: 12px; color: #999; }

/* === 合作品牌 === */
.apxyq3w-partners-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.apxyq3w-partner-item { background: white; padding: 25px; border-radius: 10px; text-align: center; font-size: 16px; font-weight: 600; color: #1D3557; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s; border: 1px solid #eee; }
.apxyq3w-partner-item:hover { border-color: #E63946; color: #E63946; transform: translateY(-3px); }

/* === How-To步骤 === */
.apxyq3w-howto { background: linear-gradient(135deg, #E63946, #c0392b) !important; }
.apxyq3w-howto .apxyq3w-section-title { color: white; }
.apxyq3w-howto .apxyq3w-section-title::after { background: linear-gradient(90deg, #F4A261, #FFD700); }
.apxyq3w-howto .apxyq3w-section-desc { color: rgba(255,255,255,0.85); }
.apxyq3w-howto-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.apxyq3w-step { text-align: center; padding: 30px 20px; }
.apxyq3w-step-num { width: 60px; height: 60px; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: white; margin: 0 auto 18px; }
.apxyq3w-step-title { font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px; }
.apxyq3w-step-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* === 联系我们 === */
.apxyq3w-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.apxyq3w-contact-info h4, .apxyq3w-contact-community h4 { font-size: 20px; color: #1D3557; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid #E63946; }
.apxyq3w-contact-list li { padding: 8px 0; font-size: 14px; color: #555; line-height: 1.7; }
.apxyq3w-contact-list strong { color: #1D3557; }

/* === 社交分享 === */
.apxyq3w-social { background: #1D3557 !important; padding: 50px 0; }
.apxyq3w-social-inner { text-align: center; }
.apxyq3w-social-title { font-size: 22px; color: white; margin-bottom: 25px; }
.apxyq3w-social-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.apxyq3w-social-btn { padding: 12px 28px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 25px; color: white; font-size: 14px; transition: all 0.3s; }
.apxyq3w-social-btn:hover { background: #F4A261; border-color: #F4A261; color: #1D3557; }

/* === Footer === */
.apxyq3w-footer { background: #0B1D33; color: #F1FAEE; }
.apxyq3w-footer-top { padding: 60px 0 40px; }
.apxyq3w-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.apxyq3w-footer-logo { height: 36px; width: auto; margin-bottom: 15px; }
.apxyq3w-footer-desc { font-size: 13px; color: rgba(241, 250, 238, 0.6); line-height: 1.7; }
.apxyq3w-footer-title { font-size: 16px; font-weight: 600; margin-bottom: 18px; color: #F4A261; }
.apxyq3w-footer-links a { display: block; padding: 5px 0; font-size: 13px; color: rgba(241, 250, 238, 0.6); transition: color 0.3s; }
.apxyq3w-footer-links a:hover { color: #F4A261; }
.apxyq3w-footer-contact li { padding: 4px 0; font-size: 13px; color: rgba(241, 250, 238, 0.6); }
.apxyq3w-footer-qrcodes { display: flex; gap: 20px; }
.apxyq3w-qrcode-item { text-align: center; }
.apxyq3w-qrcode-item img { width: 90px; height: 90px; border-radius: 6px; margin-bottom: 6px; }
.apxyq3w-qrcode-item span { font-size: 12px; color: rgba(241, 250, 238, 0.5); }
.apxyq3w-footer-share { padding: 18px 0; border-top: 1px solid rgba(244, 162, 97, 0.15); border-bottom: 1px solid rgba(244, 162, 97, 0.15); }
.apxyq3w-share-label { color: rgba(241, 250, 238, 0.6); font-size: 14px; margin-right: 15px; }
.apxyq3w-share-buttons { display: inline-flex; gap: 10px; }
.apxyq3w-share-btn { padding: 6px 16px; border-radius: 15px; font-size: 12px; transition: all 0.3s; }
.apxyq3w-share-wechat { background: rgba(7, 193, 96, 0.2); color: #07C160; }
.apxyq3w-share-weibo { background: rgba(230, 22, 45, 0.2); color: #E6162D; }
.apxyq3w-share-douyin { background: rgba(254, 44, 85, 0.2); color: #FE2C55; }
.apxyq3w-share-bilibili { background: rgba(0, 174, 236, 0.2); color: #00AEEC; }
.apxyq3w-share-btn:hover { opacity: 0.8; }
.apxyq3w-footer-bottom { padding: 20px 0; text-align: center; }
.apxyq3w-footer-bottom p { font-size: 13px; color: rgba(241, 250, 238, 0.4); }

/* === 面包屑 === */
.apxyq3w-breadcrumb { padding: 15px 0; font-size: 13px; color: #999; }
.apxyq3w-breadcrumb a { color: #E63946; }
.apxyq3w-breadcrumb span { margin: 0 8px; color: #ccc; }

/* === 内页通用 === */
.apxyq3w-page-hero { padding: 140px 20px 60px; background: linear-gradient(135deg, #1D3557, #0B1D33); text-align: center; }
.apxyq3w-page-hero h1 { font-size: 2.5rem; color: white; margin-bottom: 15px; }
.apxyq3w-page-hero p { color: rgba(241, 250, 238, 0.8); font-size: 16px; max-width: 600px; margin: 0 auto; }
.apxyq3w-page-content { padding: 60px 0; }

/* === 响应式 === */
@media (max-width: 1024px) {
    .apxyq3w-video-grid, .apxyq3w-media-grid, .apxyq3w-community-grid, .apxyq3w-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .apxyq3w-ai-grid, .apxyq3w-experts-grid, .apxyq3w-partners-wall { grid-template-columns: repeat(2, 1fr); }
    .apxyq3w-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .apxyq3w-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .apxyq3w-hero-title { font-size: 2rem; }
    .apxyq3w-hero-subtitle { font-size: 1rem; }
    .apxyq3w-section-title { font-size: 1.6rem; }
    .apxyq3w-nav { display: none; position: absolute; top: 68px; left: 0; width: 100%; background: rgba(29, 53, 87, 0.98); padding: 20px; }
    .apxyq3w-nav.apxyq3w-nav-open { display: block; }
    .apxyq3w-nav-list { flex-direction: column; gap: 0; }
    .apxyq3w-nav-item { display: block; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .apxyq3w-mobile-toggle { display: block; }
    .apxyq3w-video-grid, .apxyq3w-media-grid, .apxyq3w-community-grid, .apxyq3w-reviews-grid, .apxyq3w-ai-grid, .apxyq3w-experts-grid { grid-template-columns: 1fr; }
    .apxyq3w-entertainment-grid { grid-template-columns: 1fr; }
    .apxyq3w-ent-large { grid-row: span 1; }
    .apxyq3w-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .apxyq3w-stat-num { font-size: 2rem; }
    .apxyq3w-contact-grid { grid-template-columns: 1fr; }
    .apxyq3w-howto-steps { grid-template-columns: 1fr; }
    .apxyq3w-partners-wall { grid-template-columns: repeat(2, 1fr); }
    .apxyq3w-footer-grid { grid-template-columns: 1fr; }
    .apxyq3w-hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .apxyq3w-hero-title { font-size: 1.6rem; }
    .apxyq3w-stat-num { font-size: 1.6rem; }
    .apxyq3w-section { padding: 50px 0; }
    .apxyq3w-btn { padding: 12px 24px; font-size: 14px; }
}
