﻿/* ===== 达咩FM - 首页专属样式表 ===== */
/* 主色: #a591ff */

/* ===== CSS Custom Properties ===== */
:root {
    --primary: #a591ff;
    --primary-dark: #8c7bd8;
    --primary-light: rgba(165, 145, 255, 0.10);
    --primary-gradient: linear-gradient(135deg, #a591ff, #c4b5ff);
    --bg-light: #f8f9fc;
    --text: #333;
    --text-light: #888;
    --text-muted: #aaa;
    --border: #eee;
    --radius: 14px;
    --max-width: 1200px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --bg-card: #fff;
    --star: #ffb400;
}

/* ===== Hero Section ===== */
.hero {
    padding: 120px 0 80px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
}
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--primary, #a591ff);
    filter: blur(120px);
    opacity: 0.10;
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #c4b5ff;
    filter: blur(100px);
    opacity: 0.12;
    bottom: -50px;
    left: -50px;
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 16px;
}
.hero-content h1 .highlight {
    background: var(--primary-gradient, linear-gradient(135deg, #a591ff, #c4b5ff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .hero-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-trust {
    display: flex;
    gap: 28px;
    font-size: 13px;
    color: #999;
}
.hero-trust span strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary, #a591ff);
    display: block;
    margin-bottom: 2px;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual .visual-main {
    width: 320px;
    height: 320px;
    border-radius: 24px;
    background: var(--primary-gradient, linear-gradient(135deg, #a591ff, #c4b5ff));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(165, 145, 255, 0.30);
    position: relative;
    z-index: 2;
}
.hero-visual .visual-main .visual-icon {
    font-size: 80px;
    color: #fff;
    opacity: 0.9;
}
.hero-visual .visual-float {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.visual-float.float-1 { top: 20px; right: 10px; }
.visual-float.float-2 { bottom: 40px; left: 10px; }
.visual-float .float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.visual-float.float-1 .float-icon { background: rgba(165, 145, 255, 0.12); color: var(--primary, #a591ff); }
.visual-float.float-2 .float-icon { background: rgba(255, 180, 0, 0.12); color: var(--star, #ffb400); }

/* Sound wave in hero */
.hero-sound-wave {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 1;
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 40px;
}
.hero-sound-wave span {
    width: 4px;
    background: var(--primary, #a591ff);
    border-radius: 2px;
    opacity: 0.4;
    animation: hero-wave 1.5s ease-in-out infinite;
}
.hero-sound-wave span:nth-child(1) { height: 16px; animation-delay: 0s; }
.hero-sound-wave span:nth-child(2) { height: 28px; animation-delay: 0.2s; }
.hero-sound-wave span:nth-child(3) { height: 38px; animation-delay: 0.4s; }
.hero-sound-wave span:nth-child(4) { height: 26px; animation-delay: 0.6s; }
.hero-sound-wave span:nth-child(5) { height: 14px; animation-delay: 0.8s; }
@keyframes hero-wave { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.4); } }

/* ===== Features Section ===== */
.features-section { padding: 72px 0; background: #fff; }
.features-section .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.features-section .feature-card-home {
    text-align: center;
    padding: 36px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.features-section .feature-card-home:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(165, 145, 255, 0.15);
    border-color: transparent;
}
.features-section .feature-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient, linear-gradient(135deg, #a591ff, #c4b5ff));
    opacity: 0;
    transition: opacity 0.3s;
}
.features-section .feature-card-home:hover::before { opacity: 1; }
.features-section .feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(165, 145, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--primary, #a591ff);
    transition: all 0.3s ease;
}
.features-section .feature-card-home:hover .feature-icon-circle {
    background: var(--primary, #a591ff);
    color: #fff;
}
.features-section .feature-card-home h3 { font-size: 17px; font-weight: 600; color: #1a1a2e; margin-bottom: 8px; }
.features-section .feature-card-home p { font-size: 13px; color: #888; line-height: 1.6; }

/* ===== Drama Showcase Section ===== */
.drama-section { padding: 72px 0; background: #f8f9fc; }
.drama-section .drama-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.drama-section .drama-card-home {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}
.drama-section .drama-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.drama-section .drama-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e8e4f8;
}
.drama-section .drama-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.drama-section .drama-card-home:hover .drama-poster img { transform: scale(1.08); }
.drama-section .drama-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.drama-section .drama-card-home:hover .drama-play-overlay { opacity: 1; }
.drama-section .drama-play-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.drama-section .drama-play-circle::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent var(--primary, #a591ff);
    margin-left: 3px;
}
.drama-section .drama-card-home .drama-info { padding: 14px 16px 16px; }
.drama-section .drama-card-home .drama-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.drama-section .drama-card-home .drama-info .drama-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.drama-section .drama-card-home .drama-info .drama-tag {
    padding: 2px 8px;
    background: rgba(165, 145, 255, 0.08);
    color: var(--primary, #a591ff);
    font-size: 11px;
    border-radius: 50px;
}
.drama-section .drama-card-home .drama-info .drama-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #aaa;
}
.drama-section .drama-card-home .drama-info .drama-plays i { margin-right: 3px; }

/* ===== Scenes Section ===== */
.scenes-section { padding: 72px 0; background: #fff; }
.scenes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scene-card-home {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.scene-card-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.scene-card-home:hover img { transform: scale(1.08); }
.scene-card-home .scene-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.scene-card-home .scene-overlay h3 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.scene-card-home .scene-overlay p { color: rgba(255, 255, 255, 0.82); font-size: 13px; }

/* ===== Experience Section ===== */
.experience-section { padding: 72px 0; background: #1a1a2e; }
.experience-section .section-title { color: #fff; }
.experience-section .section-title::after { background: var(--primary, #a591ff); }
.experience-section .section-subtitle { color: rgba(255, 255, 255, 0.65); }
.exp-wrap { display: flex; gap: 48px; align-items: center; }
.exp-visual { flex: 1; }
.exp-visual .code-block {
    background: #151525;
    color: #a6e3a1;
    padding: 28px;
    border-radius: 16px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.9;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.exp-visual .code-block .code-kw { color: #cba6f7; }
.exp-visual .code-block .code-str { color: #a6e3a1; }
.exp-visual .code-block .code-fn { color: #89b4fa; }
.exp-items { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.exp-item { display: flex; gap: 16px; align-items: flex-start; }
.exp-item .exp-emoji { font-size: 30px; flex-shrink: 0; line-height: 1; }
.exp-item h4 { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.exp-item p { font-size: 14px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

/* ===== Reviews Section ===== */
.reviews-section { padding: 72px 0; background: #f8f9fc; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card-home {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}
.review-card-home:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); }
.review-card-home .review-stars { margin-bottom: 12px; color: var(--star, #ffb400); font-size: 14px; letter-spacing: 1px; }
.review-card-home .review-text { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 20px; }
.review-card-home .review-author { display: flex; align-items: center; gap: 10px; }
.review-card-home .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(165, 145, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary, #a591ff);
    font-weight: 600;
}
.review-card-home .review-name { font-size: 14px; font-weight: 600; color: #333; }
.review-card-home .review-date { font-size: 12px; color: #aaa; }

/* ===== Stats Section ===== */
.stats-section {
    padding: 64px 0;
    background: var(--primary-gradient, linear-gradient(135deg, #a591ff, #c4b5ff));
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; }
.stat-item .stat-num { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1; }
.stat-item .stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.82); }

/* ===== News Section on Homepage ===== */
.news-section { padding: 72px 0; background: #fff; }
.news-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card-home {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.news-card-home:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10); }
.news-card-home .news-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #f0edff;
}
.news-card-home .news-body { padding: 18px; }
.news-card-home .news-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-home .news-body h4 a:hover { color: var(--primary, #a591ff); }
.news-card-home .news-body .news-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-home .news-body .news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #bbb;
}

/* ===== Updates Section on Homepage ===== */
.updates-section { padding: 72px 0; background: #f8f9fc; }
.updates-list { max-width: 700px; margin: 0 auto; }
.update-item {
    display: flex;
    gap: 20px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    align-items: center;
}
.update-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); }
.update-item .update-version {
    flex-shrink: 0;
    padding: 4px 12px;
    background: rgba(165, 145, 255, 0.10);
    color: var(--primary, #a591ff);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}
.update-item .update-info { flex: 1; min-width: 0; }
.update-item .update-info h4 { font-size: 15px; font-weight: 600; color: #333; }
.update-item .update-info p { font-size: 12px; color: #aaa; margin-top: 2px; }

/* ===== FAQ Section on Homepage ===== */
.faq-section { padding: 72px 0; background: #fff; }
.faq-home-list { max-width: 700px; margin: 0 auto; }

/* ===== CTA Bottom Section ===== */
.cta-bottom {
    padding: 64px 0;
    background: var(--primary-gradient, linear-gradient(135deg, #a591ff, #c4b5ff));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-bottom h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 12px; position: relative; }
.cta-bottom p { font-size: 16px; color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; position: relative; }
.cta-bottom .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== Hero Player Mockup ===== */
.hero .container { display:grid;grid-template-columns:1fr 380px;gap:60px;align-items:center; }
.hero-player { display:flex;justify-content:center; }
.player-mock { width:340px;background:#fff;border-radius:20px;padding:28px 24px 20px;box-shadow:0 20px 60px rgba(165,145,255,.18),0 4px 12px rgba(0,0,0,.06); }
.player-cover { position:relative;width:100%;aspect-ratio:1;border-radius:14px;overflow:hidden;background:var(--primary-gradient);margin-bottom:18px; }
.player-cover img { width:100%;height:100%;object-fit:cover;opacity:.7; }
.player-cover-wave { position:absolute;bottom:24px;left:50%;transform:translateX(-50%);display:flex;gap:5px;align-items:flex-end;height:40px; }
.player-cover-wave span { width:5px;border-radius:3px;background:#fff;animation:player-wave 1.2s ease-in-out infinite; }
.player-cover-wave span:nth-child(1){height:16px;animation-delay:0s}
.player-cover-wave span:nth-child(2){height:28px;animation-delay:.15s}
.player-cover-wave span:nth-child(3){height:38px;animation-delay:.3s}
.player-cover-wave span:nth-child(4){height:24px;animation-delay:.45s}
.player-cover-wave span:nth-child(5){height:12px;animation-delay:.6s}
@keyframes player-wave{0%,100%{transform:scaleY(1)}50%{transform:scaleY(.4)}}
.player-info { text-align:center;margin-bottom:14px; }
.player-track { font-size:16px;font-weight:700;color:#1a1a2e;margin-bottom:4px; }
.player-artist { font-size:13px;color:#999; }
.player-progress { margin-bottom:16px; }
.player-bar { width:100%;height:4px;background:#f0f0f0;border-radius:2px;overflow:hidden;margin-bottom:6px; }
.player-fill { width:45%;height:100%;background:var(--primary,#a591ff);border-radius:2px; }
.player-time { display:flex;justify-content:space-between;font-size:11px;color:#bbb; }
.player-controls { display:flex;align-items:center;justify-content:center;gap:28px;font-size:20px;color:#555; }
.player-controls .player-play { display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:var(--primary,#a591ff);color:#fff;font-size:18px;cursor:default;box-shadow:0 4px 16px rgba(165,145,255,.3); }
.player-controls i { cursor:default;transition:color .2s; }
.player-controls i:hover { color:var(--primary,#a591ff); }

/* ===== Hero Divider ===== */
.hero-trust { gap: 0; align-items: center; }
.hero-trust .hero-divider { width: 1px; height: 28px; background: #e0e0e0; margin: 0 24px; flex-shrink: 0; }

/* ===== Drama Card Enhanced ===== */
.drama-card-home .drama-desc { font-size:13px;color:#888;line-height:1.5;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.drama-card-home .drama-listen-btn { font-size:12px;font-weight:600;color:var(--primary,#a591ff);display:inline-flex;align-items:center;gap:4px; }
.drama-card-home .drama-listen-btn:hover { text-decoration:underline; }

/* ===== Home News 双栏 ===== */
.home-news-section { padding:72px 0;background:#fff; }
.home-news-grid { display:grid;grid-template-columns:1fr 1fr;gap:48px; }
.home-news-col .section-header { text-align:left;margin-bottom:24px; }
.home-news-col .section-header .section-title { font-size:22px; }
.home-news-col .section-header .section-subtitle { font-size:13px;margin:0; }
.home-news-list { display:flex;flex-direction:column;gap:2px; }
.home-news-item { display:flex;align-items:center;gap:12px;padding:12px 16px;border-radius:10px;transition:all .2s;color:#444;text-decoration:none; }
.home-news-item:hover { background:#f8f7ff; }
.home-news-item .home-news-date { font-size:12px;color:#aaa;flex-shrink:0;width:42px; }
.home-news-item .home-news-badge { font-size:11px;font-weight:700;color:#fff;background:var(--primary,#a591ff);border-radius:4px;padding:1px 6px;flex-shrink:0; }
.home-news-item .home-news-title { flex:1;font-size:14px;color:#333;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.home-news-item i { color:#ccc;flex-shrink:0;font-size:12px; }

/* ===== Home FAQ 精简 ===== */
.home-faq-section { padding:72px 0;background:#f8f9fc; }
.faq-home-list { max-width:700px;margin:0 auto;display:flex;flex-direction:column;gap:8px; }
.home-faq-item { display:flex;align-items:center;gap:12px;padding:14px 20px;background:#fff;border-radius:12px;text-decoration:none;color:#333;font-size:15px;transition:all .2s;box-shadow:0 1px 4px rgba(0,0,0,.03); }
.home-faq-item:hover { transform:translateX(4px);box-shadow:0 4px 12px rgba(0,0,0,.06);color:var(--primary,#a591ff); }
.home-faq-item i:first-child { color:var(--primary,#a591ff);font-size:16px;flex-shrink:0; }
.home-faq-item span { flex:1; }
.home-faq-item i:last-child { color:#ccc;font-size:12px;flex-shrink:0; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero { padding: 100px 0 60px; }
    .hero .container { gap: 40px; }
    .hero-content h1 { font-size: 30px; }
    .hero-visual .visual-main { width: 260px; height: 260px; }
    .hero-visual .visual-main .visual-icon { font-size: 60px; }
    .features-section .features-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid-home { grid-template-columns: repeat(2, 1fr); }
    .hero-sound-wave { display: none; }
}

@media (max-width: 768px) {
    .hero { padding: 80px 0 48px; margin-top: 56px; }
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 36px; }
    .hero-player { display:none; }
    .hero-content h1 { font-size: 26px; }
    .hero-content .hero-subtitle { max-width: 100%; margin: 0 auto 24px; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual .visual-main { width: 200px; height: 200px; }
    .hero-visual .visual-main .visual-icon { font-size: 50px; }
    .visual-float { display: none; }
    .drama-section .drama-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .scenes-grid { grid-template-columns: 1fr; }
    .features-section .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .news-grid-home { grid-template-columns: 1fr; }
    .exp-wrap { flex-direction: column; }
    .cta-bottom h2 { font-size: 24px; }
	    .home-news-grid { grid-template-columns:1fr;gap:32px; }
	    .home-faq-section { padding:48px 0; }
}

@media (max-width: 480px) {
    .hero { padding: 64px 0 36px; }
    .hero-content h1 { font-size: 22px; }
    .hero-content .hero-subtitle { font-size: 15px; }
    .hero-visual .visual-main { width: 160px; height: 160px; }
    .hero-visual .visual-main .visual-icon { font-size: 40px; }
    .hero-trust { gap: 16px; font-size: 12px; }
    .hero-trust span strong { font-size: 17px; }
    .drama-section .drama-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .features-section .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-item .stat-num { font-size: 30px; }
	    .home-news-grid { grid-template-columns:1fr; }
	    .hero-trust .hero-divider { margin:0 12px;height:22px; }
    .section-title { font-size: 22px; }
    .cta-bottom h2 { font-size: 22px; }
}
