/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1b1230;
    --secondary: #2a1a4a;
    --accent: #ff4d94;
    --gold: #ffd93d;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 10px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", Arial, sans-serif;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: #fafafa; color: #222; line-height: 1.7; font-size: 16px; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 70px 0; }
.alt { background: #f5f7fa; }
.tc { text-align: center; }
.sec-title { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.sec-title span { color: var(--accent); }
.sec-sub { color: #666; max-width: 680px; margin-bottom: 40px; }
.tc .sec-sub { margin-left: auto; margin-right: auto; }

/* ===== breadcrumb ===== */
.bc { background: #f5f5f5; padding: 10px 0; font-size: 13px; color: #666; }
.bc a { color: #666; }
.bc a:hover { color: var(--accent); }
.bc .bc-sep { margin: 0 8px; color: #bbb; }

/* ===== friend links ===== */
.flinks { background: #f7f8fa; padding: 32px 0; border-top: 1px solid #e8ecf2; }
.flinks .fl-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.flinks ul { list-style: none; display: flex; flex-wrap: wrap; gap: 9px 24px; }
.flinks a { color: #666; font-size: 13px; }
.flinks a:hover { color: var(--accent); }
.flinks.g2 ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 26px; }
.flinks.g2 a { position: relative; padding-left: 13px; }
.flinks.g2 a::before { content: ''; position: absolute; left: 0; top: 50%; margin-top: -2px; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.flinks.col ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 11px 22px; }
.flinks.col a { display: block; padding: 7px 12px; background: #fff; border-radius: calc(var(--radius) - 4px); border: 1px solid #e8ecf2; }
.flinks.col a:hover { border-color: var(--accent); }
@media (max-width: 768px) {
    .flinks.g2 ul, .flinks.col ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===== modal ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition); padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 560px; width: 100%; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: #f0f0f0; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1; color: #444; }
.modal-box h2 { font-size: 24px; margin-bottom: 8px; color: var(--primary); }
.modal-box .m-year { color: #888; margin-bottom: 16px; }
.modal-box .m-desc { color: #555; line-height: 1.8; margin-bottom: 16px; }
.modal-box .m-meta { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ===== demo -> detail links (works cards / faq questions become real anchors) ===== */
a.wk1-btn { display: inline-block; text-align: center; }
.fq1-link { color: inherit; }
.fq1-link:hover { color: var(--accent); }

.nv4-bar { position: sticky; top: 0; z-index: 950; background: #fff; box-shadow: 0 3px 18px rgba(0,0,0,0.09); }
.nv4-bar::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.nv4-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; }
.nv4-menu { display: flex; align-items: center; flex-wrap: wrap; list-style: none; }
.nv4-menu a { display: block; position: relative; padding: 12px 14px; font-size: 13px; letter-spacing: 1px; color: #4a4a4a; text-decoration: none; }
.nv4-menu a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left center; transition: transform 0.25s ease; }
.nv4-menu a:hover { color: var(--primary); }
.nv4-menu a:hover::after { transform: scaleX(1); }
.nv4-logo { display: flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.nv4-ico { font-size: 24px; line-height: 1; }
.nv4-kw { font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.nv4-kw em { font-style: normal; color: var(--accent); }
.nv4-brand { font-size: 12px; font-weight: 500; color: var(--gray); padding-left: 9px; border-left: 1px solid rgba(0,0,0,0.14); }
@media (max-width:768px) {
    .nv4-inner { flex-direction: column; gap: 6px; padding: 10px 0; }
    .nv4-logo { order: -1; }
    .nv4-ico { font-size: 21px; }
    .nv4-kw { font-size: 19px; letter-spacing: 1px; }
    .nv4-brand { font-size: 11px; }
    .nv4-menu { justify-content: center; }
    .nv4-menu a { padding: 7px 9px; font-size: 12px; }
    .nv4-menu a::after { left: 9px; right: 9px; bottom: 2px; }
}
.hr5-hero {
    position: relative;
    padding: 78px 0;
    background: var(--light);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    overflow: hidden;
}
.hr5-hero::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    border: 16px solid var(--accent);
    border-radius: 50%;
    opacity: 0.14;
}
.hr5-hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.hr5-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}
.hr5-title {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 3px;
}
.hr5-title span {
    color: var(--accent);
}
.hr5-desc {
    max-width: 660px;
    margin: 0 auto 30px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.9;
}
.hr5-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}
.hr5-btn {
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr5-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.hr5-genre {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}
.hr5-genre span {
    margin-right: 6px;
}
@media (max-width: 768px) {
    .hr5-hero {
        padding: 48px 0;
    }
    .hr5-hero::before {
        top: -46px;
        right: -46px;
        width: 150px;
        height: 150px;
        border-width: 10px;
    }
    .hr5-title {
        margin-bottom: 12px;
        font-size: 24px;
        letter-spacing: 1px;
    }
    .hr5-desc {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr5-row {
        gap: 14px;
    }
    .hr5-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}
.it6-head { margin-bottom: 34px; }
.it6-head .sec-sub { margin-bottom: 0; }
.it6-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.it6-card { display: flex; flex-direction: column; padding: 28px 26px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.it6-label { display: block; margin-bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--accent); }
.it6-card p { color: #555; line-height: 1.9; font-size: 15px; margin: 0 0 14px; }
.it6-card p:last-child { margin-bottom: 0; }
.it6-card p strong { color: var(--primary); }
.it6-card-data { background: var(--primary); }
.it6-card-data .it6-label { color: var(--gold); }
.it6-card-data p { color: rgba(255, 255, 255, .78); }
.it6-card-note { background: var(--light); box-shadow: none; border-top: 3px solid var(--accent); }
.it6-stats { display: flex; flex-direction: column; }
.it6-stats .it1-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 0; background: none; border: 0; border-left: 0; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.it6-stats .it1-stat:first-child { padding-top: 0; }
.it6-stats .it1-stat:last-child { padding-bottom: 0; border-bottom: 0; }
.it6-stats .it1-num { font-size: 30px; line-height: 1.1; color: #fff; }
.it6-stats .it1-lbl { font-size: 13px; color: rgba(255, 255, 255, .72); }
@media (max-width: 768px) {
    .it6-cards { grid-template-columns: 1fr; gap: 14px; }
    .it6-card { padding: 20px 18px; }
    .it6-label { margin-bottom: 10px; }
    .it6-stats .it1-num { font-size: 24px; }
}
.wk9-stack {
    position: relative;
    padding-bottom: 34px;
}
.wk9-stack .wk1-item {
    position: relative;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: -28px;
    padding: 16px 16px 42px;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(15,23,42,0.13);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.wk9-stack .wk1-item:first-child {
    margin-top: 0;
}
.wk9-stack .wk1-item:nth-child(2n) {
    margin-left: 70px;
}
.wk9-stack .wk1-item:nth-child(2n+1) {
    margin-right: 70px;
}
.wk9-stack .wk1-item:hover {
    z-index: 6;
    transform: translate(16px, -10px);
    border-color: var(--accent);
    box-shadow: 0 26px 48px rgba(15,23,42,0.2);
}
.wk9-stack .wk1-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--light);
}
.wk9-stack .wk1-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wk9-stack .wk1-item:hover .wk1-thumb img {
    transform: scale(1.05);
}
.wk9-stack .wk1-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
}
.wk9-stack .wk1-idx {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
}
.wk9-stack .wk1-info {
    min-width: 0;
}
.wk9-stack .wk1-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.wk9-stack .wk1-title {
    margin: 0;
    color: var(--primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}
.wk9-stack .wk1-tag {
    flex: none;
    padding: 3px 13px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
}
.wk9-stack .wk1-meta {
    margin-top: 8px;
    color: var(--gray);
    font-size: 13px;
}
.wk9-stack .wk1-desc {
    display: -webkit-box;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--gray);
    font-size: 13px;
    line-height: 1.78;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wk9-stack .wk1-btn {
    padding: 8px 24px;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.25s ease;
}
.wk9-stack .wk1-btn:hover {
    background: var(--accent);
}
@media (max-width: 768px) {
    .wk9-stack {
        padding-bottom: 0;
    }
    .wk9-stack .wk1-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-top: 0;
        padding: 12px;
    }
    .wk9-stack .wk1-item:nth-child(2n),
    .wk9-stack .wk1-item:nth-child(2n+1) {
        margin-left: 0;
        margin-right: 0;
    }
    .wk9-stack .wk1-item:hover {
        transform: none;
    }
    .wk9-stack .wk1-idx {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .wk9-stack .wk1-title {
        font-size: 17px;
    }
    .wk9-stack .wk1-desc {
        margin: 8px 0 12px;
        -webkit-line-clamp: 2;
    }
    .wk9-stack .wk1-btn {
        padding: 7px 18px;
        font-size: 12px;
    }
}
.ad6-split{display:grid;grid-template-columns:minmax(260px,340px) 1fr;column-gap:56px;align-items:start}
.ad6-split .ad6-side{position:sticky;top:80px}
.ad6-split .ad6-list{border-top:1px solid #e6eaf0}
.ad6-split .ad6-list > .ad1-item{position:relative;display:grid;grid-template-columns:auto 1fr;column-gap:18px;row-gap:8px;padding:24px 0;border-bottom:1px solid #e6eaf0}
.ad6-split .ad6-list > .ad1-item:last-child{border-bottom:0}
.ad6-split .ad1-toggle{display:none}
.ad6-split .ad1-icon{grid-column:1;grid-row:1 / span 2;width:54px;height:54px;border-radius:14px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;line-height:1;transition:background .3s ease}
.ad6-split .ad6-list > .ad1-item:hover .ad1-icon{background:var(--accent)}
.ad6-split .ad1-num{position:absolute;top:24px;right:0;font-size:30px;font-weight:800;line-height:1;color:#eef1f6;pointer-events:none}
.ad6-split .ad1-label{display:inline}
.ad6-split .ad1-title{grid-column:2;grid-row:1;font-size:18px;font-weight:700;color:var(--primary);margin:0;padding-right:46px;line-height:1.4}
.ad6-split .ad1-desc{grid-column:2;grid-row:2;font-size:14px;line-height:1.8;color:#666;margin:0}
@media (max-width:768px){
  .ad6-split{grid-template-columns:1fr;row-gap:26px}
  .ad6-split .ad6-side{position:static;top:auto}
  .ad6-split .ad6-list > .ad1-item{padding:18px 0;column-gap:14px}
  .ad6-split .ad1-icon{width:44px;height:44px;font-size:18px;border-radius:12px}
  .ad6-split .ad1-num{top:18px;font-size:22px}
  .ad6-split .ad1-title{font-size:16px;padding-right:34px}
  .ad6-split .ad1-desc{font-size:13px;line-height:1.75}
}
.nw5-cols { column-count:2; column-gap:48px; column-rule:1px solid #e8ecf2 }
.nw5-cols .nw1-item { display:flex; align-items:baseline; gap:14px; padding:15px 2px; border-bottom:1px solid #eef1f6; text-decoration:none; break-inside:avoid; -webkit-column-break-inside:avoid; page-break-inside:avoid; transition:padding .25s ease, background .25s ease, border-color .25s ease }
.nw5-cols .nw1-date { flex:none; width:88px; font-size:12px; letter-spacing:.5px; color:var(--gray); transition:color .25s ease }
.nw5-cols .nw1-title { flex:1; min-width:0; font-size:15px; line-height:1.55; font-weight:600; color:var(--primary); transition:color .25s ease }
.nw5-cols .nw1-idx { flex:none; font-size:12px; line-height:1.6; color:#c9d2dd; transition:color .25s ease }
.nw5-cols .nw1-item:hover { padding-left:10px; background:#f7f9fc; border-bottom-color:var(--accent) }
.nw5-cols .nw1-item:hover .nw1-title { color:var(--accent) }
.nw5-cols .nw1-item:hover .nw1-date { color:var(--primary) }
.nw5-cols .nw1-item:hover .nw1-idx { color:var(--accent) }
@media (max-width:768px) {
    .nw5-cols { column-count:1; column-gap:0; column-rule:none }
    .nw5-cols .nw1-item { gap:10px; padding:12px 2px }
    .nw5-cols .nw1-date { width:76px; font-size:11px }
    .nw5-cols .nw1-title { font-size:14px }
    .nw5-cols .nw1-idx { font-size:11px }
    .nw5-cols .nw1-item:hover { padding-left:6px }
}
.faq6-deck { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq6-deck .fq1-item { position: relative; border-left: 4px solid transparent; border-radius: 20px; background: #fff; box-shadow: 0 4px 18px rgba(0, 0, 0, .06); transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.faq6-deck .fq1-item:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .1); }
.faq6-deck .fq1-item.open { border-left-color: var(--accent); box-shadow: 0 14px 32px rgba(0, 0, 0, .12); }
.faq6-deck .fq1-q { display: flex; align-items: center; gap: 14px; padding: 20px 22px; font-size: 16px; line-height: 1.6; font-weight: 700; color: var(--primary); cursor: pointer; transition: color .3s ease; }
.faq6-deck .fq1-item.open .fq1-q { color: var(--accent); }
.faq6-deck .fq1-no { flex: none; display: block; width: 34px; height: 34px; border-radius: 12px; background: var(--light); color: var(--gray); font-size: 13px; font-weight: 700; line-height: 34px; text-align: center; transition: background .3s ease, color .3s ease; }
.faq6-deck .fq1-item.open .fq1-no { background: var(--accent); color: #fff; }
.faq6-deck .fq1-q::after { content: "+"; flex: none; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; margin-left: auto; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; line-height: 1; transition: background .3s ease, transform .3s ease; }
.faq6-deck .fq1-item.open .fq1-q::after { background: var(--accent); transform: rotate(45deg); }
.faq6-deck .fq1-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq6-deck .fq1-item.open .fq1-a { max-height: 480px; }
.faq6-deck .fq1-a-in { margin: 0 22px; padding: 14px 0 20px 48px; border-top: 1px solid rgba(0, 0, 0, .07); font-size: 14px; line-height: 1.9; color: var(--gray); }
@media (max-width: 768px) {
    .faq6-deck { gap: 12px; }
    .faq6-deck .fq1-item { border-radius: 14px; }
    .faq6-deck .fq1-q { gap: 10px; padding: 15px 16px; font-size: 15px; }
    .faq6-deck .fq1-no { width: 28px; height: 28px; border-radius: 9px; font-size: 12px; line-height: 28px; }
    .faq6-deck .fq1-q::after { width: 24px; height: 24px; font-size: 16px; }
    .faq6-deck .fq1-item.open .fq1-a { max-height: 640px; }
    .faq6-deck .fq1-a-in { margin: 0 16px; padding: 12px 0 16px; font-size: 13px; }
}
.cm8-flow { position:relative; padding-left:6px }
.cm8-flow::before { content:""; position:absolute; top:8px; bottom:8px; left:32px; width:2px; background:linear-gradient(180deg,var(--accent),rgba(15,23,42,.06)) }
.cm8-flow .cm1-item { position:relative; padding:0 0 30px 84px; min-height:64px }
.cm8-flow .cm1-item:last-child { padding-bottom:0 }
.cm8-flow .cm1-head { position:absolute; left:0; top:0; display:flex; flex-direction:column; align-items:center; gap:6px; width:64px }
.cm8-flow .cm1-av { width:46px; height:46px; border-radius:50%; object-fit:cover; background:var(--light); border:3px solid #fff; box-shadow:0 4px 12px rgba(15,23,42,.16) }
.cm8-flow .cm1-who { display:flex; flex-direction:column; align-items:center; gap:1px; width:100% }
.cm8-flow .cm1-name { font-size:11px; font-weight:600; line-height:1.35; text-align:center; color:var(--primary); word-break:break-all }
.cm8-flow .cm1-date { font-size:11px; color:var(--gray); white-space:nowrap }
.cm8-flow .cm1-text { margin:0; padding:16px 20px; background:#fff; border:1px solid #e8ecf2; border-left:3px solid var(--accent); border-radius:0 var(--radius) var(--radius) 0; box-shadow:var(--shadow); font-size:14px; line-height:1.85; color:#4b5563 }
.cm8-flow .cm1-item:nth-child(even) .cm1-text { border-left-color:var(--secondary) }
.cm8-flow .cm1-idx { display:none }
.cm8-flow .cm1-initial { position:absolute; right:16px; bottom:10px; font-size:44px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm8-flow { padding-left:0 }
    .cm8-flow::before { left:22px }
    .cm8-flow .cm1-item { padding:0 0 22px 58px }
    .cm8-flow .cm1-head { width:46px; gap:4px }
    .cm8-flow .cm1-av { width:36px; height:36px; border-width:2px }
    .cm8-flow .cm1-name { font-size:10px }
    .cm8-flow .cm1-date { font-size:10px }
    .cm8-flow .cm1-text { padding:12px 14px; font-size:13px; line-height:1.75 }
    .cm8-flow .cm1-initial { font-size:30px; right:12px; bottom:8px }
}
.ft7-foot { background: var(--primary); padding: 54px 0; }
.ft7-card { display: grid; grid-template-columns: 1.25fr 1fr; align-items: center; gap: 30px; padding: 32px 36px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.ft7-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); text-decoration: none; }
.ft7-ico { font-size: 22px; line-height: 1; }
.ft7-kw { font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.ft7-kw em { font-style: normal; color: var(--accent); }
.ft7-brand { font-size: 11px; font-weight: 500; color: var(--gray); padding-left: 8px; border-left: 1px solid rgba(0,0,0,0.14); white-space: nowrap; }
.ft7-line { margin-top: 12px; font-size: 13px; line-height: 1.9; color: #667085; }
.ft7-menu { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 14px; list-style: none; }
.ft7-menu a { font-size: 12px; color: var(--primary); text-decoration: none; }
.ft7-menu a:hover { color: var(--accent); }
.ft7-info { list-style: none; padding-left: 30px; border-left: 1px dashed rgba(0,0,0,0.12); }
.ft7-info li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 12px; color: #8892a0; }
.ft7-info b { font-weight: 700; color: var(--primary); }
.ft7-dom { font-weight: 700; letter-spacing: 1px; color: var(--accent); }
@media (max-width:768px) {
    .ft7-foot { padding: 34px 0; }
    .ft7-card { grid-template-columns: 1fr; gap: 20px; padding: 24px 22px; }
    .ft7-ico { font-size: 19px; }
    .ft7-kw { font-size: 17px; }
    .ft7-brand { font-size: 10px; }
    .ft7-line { margin-top: 9px; font-size: 12px; }
    .ft7-menu { margin-top: 11px; gap: 6px 13px; }
    .ft7-menu a { font-size: 11px; }
    .ft7-info { padding-left: 0; padding-top: 14px; border-left: none; border-top: 1px dashed rgba(0,0,0,0.12); }
    .ft7-info li { padding: 6px 0; font-size: 11px; }
}


@media (max-width: 768px) {
    .sec { padding: 50px 0; }
    .sec-title { font-size: 26px; }
}
