/* =================================================================
   Dr.Call Man — 정통 한국 회사 홈페이지 스타일 (그누보드 룩)
   각진 박스 · 얇은 회색 테두리 · 진한 남색 포인트 · 높은 정보밀도
   ================================================================= */

:root {
    --navy:        #11366b;   /* 메인 진한 남색 */
    --navy-dark:   #0c2a55;
    --navy-light:  #1d4e9c;
    --point:       #0a72c4;   /* 포인트 블루 */
    --point2:      #00a0b0;   /* 보조 청록 */
    --red:         #c0392b;   /* 강조/필수 */
    --ink:         #1a1a1a;
    --t1:          #222;
    --t2:          #555;
    --t3:          #888;
    --line:        #dcdfe4;   /* 테두리 회색 */
    --line2:       #e8eaed;
    --bg:          #ffffff;
    --bg2:         #f5f6f8;   /* 옅은 회색 배경 */
    --bg3:         #eef1f5;
    --maxw:        1320px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:'Pretendard','Malgun Gothic','맑은 고딕','Noto Sans KR',sans-serif;
    font-size:15px; line-height:1.6; color:var(--t1); background:var(--bg);
    -webkit-font-smoothing:antialiased;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

.container { max-width:var(--maxw); margin:0 auto; padding:0 16px; }

/* ===== 상단 유틸 바 ===== */
.topbar { background:var(--navy-dark); color:#cdd6e4; font-size:12.5px; }
.topbar .inner { max-width:var(--maxw); margin:0 auto; padding:0 16px; height:34px; display:flex; align-items:center; justify-content:space-between; }
.topbar a { color:#cdd6e4; }
.topbar a:hover { color:#fff; }
.topbar .util a { margin-left:16px; }
.topbar .util i { margin-right:4px; }

/* ===== 헤더 / GNB ===== */
.site-header { position:sticky; top:0; z-index:1000; background:#fff; border-bottom:2px solid var(--navy); }
.hgnb { display:flex; align-items:center; justify-content:space-between; height:80px; }
.brand { display:flex; align-items:center; gap:11px; }
.brand .mk { width:44px; height:44px; display:grid; place-items:center; flex-shrink:0; }
.brand .mk svg { width:44px; height:44px; }
.brand .bt { font-size:1.5rem; font-weight:900; color:var(--navy); letter-spacing:-.02em; white-space:nowrap; line-height:1.15; }
.brand > span:last-child { display:flex; flex-direction:column; }
.brand .bs { display:block; font-size:11px; font-weight:600; color:var(--t3); letter-spacing:.02em; }

/* 대메뉴 */
.gnb { display:flex; height:80px; }
.gnb > li { position:relative; }
.gnb > li > a {
    display:flex; align-items:center; height:80px; padding:0 19px;
    font-size:16px; font-weight:700; color:var(--t1); letter-spacing:-.02em; white-space:nowrap;
}
.gnb > li:hover > a { color:var(--point); }
.gnb > li > a::after { content:''; position:absolute; left:19px; right:19px; bottom:0; height:3px; background:var(--point); transform:scaleX(0); transition:transform .2s; }
.gnb > li:hover > a::after { transform:scaleX(1); }
/* 드롭다운 */
.gnb .sub {
    position:absolute; top:80px; left:0; min-width:200px; background:#fff;
    border:1px solid var(--line); border-top:2px solid var(--point);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    opacity:0; visibility:hidden; transform:translateY(6px); transition:all .18s;
}
.gnb > li:hover .sub { opacity:1; visibility:visible; transform:translateY(0); }
.gnb .sub a { display:block; padding:13px 22px; font-size:14.5px; color:var(--t2); border-bottom:1px solid var(--line2); }
.gnb .sub a:last-child { border-bottom:none; }
.gnb .sub a:hover { background:var(--bg2); color:var(--point); padding-left:27px; }

.h-tel { display:flex; flex-direction:column; align-items:flex-end; }
.h-tel .lbl { font-size:12px; color:var(--t3); }
.h-tel .num { font-size:1.5rem; font-weight:900; color:var(--navy); letter-spacing:-.02em; }

.nav-toggle { display:none; font-size:1.8rem; color:var(--navy); width:46px; height:46px; }

/* ===== 메인 비주얼 ===== */
.mainvisual { position:relative; background:linear-gradient(120deg,#0c2a55 0%,#11366b 55%,#1d4e9c 100%); color:#fff; overflow:hidden; }
.mainvisual::before { content:''; position:absolute; right:-100px; top:-80px; width:520px; height:520px; border:60px solid rgba(255,255,255,.04); border-radius:50%; }
.mainvisual::after { content:''; position:absolute; right:120px; bottom:-160px; width:360px; height:360px; border:40px solid rgba(255,255,255,.05); border-radius:50%; }
.mv-inner { max-width:var(--maxw); margin:0 auto; padding:74px 16px 78px; position:relative; display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center; }
.mv-cap { display:inline-block; font-size:14px; font-weight:700; letter-spacing:.04em; color:#9ec3ef; border-left:3px solid var(--point2); padding-left:11px; margin-bottom:18px; }
.mv-tit { font-size:2.7rem; font-weight:900; line-height:1.3; letter-spacing:-.03em; margin-bottom:18px; }
.mv-tit .hl { color:#5fd0dc; }
.mv-desc { font-size:1.12rem; color:#d3ddec; line-height:1.7; margin-bottom:28px; }
.mv-keys { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px; }
.mv-keys span { font-size:13.5px; font-weight:600; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); padding:7px 14px; }
.mv-btns { display:flex; gap:10px; flex-wrap:wrap; }

/* 메인 비주얼 우측 미니현황 */
.mv-panel { background:#fff; color:var(--t1); border:1px solid rgba(255,255,255,.3); box-shadow:0 16px 40px rgba(0,0,0,.25); }
.mv-panel .ph { background:var(--navy); color:#fff; padding:13px 18px; display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:14.5px; }
.mv-panel .ph .live { font-size:12px; color:#7ee0a0; display:flex; align-items:center; gap:5px; }
.mv-panel .ph .live::before { content:''; width:7px; height:7px; border-radius:50%; background:#42d978; }
.mv-panel .pr { display:flex; align-items:center; gap:12px; padding:13px 18px; border-bottom:1px solid var(--line2); }
.mv-panel .pr .qn { width:34px; height:34px; background:var(--bg3); color:var(--navy); font-weight:800; display:grid; place-items:center; }
.mv-panel .pr .nm { font-weight:700; }
.mv-panel .pr .rm { font-size:12.5px; color:var(--t3); }
.mv-panel .pr .badge { margin-left:auto; font-size:12px; font-weight:700; padding:4px 10px; }
.badge.b1 { background:#e7f0fb; color:var(--point); }
.badge.b2 { background:#e6f7ea; color:#1f9d52; }
.badge.b3 { background:var(--bg3); color:var(--t3); }

/* ===== 버튼 ===== */
.btn { display:inline-flex; align-items:center; gap:7px; font-size:15px; font-weight:700; padding:13px 26px; border:1px solid transparent; transition:all .15s; }
.btn-navy { background:var(--navy); color:#fff; }
.btn-navy:hover { background:var(--navy-dark); }
.btn-point { background:var(--point); color:#fff; }
.btn-point:hover { background:#085a9b; }
.btn-line { background:#fff; color:var(--navy); border-color:var(--line); }
.btn-line:hover { border-color:var(--navy); }
.btn-wht { background:#fff; color:var(--navy); }
.btn-wht:hover { background:#eef2f8; }
.btn-oline { background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }
.btn-oline:hover { background:rgba(255,255,255,.12); }
.btn-lg { padding:15px 32px; font-size:16px; }

/* ===== 4분할 바로가기 ===== */
.quicklinks { border-bottom:1px solid var(--line); }
.ql-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.ql-grid > a { display:flex; align-items:center; gap:16px; padding:30px 24px; border-right:1px solid var(--line); transition:background .15s; }
.ql-grid > a:last-child { border-right:none; }
.ql-grid > a:hover { background:var(--bg2); }
.ql-grid .ic { width:54px; height:54px; background:var(--bg3); color:var(--navy); display:grid; place-items:center; font-size:1.6rem; flex-shrink:0; }
.ql-grid:hover .ic, .ql-grid > a:hover .ic { }
.ql-grid > a:hover .ic { background:var(--navy); color:#fff; }
.ql-grid .qt { font-size:16px; font-weight:800; color:var(--t1); }
.ql-grid .qd { font-size:13px; color:var(--t3); margin-top:3px; }

/* ===== 섹션 공통 ===== */
.sec { padding:72px 0; }
.sec.gray { background:var(--bg2); }
.sec.navy { background:var(--navy); }
.sec-head { text-align:center; margin-bottom:44px; }
.sec-head .en { font-size:13px; font-weight:800; letter-spacing:.18em; color:var(--point); text-transform:uppercase; }
.sec-head h2 { font-size:2rem; font-weight:900; color:var(--ink); letter-spacing:-.03em; margin:10px 0 12px; }
.sec-head h2::after { content:''; display:block; width:40px; height:3px; background:var(--point); margin:16px auto 0; }
.sec-head p { font-size:16px; color:var(--t2); }
.sec.navy .sec-head h2 { color:#fff; }
.sec.navy .sec-head p { color:#c5d2e6; }
.sec.navy .sec-head .en { color:#6fb6ec; }

/* ===== 기능 박스 그리드 (각진 박스) ===== */
.boxgrid { display:grid; gap:0; border:1px solid var(--line); border-bottom:none; border-right:none; }
.boxgrid.col3 { grid-template-columns:repeat(3,1fr); }
.boxgrid.col2 { grid-template-columns:repeat(2,1fr); }
.boxgrid.col4 { grid-template-columns:repeat(4,1fr); }
.box { padding:34px 28px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; transition:all .18s; }
.box:hover { background:var(--bg2); }
.box .bic { width:56px; height:56px; background:var(--navy); color:#fff; display:grid; place-items:center; font-size:1.5rem; margin-bottom:18px; }
.box:hover .bic { background:var(--point); }
.box h3 { font-size:18px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.box p { font-size:14.5px; color:var(--t2); line-height:1.65; }
.box .blist { margin-top:14px; padding-top:14px; border-top:1px dashed var(--line); }
.box .blist li { font-size:13.5px; color:var(--t2); padding:3px 0 3px 16px; position:relative; }
.box .blist li::before { content:''; position:absolute; left:0; top:10px; width:5px; height:5px; background:var(--point); }

/* ===== 표 형식 비교 ===== */
.tbl { width:100%; border-collapse:collapse; border-top:2px solid var(--navy); }
.tbl th, .tbl td { border:1px solid var(--line); padding:15px 18px; font-size:14.5px; text-align:center; }
.tbl thead th { background:var(--navy); color:#fff; font-weight:700; }
.tbl thead th.hl { background:var(--point); }
.tbl tbody th { background:var(--bg2); font-weight:700; color:var(--t1); text-align:left; }
.tbl td.old { color:var(--t3); }
.tbl td.new { color:var(--ink); font-weight:600; background:#f4f9ff; }
.tbl td.new i { color:#1f9d52; margin-right:5px; }
.tbl td.old i { color:#c0392b; margin-right:5px; }

/* ===== 숫자 통계 ===== */
.numgrid { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); background:#fff; }
.numgrid .n { text-align:center; padding:40px 16px; border-right:1px solid var(--line); }
.numgrid .n:last-child { border-right:none; }
.numgrid .big { font-size:2.8rem; font-weight:900; color:var(--navy); line-height:1; }
.numgrid .big small { font-size:1.3rem; }
.numgrid .cap { margin-top:12px; font-size:14.5px; color:var(--t2); font-weight:600; }
.sec.navy .numgrid { background:rgba(255,255,255,.04); border-color:rgba(255,255,255,.12); }
.sec.navy .numgrid .n { border-color:rgba(255,255,255,.12); }
.sec.navy .numgrid .big { color:#5fd0dc; }
.sec.navy .numgrid .cap { color:#c5d2e6; }

/* ===== 단계(프로세스) ===== */
.proc { display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.proc .p { position:relative; text-align:center; padding:36px 24px; border:1px solid var(--line); border-left:none; background:#fff; }
.proc .p:first-child { border-left:1px solid var(--line); }
.proc .p .pn { width:50px; height:50px; border-radius:50%; background:var(--navy); color:#fff; font-weight:900; font-size:18px; display:grid; place-items:center; margin:0 auto 18px; }
.proc .p h3 { font-size:17px; font-weight:800; color:var(--ink); margin-bottom:9px; }
.proc .p p { font-size:14px; color:var(--t2); }

/* ===== 페이지 제목(서브) ===== */
.subvisual { background:var(--navy) url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="40" height="40"%3E%3Cpath d="M0 40L40 0" stroke="%23ffffff" stroke-opacity="0.03" stroke-width="20"/%3E%3C/svg%3E'); color:#fff; }
.subvisual .inner { max-width:var(--maxw); margin:0 auto; padding:54px 16px; text-align:center; }
.subvisual h1 { font-size:2.3rem; font-weight:900; letter-spacing:-.03em; margin-bottom:10px; }
.subvisual p { font-size:16px; color:#c5d2e6; }
/* 위치 경로 */
.locbar { background:var(--bg2); border-bottom:1px solid var(--line); }
.locbar .inner { max-width:var(--maxw); margin:0 auto; padding:0 16px; height:46px; display:flex; align-items:center; font-size:13.5px; color:var(--t3); }
.locbar a:hover { color:var(--point); }
.locbar .sep { margin:0 9px; color:var(--line); }
.locbar .cur { color:var(--t1); font-weight:700; }

/* ===== 사례/대상 (좌이미지+우텍스트형) ===== */
.caselist .ci { display:flex; gap:0; border:1px solid var(--line); margin-bottom:-1px; background:#fff; }
.caselist .ci .cl { width:200px; flex-shrink:0; background:var(--navy); color:#fff; padding:28px 24px; display:flex; flex-direction:column; justify-content:center; }
.caselist .ci .cl i { font-size:1.8rem; margin-bottom:10px; color:#7ec5ec; }
.caselist .ci .cl .t { font-size:18px; font-weight:800; }
.caselist .ci .cr { padding:28px 30px; }
.caselist .ci .cr p { font-size:15px; color:var(--t2); margin-bottom:12px; }
.caselist .ci .cr .tags span { display:inline-block; font-size:13px; color:var(--navy); background:var(--bg3); padding:5px 12px; margin:0 6px 6px 0; }

/* ===== 요금/구성 박스 ===== */
.plans { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.plan { border:1px solid var(--line); background:#fff; }
.plan.best { border:2px solid var(--point); }
.plan .ph { background:var(--bg2); border-bottom:1px solid var(--line); padding:26px; text-align:center; position:relative; }
.plan.best .ph { background:var(--point); color:#fff; }
.plan .ph .pname { font-size:1.4rem; font-weight:900; }
.plan .ph .pfor { font-size:13.5px; color:var(--t3); margin-top:5px; }
.plan.best .ph .pfor { color:#dbeeff; }
.plan .ph .pbest { position:absolute; top:0; left:0; background:var(--red); color:#fff; font-size:12px; font-weight:700; padding:4px 12px; }
.plan .pb { padding:26px; }
.plan .pb li { font-size:14.5px; color:var(--t1); padding:9px 0 9px 24px; position:relative; border-bottom:1px dashed var(--line2); }
.plan .pb li:last-child { border-bottom:none; }
.plan .pb li i { position:absolute; left:0; top:11px; color:#1f9d52; }
.plan .pf { padding:0 26px 26px; }

.need { display:inline-block; font-size:12px; font-weight:700; padding:4px 11px; margin-bottom:14px; }
.need.req { background:#fdeceb; color:var(--red); }
.need.opt { background:var(--bg3); color:var(--t3); }
.need.free { background:#e6f7ea; color:#1f9d52; }

/* ===== 신청 폼 ===== */
.formwrap { display:grid; grid-template-columns:1.2fr .8fr; gap:30px; align-items:start; }
.formbox { border:1px solid var(--line); border-top:2px solid var(--navy); background:#fff; padding:32px; }
.formbox h3 { font-size:1.3rem; font-weight:900; color:var(--navy); margin-bottom:6px; }
.formbox .fdesc { font-size:14px; color:var(--t3); margin-bottom:22px; }
.frow { display:flex; border-top:1px solid var(--line2); }
.frow:last-of-type { border-bottom:1px solid var(--line2); }
.frow .fl { width:130px; flex-shrink:0; background:var(--bg2); padding:14px 16px; font-size:14px; font-weight:700; color:var(--t1); display:flex; align-items:center; }
.frow .fl .star { color:var(--red); margin-left:3px; }
.frow .fc { flex:1; padding:9px 12px; }
.frow input, .frow select, .frow textarea { width:100%; padding:10px 12px; border:1px solid var(--line); font-family:inherit; font-size:14.5px; color:var(--t1); }
.frow input:focus, .frow select:focus, .frow textarea:focus { outline:none; border-color:var(--point); }
.frow textarea { resize:vertical; min-height:96px; }
.fnote { font-size:12.5px; color:var(--t3); margin-top:14px; }

.infobox { border:1px solid var(--line); background:#fff; }
.infobox .ih { background:var(--navy); color:#fff; padding:18px 22px; font-size:1.1rem; font-weight:800; }
.infobox .ir { display:flex; gap:14px; padding:18px 22px; border-bottom:1px solid var(--line2); }
.infobox .ir:last-child { border-bottom:none; }
.infobox .ir i { width:38px; height:38px; background:var(--bg3); color:var(--navy); display:grid; place-items:center; font-size:1.1rem; flex-shrink:0; }
.infobox .ir .l { font-size:12.5px; color:var(--t3); }
.infobox .ir .v { font-size:16px; font-weight:800; color:var(--t1); }

/* ===== FAQ ===== */
.faqs { border-top:2px solid var(--navy); }
.faqs .fi { border-bottom:1px solid var(--line); }
.faqs .fq { display:flex; align-items:center; gap:14px; padding:18px 20px; cursor:pointer; font-weight:700; color:var(--t1); font-size:15.5px; }
.faqs .fq:hover { background:var(--bg2); }
.faqs .fq .q { width:26px; height:26px; background:var(--navy); color:#fff; display:grid; place-items:center; font-weight:900; flex-shrink:0; }
.faqs .fq .arr { margin-left:auto; color:var(--t3); transition:transform .2s; }
.faqs .fi.open .fq .arr { transform:rotate(180deg); color:var(--point); }
.faqs .fa { max-height:0; overflow:hidden; transition:max-height .25s; background:var(--bg2); }
.faqs .fi.open .fa { max-height:300px; }
.faqs .fa div { padding:18px 20px 18px 60px; font-size:14.5px; color:var(--t2); line-height:1.7; }

/* ===== 하단 배너 ===== */
.botcta { background:var(--navy); color:#fff; }
.botcta .inner { max-width:var(--maxw); margin:0 auto; padding:44px 16px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.botcta h2 { font-size:1.7rem; font-weight:900; letter-spacing:-.02em; }
.botcta p { color:#c5d2e6; margin-top:7px; }
.botcta .acts { display:flex; gap:10px; }

/* ===== 푸터 ===== */
.site-footer { background:#2b2f36; color:#a8adb6; font-size:13.5px; }
.footer-top { border-bottom:1px solid #3a3f47; }
.footer-top .inner { max-width:var(--maxw); margin:0 auto; padding:0 16px; display:flex; gap:0; }
.footer-top a { padding:16px 22px 16px 0; margin-right:22px; color:#cfd3da; font-weight:600; }
.footer-top a:hover { color:#fff; }
.footer-main { max-width:var(--maxw); margin:0 auto; padding:30px 16px 40px; display:grid; grid-template-columns:1.4fr 1fr; gap:30px; }
.footer-main .fbrand .ft { font-size:1.3rem; font-weight:900; color:#fff; margin-bottom:14px; }
.footer-main .finfo { font-size:13px; line-height:1.9; color:#9499a2; }
.footer-main .finfo span { margin-right:14px; }
.footer-main .finfo b { color:#cfd3da; font-weight:600; }
.footer-main .fcontact { text-align:right; }
.footer-main .fcontact .ftel { font-size:1.9rem; font-weight:900; color:#fff; }
.footer-main .fcontact .fhour { color:#9499a2; margin-top:4px; }
.footer-main .fcontact .fmail { margin-top:10px; }
.footer-copy { border-top:1px solid #3a3f47; }
.footer-copy .inner { max-width:var(--maxw); margin:0 auto; padding:16px; font-size:12.5px; color:#7c818b; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

/* ===== reveal ===== */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s, transform .6s; }
.reveal.in { opacity:1; transform:none; }

/* ===== 롤링 메인 배너 (Swiper) ===== */
.hero-slider { position:relative; }
.hero-slider .swiper-slide { position:relative; overflow:hidden; }
.hb {
    position:relative; min-height:500px; display:flex; align-items:center;
    color:#fff; overflow:hidden;
}
.hb::after { content:''; position:absolute; inset:0; background:rgba(8,24,48,.42); z-index:1; }
.hb .hb-inner { position:relative; z-index:2; max-width:var(--maxw); margin:0 auto; padding:0 30px; width:100%; }
.hb .hb-cap { display:inline-block; font-size:14px; font-weight:700; letter-spacing:.05em; color:#9fd4ff; border-left:3px solid var(--point2); padding-left:12px; margin-bottom:18px; }
.hb .hb-tit { font-size:3rem; font-weight:900; line-height:1.28; letter-spacing:-.03em; margin-bottom:18px; text-shadow:0 2px 16px rgba(0,0,0,.3); }
.hb .hb-tit .hl { color:#5fd0dc; }
.hb .hb-desc { font-size:1.15rem; color:#e6edf6; line-height:1.7; margin-bottom:28px; max-width:620px; text-shadow:0 1px 8px rgba(0,0,0,.3); }
.hb .hb-btns { display:flex; gap:10px; flex-wrap:wrap; }
/* 배경 그라데이션(이미지 대용) */
.hb.s1 { background:linear-gradient(120deg,#0c2a55,#11366b 55%,#1d4e9c); }
.hb.s2 { background:linear-gradient(120deg,#0a2342,#10518a 55%,#0a72c4); }
.hb.s3 { background:linear-gradient(120deg,#0c2f3a,#0c5460 55%,#00a0b0); }
.hb .deco { position:absolute; right:-80px; top:-60px; width:480px; height:480px; border:56px solid rgba(255,255,255,.05); border-radius:50%; z-index:0; }
.hb .deco2 { position:absolute; right:140px; bottom:-150px; width:330px; height:330px; border:38px solid rgba(255,255,255,.06); border-radius:50%; z-index:0; }
/* Swiper 컨트롤 커스텀 */
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { color:#fff; opacity:.7; transition:opacity .2s; }
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover { opacity:1; }
.hero-slider .swiper-button-next::after, .hero-slider .swiper-button-prev::after { font-size:24px; }
.hero-slider .swiper-pagination-bullet { width:11px; height:11px; background:#fff; opacity:.5; }
.hero-slider .swiper-pagination-bullet-active { opacity:1; background:var(--point2); }

/* ===== 이미지/콘텐츠 카드 그리드 (tloghost 스타일) ===== */
.cardgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ccard { background:#fff; border:1px solid var(--line); transition:transform .25s, box-shadow .25s; }
.ccard:hover { transform:translateY(-6px); box-shadow:0 12px 28px rgba(17,54,107,.13); }
.ccard .cthumb { height:190px; display:flex; align-items:center; justify-content:center; font-size:3rem; color:#fff; }
.ccard .cthumb.t1 { background:linear-gradient(135deg,#11366b,#1d4e9c); }
.ccard .cthumb.t2 { background:linear-gradient(135deg,#0a72c4,#3ba0e0); }
.ccard .cthumb.t3 { background:linear-gradient(135deg,#00a0b0,#3fc6d4); }
.ccard .cbody { padding:22px 24px 26px; }
.ccard .cbody h3 { font-size:18px; font-weight:800; color:var(--ink); margin-bottom:9px; }
.ccard .cbody p { font-size:14.5px; color:var(--t2); }

/* ===== 반응형 ===== */
@media (max-width:1080px){
    .mv-inner { grid-template-columns:1fr; }
    .mv-panel { max-width:460px; }
    .hb .hb-tit { font-size:2.2rem; }
    .cardgrid { grid-template-columns:1fr; }
    .ql-grid { grid-template-columns:repeat(2,1fr); }
    .ql-grid > a:nth-child(2) { border-right:none; }
    .boxgrid.col3, .boxgrid.col4 { grid-template-columns:repeat(2,1fr); }
    .plans { grid-template-columns:1fr; }
    .formwrap { grid-template-columns:1fr; }
    .numgrid { grid-template-columns:repeat(2,1fr); }
    .numgrid .n:nth-child(2) { border-right:none; }
}
@media (max-width:760px){
    .topbar { display:none; }
    .gnb, .h-tel { display:none; }
    .nav-toggle { display:grid; place-items:center; }
    .hgnb { height:64px; }
    .site-header.open .gnb {
        display:block; position:absolute; top:64px; left:0; right:0; height:auto;
        background:#fff; border-bottom:1px solid var(--line); box-shadow:0 8px 20px rgba(0,0,0,.1);
    }
    .site-header.open .gnb > li > a { height:auto; padding:16px 18px; }
    .site-header.open .gnb > li > a::after { display:none; }
    .site-header.open .gnb .sub { position:static; opacity:1; visibility:visible; transform:none; border:none; border-top:1px solid var(--line2); box-shadow:none; background:var(--bg2); }
    .site-header.open .gnb .sub a { padding:12px 32px; }
    .mv-tit { font-size:1.9rem; }
    .hb { min-height:420px; }
    .hb .hb-tit { font-size:1.75rem; }
    .hb .hb-desc { font-size:1rem; }
    .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { display:none; }
    .boxgrid.col3, .boxgrid.col4, .boxgrid.col2 { grid-template-columns:1fr; }
    .proc { grid-template-columns:1fr; }
    .proc .p { border-left:1px solid var(--line); border-top:none; }
    .proc .p:first-child { border-top:1px solid var(--line); }
    .caselist .ci { flex-direction:column; }
    .caselist .ci .cl { width:100%; }
    .footer-main { grid-template-columns:1fr; }
    .footer-main .fcontact { text-align:left; }
    .footer-top .inner { flex-wrap:wrap; }
    .numgrid { grid-template-columns:1fr 1fr; }
    .frow { flex-direction:column; }
    .frow .fl { width:100%; }
}
