/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a2b3d;
    --secondary: #24405a;
    --accent: #ff9f43;
    --gold: #ffeaa7;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, 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); }

.nv7-bar { position: relative; z-index: 920; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.1); }
.nv7-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 98px; }
.nv7-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 20px 8px; background: var(--light); border-radius: var(--radius); color: var(--primary); text-decoration: none; flex-shrink: 0; }
.nv7-ico { font-size: 27px; line-height: 1; }
.nv7-kw { font-size: 18px; font-weight: 800; letter-spacing: 1px; white-space: nowrap; }
.nv7-kw em { font-style: normal; color: var(--accent); }
.nv7-brand { font-size: 11px; color: var(--gray); white-space: nowrap; }
.nv7-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; list-style: none; }
.nv7-menu li + li { border-left: 1px solid rgba(0,0,0,0.09); }
.nv7-menu a { display: block; padding: 10px 17px; font-size: 14px; color: #454545; text-decoration: none; }
.nv7-menu a:hover { color: var(--accent); }
@media (max-width:768px) {
    .nv7-inner { flex-direction: column; justify-content: center; gap: 10px; min-height: 0; padding: 12px 0; }
    .nv7-logo { flex-direction: row; align-items: center; gap: 8px; padding: 7px 14px; }
    .nv7-ico { font-size: 20px; }
    .nv7-kw { font-size: 17px; }
    .nv7-brand { font-size: 10px; }
    .nv7-menu { justify-content: center; }
    .nv7-menu li + li { border-left: none; }
    .nv7-menu a { padding: 6px 10px; font-size: 13px; }
}
.hr11-hero {
    position: relative;
    padding: 76px 0 84px;
    background: #fff;
    overflow: hidden;
}
.hr11-hero::after {
    content: '';
    position: absolute;
    top: -130px;
    right: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--light);
}
.hr11-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas:
        'eyebrow eyebrow'
        'big big'
        'shot tail';
    gap: 24px 40px;
    align-items: end;
}
.hr11-eyebrow {
    grid-area: eyebrow;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 5px;
}
.hr11-eyebrow span {
    color: var(--accent);
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
}
.hr11-big {
    grid-area: big;
    margin: 4px 0 8px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--light);
    color: var(--primary);
    font-family: var(--font);
    font-size: 116px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 3px;
}
.hr11-shot {
    grid-area: shot;
    margin: 0;
}
.hr11-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hr11-tail {
    grid-area: tail;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    text-align: right;
}
.hr11-desc {
    max-width: 440px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}
.hr11-btn {
    padding: 13px 36px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr11-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .hr11-hero {
        padding: 46px 0 50px;
    }
    .hr11-hero::after {
        width: 190px;
        height: 190px;
        top: -80px;
        right: -80px;
    }
    .hr11-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            'eyebrow'
            'big'
            'shot'
            'tail';
        gap: 16px;
    }
    .hr11-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
    }
    .hr11-big {
        margin: 0;
        padding-bottom: 14px;
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: 0;
    }
    .hr11-shot {
        max-width: 150px;
    }
    .hr11-tail {
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }
    .hr11-desc {
        font-size: 14px;
        line-height: 1.72;
    }
    .hr11-btn {
        padding: 11px 26px;
        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; }
}
.wk4-masonry { column-count:3; column-gap:22px }
.wk4-masonry .wk1-item { break-inside:avoid; -webkit-column-break-inside:avoid; page-break-inside:avoid; display:block; margin:0 0 22px; background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow) }
.wk4-masonry .wk1-item:nth-child(3n+1) .wk1-thumb { aspect-ratio:1/1 }
.wk4-masonry .wk1-item:nth-child(3n+2) .wk1-thumb { aspect-ratio:16/9 }
.wk4-masonry .wk1-item:nth-child(3n) .wk1-thumb { aspect-ratio:4/5 }
.wk4-masonry .wk1-thumb { position:relative; overflow:hidden; background:var(--light) }
.wk4-masonry .wk1-thumb img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .5s ease }
.wk4-masonry .wk1-item:hover .wk1-thumb img { transform:scale(1.06) }
.wk4-masonry .wk1-badge { position:absolute; top:10px; left:10px; padding:3px 10px; border-radius:var(--radius); background:var(--primary); color:#fff; font-size:12px }
.wk4-masonry .wk1-idx { position:absolute; right:12px; bottom:8px; color:#fff; font-size:26px; font-weight:700; line-height:1; opacity:.6 }
.wk4-masonry .wk1-info { padding:14px 16px 16px }
.wk4-masonry .wk1-head { display:flex; align-items:baseline; justify-content:space-between; gap:8px }
.wk4-masonry .wk1-title { margin:0; font-size:16px; line-height:1.45; color:var(--primary) }
.wk4-masonry .wk1-tag { flex:none; color:var(--accent); font-size:12px }
.wk4-masonry .wk1-meta { margin-top:6px; font-size:12px; color:var(--gray) }
.wk4-masonry .wk1-desc { margin:8px 0 12px; font-size:13px; line-height:1.7; color:var(--gray) }
.wk4-masonry .wk1-btn { width:100%; padding:8px 0; border:1px dashed var(--accent); border-radius:var(--radius); background:transparent; color:var(--accent); font-size:13px; cursor:pointer; transition:background .25s ease, color .25s ease }
.wk4-masonry .wk1-btn:hover { background:var(--accent); color:#fff }
@media (max-width:768px) {
    .wk4-masonry { column-count:2; column-gap:12px }
    .wk4-masonry .wk1-item { margin-bottom:12px }
    .wk4-masonry .wk1-item:nth-child(3n) .wk1-thumb { aspect-ratio:1/1 }
    .wk4-masonry .wk1-item:nth-child(3n+2) .wk1-thumb { aspect-ratio:1/1 }
    .wk4-masonry .wk1-title { font-size:14px }
    .wk4-masonry .wk1-desc { display:none }
    .wk4-masonry .wk1-btn { padding:7px 0; font-size:12px }
}
.ad3-timeline{position:relative;padding-left:52px;max-width:900px}
.ad3-timeline::before{content:"";position:absolute;left:15px;top:12px;bottom:12px;width:2px;background:linear-gradient(180deg,var(--primary),var(--accent))}
.ad3-timeline > .ad1-item{position:relative;display:grid;grid-template-columns:34px 1fr;column-gap:14px;row-gap:6px;padding-bottom:32px;background:none;border:0;box-shadow:none}
.ad3-timeline > .ad1-item:last-child{padding-bottom:0}
.ad3-timeline .ad1-toggle{display:none}
.ad3-timeline .ad1-num{position:absolute;left:-51px;top:2px;width:30px;height:30px;border-radius:50%;background:var(--primary);color:#fff;font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;line-height:1}
.ad3-timeline .ad1-icon{grid-column:1;grid-row:1;align-self:center;text-align:center;font-size:24px;line-height:1;color:var(--accent)}
.ad3-timeline .ad1-label{display:inline}
.ad3-timeline .ad1-title{grid-column:2;grid-row:1;font-size:18px;font-weight:700;color:var(--primary);margin:0;line-height:1.4}
.ad3-timeline .ad1-desc{grid-column:2;grid-row:2;font-size:14px;line-height:1.8;color:#666;margin:0}
@media (max-width:768px){
  .ad3-timeline{padding-left:40px}
  .ad3-timeline::before{left:11px;top:6px;bottom:6px}
  .ad3-timeline > .ad1-item{grid-template-columns:1fr;row-gap:4px;padding-bottom:26px}
  .ad3-timeline .ad1-num{left:-40px;top:0;width:24px;height:24px;font-size:11px}
  .ad3-timeline .ad1-icon{display:none}
  .ad3-timeline .ad1-title{grid-column:1;font-size:16px}
  .ad3-timeline .ad1-desc{grid-column:1;font-size:13px}
}
.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 }
}
.fq3-tabs { position:relative; display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); grid-template-rows:auto auto; column-gap:8px; row-gap:16px }
.fq3-tabs .fq3-r { position:absolute; top:0; left:0; width:1px; height:1px; margin:0; border:0; opacity:0; appearance:none; -webkit-appearance:none }
.fq3-tabs .fq3-hit { position:absolute; top:0; z-index:3; height:56px; cursor:pointer }
.fq3-tabs .fq3-hit:nth-of-type(1) { left:0; width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(2) { left:calc((100% - 32px) / 5 + 8px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(3) { left:calc((200% - 64px) / 5 + 16px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(4) { left:calc((300% - 96px) / 5 + 24px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(5) { left:calc((400% - 128px) / 5 + 32px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq1-item { display:contents }
.fq3-tabs .fq1-q { display:flex; align-items:center; justify-content:center; height:56px; padding:0 10px; overflow:hidden; border:1px solid #e2e8f0; border-radius:var(--radius); background:#fff; font-size:13px; line-height:1.35; font-weight:600; color:var(--primary); text-align:center; transition:background .25s ease, color .25s ease, border-color .25s ease }
.fq3-tabs .fq1-no { display:none }
.fq3-tabs .fq1-item:nth-of-type(1) .fq1-q { grid-column:1; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(2) .fq1-q { grid-column:2; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(3) .fq1-q { grid-column:3; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(4) .fq1-q { grid-column:4; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(5) .fq1-q { grid-column:5; grid-row:1 }
.fq3-tabs .fq1-a { grid-row:2; grid-column:1 / -1; max-height:0; overflow:hidden; opacity:0; transition:max-height .4s ease, opacity .35s ease }
.fq3-tabs .fq1-a-in { padding:20px 24px; border:1px solid #e2e8f0; border-top:2px solid var(--accent); border-radius:var(--radius); background:#fff; font-size:14px; line-height:1.85; color:var(--gray) }
#fq3r1:checked ~ .fq1-item:nth-of-type(1) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r2:checked ~ .fq1-item:nth-of-type(2) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r3:checked ~ .fq1-item:nth-of-type(3) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r4:checked ~ .fq1-item:nth-of-type(4) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r5:checked ~ .fq1-item:nth-of-type(5) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r1:checked ~ .fq1-item:nth-of-type(1) .fq1-a { max-height:600px; opacity:1 }
#fq3r2:checked ~ .fq1-item:nth-of-type(2) .fq1-a { max-height:600px; opacity:1 }
#fq3r3:checked ~ .fq1-item:nth-of-type(3) .fq1-a { max-height:600px; opacity:1 }
#fq3r4:checked ~ .fq1-item:nth-of-type(4) .fq1-a { max-height:600px; opacity:1 }
#fq3r5:checked ~ .fq1-item:nth-of-type(5) .fq1-a { max-height:600px; opacity:1 }
@media (max-width:768px) {
    .fq3-tabs { grid-template-columns:minmax(0,1fr); grid-template-rows:auto auto auto auto auto auto; column-gap:0; row-gap:12px }
    .fq3-tabs .fq1-q { height:48px; justify-content:flex-start; padding:0 14px; font-size:14px; text-align:left }
    .fq3-tabs .fq1-item:nth-of-type(1) .fq1-q { grid-column:1; grid-row:1 }
    .fq3-tabs .fq1-item:nth-of-type(2) .fq1-q { grid-column:1; grid-row:2 }
    .fq3-tabs .fq1-item:nth-of-type(3) .fq1-q { grid-column:1; grid-row:3 }
    .fq3-tabs .fq1-item:nth-of-type(4) .fq1-q { grid-column:1; grid-row:4 }
    .fq3-tabs .fq1-item:nth-of-type(5) .fq1-q { grid-column:1; grid-row:5 }
    .fq3-tabs .fq1-a { grid-column:1; grid-row:6 }
    .fq3-tabs .fq3-hit:nth-of-type(n) { left:0; width:100%; height:48px }
    .fq3-tabs .fq3-hit:nth-of-type(1) { top:0 }
    .fq3-tabs .fq3-hit:nth-of-type(2) { top:60px }
    .fq3-tabs .fq3-hit:nth-of-type(3) { top:120px }
    .fq3-tabs .fq3-hit:nth-of-type(4) { top:180px }
    .fq3-tabs .fq3-hit:nth-of-type(5) { top:240px }
    .fq3-tabs .fq1-a-in { padding:14px 16px; font-size:13px }
}
.cm4-wall { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:26px; text-align:center }
.cm4-wall .cm1-item { position:relative; display:flex; flex-direction:column; align-items:center; padding:26px 18px 22px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); transition:transform .3s ease }
.cm4-wall .cm1-item:hover { transform:translateY(-6px) }
.cm4-wall .cm1-head { display:flex; flex-direction:column; align-items:center; gap:10px }
.cm4-wall .cm1-av { width:76px; height:76px; border-radius:50%; object-fit:cover; border:3px solid var(--light); background:var(--light); box-shadow:0 8px 18px rgba(15,23,42,.14) }
.cm4-wall .cm1-who { display:flex; flex-direction:column; align-items:center; gap:4px; min-width:0 }
.cm4-wall .cm1-name { font-size:15px; font-weight:700; color:var(--primary) }
.cm4-wall .cm1-date { font-size:12px; color:var(--gray) }
.cm4-wall .cm1-text { margin:12px 0 0; font-size:13px; line-height:1.8; color:#4b5563 }
.cm4-wall .cm1-idx { position:absolute; top:14px; left:16px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm4-wall .cm1-initial { position:absolute; top:10px; right:14px; font-size:40px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm4-wall { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px }
    .cm4-wall .cm1-item { padding:18px 12px 16px }
    .cm4-wall .cm1-item:hover { transform:none }
    .cm4-wall .cm1-av { width:56px; height:56px; border-width:2px }
    .cm4-wall .cm1-name { font-size:14px }
    .cm4-wall .cm1-text { margin-top:10px; font-size:12px; line-height:1.75 }
    .cm4-wall .cm1-idx { top:10px; left:12px; font-size:11px }
    .cm4-wall .cm1-initial { font-size:28px; top:8px; right:10px }
}
.ft6-foot { background: linear-gradient(135deg, var(--primary) 0%, #0b0f16 100%); padding: 52px 0 34px; }
.ft6-logo { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px; color: #fff; text-decoration: none; }
.ft6-ico { font-size: 30px; line-height: 1; }
.ft6-kw { font-size: 56px; font-weight: 900; line-height: 1.08; letter-spacing: 2px; }
.ft6-kw em { font-style: normal; color: var(--gold); }
.ft6-brand { font-size: 12px; font-weight: 500; letter-spacing: 3px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.ft6-rule { height: 1px; margin: 26px 0 20px; background: rgba(255,255,255,0.14); }
.ft6-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.ft6-line { max-width: 420px; font-size: 12px; line-height: 1.85; color: rgba(255,255,255,0.55); }
.ft6-nav { flex-shrink: 0; }
.ft6-menu { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; }
.ft6-menu a { font-size: 12px; color: rgba(255,255,255,0.62); text-decoration: none; }
.ft6-menu a:hover { color: var(--gold); }
.ft6-copy { flex-shrink: 0; font-size: 12px; color: rgba(255,255,255,0.42); }
.ft6-dom { font-weight: 700; letter-spacing: 1px; color: var(--gold); }
@media (max-width:768px) {
    .ft6-foot { padding: 34px 0 24px; }
    .ft6-logo { gap: 4px 10px; }
    .ft6-ico { font-size: 20px; }
    .ft6-kw { font-size: 30px; letter-spacing: 1px; }
    .ft6-brand { font-size: 10px; letter-spacing: 2px; }
    .ft6-rule { margin: 18px 0 14px; }
    .ft6-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ft6-line { font-size: 11px; }
    .ft6-menu { gap: 6px 14px; }
    .ft6-menu a { font-size: 11px; }
    .ft6-copy { font-size: 11px; }
    .ft6-dom { font-size: 11px; }
}


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