/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a2d4a;
    --secondary: #27456b;
    --accent: #4da6ff;
    --gold: #ffe066;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 8px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: Georgia, "Songti SC", "SimSun", "Times New Roman", 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); }

.nv10-bar { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 2px solid var(--primary); }
.nv10-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; min-height: 74px; }
.nv10-logo { justify-self: start; display: flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.nv10-ico { font-size: 23px; line-height: 1; }
.nv10-kw { font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.nv10-kw em { font-style: normal; color: var(--accent); }
.nv10-brand { font-size: 11px; color: var(--gray); }
.nv10-nav { justify-self: center; }
.nv10-menu { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2px; list-style: none; }
.nv10-menu a { display: block; padding: 8px 13px; font-size: 14px; color: #3f3f3f; border-radius: var(--radius); text-decoration: none; }
.nv10-menu a:hover { color: #fff; background: var(--primary); }
.nv10-cta { justify-self: end; display: inline-block; padding: 9px 20px; font-size: 13px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 999px; text-decoration: none; white-space: nowrap; box-shadow: var(--shadow); }
.nv10-cta:hover { background: var(--primary); }
@media (max-width:768px) {
    .nv10-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; padding: 10px 0; }
    .nv10-logo { justify-self: auto; }
    .nv10-ico { font-size: 19px; }
    .nv10-kw { font-size: 18px; }
    .nv10-brand { font-size: 10px; }
    .nv10-nav { order: 3; width: 100%; }
    .nv10-menu { justify-content: center; width: 100%; }
    .nv10-menu a { padding: 6px 10px; font-size: 13px; }
    .nv10-cta { padding: 7px 15px; font-size: 12px; }
}
.hr6-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding-top: 96px;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}
.hr6-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
    -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0%, transparent 100%);
}
.hr6-glow {
    position: absolute;
    top: -130px;
    left: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
    opacity: 0.22;
}
.hr6-top {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}
.hr6-title {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: 62px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 2px;
}
.hr6-title em {
    color: var(--gold);
    font-style: normal;
}
.hr6-desc {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.85;
}
.hr6-btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: var(--radius);
    background: var(--gold);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr6-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}
.hr6-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.32);
}
.hr6-bar-in {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.hr6-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-left: 1px solid rgba(255,255,255,0.14);
}
.hr6-cell:first-child {
    border-left: none;
}
.hr6-ico {
    font-size: 22px;
    line-height: 1;
}
.hr6-cell strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.hr6-cell small {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
}
.hr6-cell a {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
}
.hr6-cell a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .hr6-hero {
        min-height: 480px;
        padding-top: 62px;
    }
    .hr6-bg {
        width: 70%;
        opacity: 0.18;
    }
    .hr6-top {
        padding-bottom: 40px;
    }
    .hr6-title {
        margin-bottom: 14px;
        font-size: 30px;
        letter-spacing: 1px;
    }
    .hr6-desc {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr6-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    .hr6-bar-in {
        grid-template-columns: 1fr;
    }
    .hr6-cell {
        padding: 14px 20px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hr6-cell:first-child {
        border-top: none;
    }
    .hr6-cell strong {
        font-size: 15px;
    }
}
.it7-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 0; align-items: stretch; }
.it7-data { display: flex; flex-direction: column; justify-content: center; padding-right: 44px; border-right: 1px solid rgba(0, 0, 0, .08); }
.it7-data .it1-stat { display: block; padding: 22px 0; background: none; border: 0; border-left: 0; border-radius: 0; border-bottom: 1px dashed rgba(0, 0, 0, .14); }
.it7-data .it1-stat:first-child { padding-top: 0; }
.it7-data .it1-stat:last-child { padding-bottom: 0; border-bottom: 0; }
.it7-data .it1-num { display: block; font-size: 44px; line-height: 1.05; font-weight: 800; color: var(--accent); }
.it7-data .it1-lbl { display: block; margin-top: 6px; font-size: 13px; color: #666; }
.it7-text { padding-left: 46px; }
.it7-text .sec-sub { color: #666; max-width: none; margin-bottom: 20px; }
.it7-text p { color: #555; line-height: 1.95; font-size: 15px; margin-bottom: 14px; }
.it7-text p:last-child { margin-bottom: 0; }
.it7-text p strong { color: var(--primary); }
@media (max-width: 768px) {
    .it7-wrap { grid-template-columns: 1fr; }
    .it7-data { flex-direction: row; flex-wrap: wrap; padding-right: 0; padding-bottom: 22px; border-right: 0; border-bottom: 1px solid rgba(0, 0, 0, .08); }
    .it7-data .it1-stat { flex: 1 1 30%; padding: 0; border-bottom: 0; }
    .it7-data .it1-num { font-size: 26px; }
    .it7-text { padding-left: 0; padding-top: 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 }
}
.ad4-big{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 42px}
.ad4-big > .ad1-item{padding-left:24px;border-left:3px solid var(--accent);background:none;border-radius:0;box-shadow:none}
.ad4-big .ad1-toggle{display:none}
.ad4-big .ad1-num{display:none}
.ad4-big .ad1-label{display:inline}
.ad4-big .ad1-icon{font-size:28px;line-height:1;margin-bottom:16px}
.ad4-big .ad1-title{font-size:27px;font-weight:800;color:var(--primary);line-height:1.3;margin:0 0 12px;letter-spacing:-.5px}
.ad4-big .ad1-desc{font-size:14px;line-height:1.85;color:#666;margin:0}
@media (max-width:768px){
  .ad4-big{grid-template-columns:1fr;gap:26px}
  .ad4-big > .ad1-item{padding-left:16px}
  .ad4-big .ad1-icon{font-size:22px;margin-bottom:10px}
  .ad4-big .ad1-title{font-size:21px;margin-bottom:8px}
  .ad4-big .ad1-desc{font-size:13px;line-height:1.75}
}
.nw2-timeline { position:relative; padding-left:30px }
.nw2-timeline::before { content:""; position:absolute; left:9px; top:8px; bottom:8px; width:2px; background:linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%) }
.nw2-timeline .nw1-item { position:relative; display:grid; grid-template-columns:104px minmax(0,1fr); align-items:center; column-gap:18px; margin-bottom:16px; padding:18px 20px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; text-decoration:none; transition:transform .3s ease, box-shadow .3s ease }
.nw2-timeline .nw1-item:last-child { margin-bottom:0 }
.nw2-timeline .nw1-item::before { content:""; position:absolute; left:-27px; top:50%; width:14px; height:14px; margin-top:-7px; box-sizing:border-box; border:3px solid #fff; border-radius:50%; background:var(--primary); box-shadow:0 0 0 2px var(--accent) }
.nw2-timeline .nw1-item:hover { transform:translateX(6px); box-shadow:0 16px 32px rgba(15,23,42,.14) }
.nw2-timeline .nw1-date { grid-column:1; grid-row:1; justify-self:start; padding:4px 12px; border-radius:999px; background:var(--light); color:var(--secondary); font-size:12px; line-height:1.6; letter-spacing:.5px; transition:background .3s ease, color .3s ease }
.nw2-timeline .nw1-title { grid-column:2; grid-row:1; min-width:0; font-size:17px; line-height:1.5; font-weight:600; color:var(--primary); transition:color .3s ease }
.nw2-timeline .nw1-idx { position:absolute; right:16px; bottom:4px; font-size:40px; font-weight:800; line-height:1; color:rgba(15,23,42,.05) }
.nw2-timeline .nw1-item:hover .nw1-date { background:var(--accent); color:#fff }
.nw2-timeline .nw1-item:hover .nw1-title { color:var(--accent) }
@media (max-width:768px) {
    .nw2-timeline { padding-left:22px }
    .nw2-timeline::before { left:6px }
    .nw2-timeline .nw1-item { grid-template-columns:minmax(0,1fr); row-gap:8px; column-gap:0; margin-bottom:12px; padding:14px 15px }
    .nw2-timeline .nw1-item::before { left:-21px; top:22px; margin-top:0; width:12px; height:12px }
    .nw2-timeline .nw1-date { grid-column:1; grid-row:1; font-size:11px; padding:3px 10px }
    .nw2-timeline .nw1-title { grid-column:1; grid-row:2; font-size:15px }
    .nw2-timeline .nw1-idx { font-size:28px; right:12px }
}
.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; }
}
.cm3-masonry { column-count:3; column-gap:22px }
.cm3-masonry .cm1-item { position:relative; overflow:hidden; break-inside:avoid; -webkit-column-break-inside:avoid; page-break-inside:avoid; display:block; margin:0 0 22px; padding:18px 18px 18px 22px; background:#fff; border:1px solid #e8ecf2; border-left:4px solid var(--accent); border-radius:var(--radius); box-shadow:var(--shadow); transition:box-shadow .3s ease, border-color .3s ease }
.cm3-masonry .cm1-item:hover { box-shadow:0 16px 32px rgba(15,23,42,.14) }
.cm3-masonry .cm1-item:nth-child(3n+2) { border-left-color:var(--secondary) }
.cm3-masonry .cm1-item:nth-child(3n) { border-left-color:var(--gold) }
.cm3-masonry .cm1-head { display:flex; align-items:center; gap:10px }
.cm3-masonry .cm1-av { flex:none; width:40px; height:40px; border-radius:12px; object-fit:cover; background:var(--light) }
.cm3-masonry .cm1-who { display:flex; flex-direction:column; gap:2px; min-width:0 }
.cm3-masonry .cm1-name { font-size:14px; font-weight:600; color:var(--primary) }
.cm3-masonry .cm1-date { font-size:12px; color:var(--gray) }
.cm3-masonry .cm1-text { margin:12px 0 0; font-size:13px; line-height:1.85; color:#4b5563 }
.cm3-masonry .cm1-idx { position:absolute; top:16px; right:16px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm3-masonry .cm1-initial { position:absolute; right:14px; bottom:6px; font-size:46px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm3-masonry { column-count:2; column-gap:12px }
    .cm3-masonry .cm1-item { margin-bottom:12px; padding:14px 14px 14px 16px }
    .cm3-masonry .cm1-av { width:34px; height:34px; border-radius:10px }
    .cm3-masonry .cm1-name { font-size:13px }
    .cm3-masonry .cm1-text { margin-top:10px; font-size:12px; line-height:1.75 }
    .cm3-masonry .cm1-idx { top:12px; right:12px; font-size:11px }
    .cm3-masonry .cm1-initial { font-size:34px }
}
.ft3-foot { background: var(--light); border-top: 1px solid rgba(0,0,0,0.08); padding: 46px 0 30px; text-align: center; }
.ft3-logo { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; }
.ft3-ico { font-size: 21px; line-height: 1; }
.ft3-kw { font-size: 19px; font-weight: 800; letter-spacing: 2px; }
.ft3-kw em { font-style: normal; color: var(--accent); }
.ft3-brand { font-size: 11px; font-weight: 500; color: var(--gray); padding-left: 8px; border-left: 1px solid rgba(0,0,0,0.14); }
.ft3-line { max-width: 560px; margin: 15px auto 0; font-size: 13px; line-height: 1.95; color: #6b6b6b; }
.ft3-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; list-style: none; }
.ft3-tags li { padding: 4px 13px; font-size: 12px; color: var(--primary); background: rgba(0,0,0,0.05); border-radius: 999px; }
.ft3-rule { width: 54px; height: 2px; margin: 22px auto 16px; background: var(--accent); }
.ft3-copy { font-size: 12px; color: var(--gray); }
.ft3-copy b { font-weight: 600; color: var(--primary); letter-spacing: 1px; }
@media (max-width:768px) {
    .ft3-foot { padding: 32px 0 22px; }
    .ft3-ico { font-size: 18px; }
    .ft3-kw { font-size: 16px; letter-spacing: 1px; }
    .ft3-brand { font-size: 10px; }
    .ft3-line { margin-top: 11px; font-size: 12px; }
    .ft3-tags { margin-top: 13px; gap: 6px; }
    .ft3-tags li { padding: 3px 10px; font-size: 11px; }
    .ft3-rule { margin: 16px auto 12px; }
    .ft3-copy { font-size: 11px; }
}


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