/* ===================================================================
   CAPCLOUD static site — merged responsive stylesheet
   (기존 desktop common/main/sub/custom.css + mobile css/m/* 를
   하나의 모바일 퍼스트 반응형 시트로 통합)
   =================================================================== */

@font-face{font-family:"NSNeo";src:url("/assets/fonts/NanumSquareNeo-Lt.ttf") format("truetype");font-weight:300;font-display:swap}
@font-face{font-family:"NSNeo";src:url("/assets/fonts/NanumSquareNeo-Rg.ttf") format("truetype");font-weight:400;font-display:swap}
@font-face{font-family:"NSNeo";src:url("/assets/fonts/NanumSquareNeo-Bd.ttf") format("truetype");font-weight:700;font-display:swap}
@font-face{font-family:"NSNeo";src:url("/assets/fonts/NanumSquareNeo-Eb.ttf") format("truetype");font-weight:800;font-display:swap}
@font-face{font-family:"NSNeo";src:url("/assets/fonts/NanumSquareNeo-Hv.ttf") format("truetype");font-weight:900;font-display:swap}

:root{
  --brand:#3187c7;
  --brand-dark:#256a9e;
  --text:#3a3a3a;
  --text-light:#7a8090;
  --footer-bg:#2e3033;
  --footer-text:#cfcfcf;
  --footer-text-dim:#acacac;
  --header-h:64px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"NSNeo","Malgun Gothic",-apple-system,system-ui,sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  letter-spacing:-0.02em;
  padding-top:var(--header-h);
}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{max-width:100%;display:block}
button{font:inherit;background:none;border:none;cursor:pointer}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}

/* ===================== HEADER / GNB ===================== */
.site-header{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  background:#fff;border-bottom:1px solid #f0f0f0;
  height:var(--header-h);
}
.header-inner{
  max-width:1280px;margin:0 auto;height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 20px;
}
.logo img{height:26px;width:auto}

/* desktop gnb — 원본처럼 풀폭 메가메뉴 바 (호버 시 헤더 아래 전체 폭 바가 펼쳐짐) */
.gnb{display:none;height:100%}
.gnb-list{display:flex;gap:8px;height:100%}
.gnb-item{position:relative;height:100%;display:flex;align-items:center}
.gnb-link{display:flex;align-items:center;height:100%;padding:0 16px;font-size:16px;font-weight:700;color:var(--text)}
.gnb-item:hover .gnb-link{color:var(--brand)}
.soon{margin-left:6px;font-size:11px;color:#c3c8d0}

.gnb-megabar{
  display:none;position:fixed;top:var(--header-h);left:0;width:100%;
  background:rgba(255,255,255,.97);border-bottom:1px solid #eee;
  box-shadow:0 12px 24px rgba(20,30,50,.06);
  padding:18px 0;z-index:999;
}
.gnb-megabar.open{display:block}
.gnb-megabar ul{display:flex;flex-wrap:wrap;justify-content:center;gap:4px 28px;max-width:1120px;margin:0 auto;padding:0 20px}
.gnb-megabar li a{display:block;padding:9px 4px;font-size:15px;color:var(--text);white-space:nowrap}
.gnb-megabar li a:hover{color:var(--brand)}

/* mobile hamburger */
.gnb-toggle{display:flex;flex-direction:column;justify-content:center;gap:5px;width:32px;height:32px}
.gnb-toggle span{display:block;height:2px;background:var(--text);border-radius:2px}
.gnb-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.gnb-toggle.active span:nth-child(2){opacity:0}
.gnb-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* mobile menu — 원본처럼 풀스크린 오버레이 + 카테고리 점프바 + 아이콘 그리드 */
.mainmenu{
  display:none;width:100%;background:var(--brand);position:fixed;top:var(--header-h);left:0;z-index:1000;
}
.mainmenu div{
  float:left;width:20%;padding:10px 0;font-size:13px;font-weight:500;text-align:center;color:#fff;
  box-sizing:border-box;
}
.menuwrap{
  display:none;width:100%;height:100vh;background:#fff;box-sizing:border-box;
  position:fixed;top:calc(var(--header-h) + 42px);left:-100%;z-index:998;
  overflow-y:auto;padding-bottom:80px;transition:left .3s ease-in-out;
}
.menuwrap.open{left:0;display:block}
.mainmenu.open{display:block}
.menubox{width:100%;padding:22px 16px;border-bottom:1px solid #e3e3e3;overflow:hidden}
.menubox .menut{font-size:16px;font-weight:800;color:#060f3b;margin-bottom:6px}
.menubox .micbox{float:left;width:25%;text-align:center}
.menubox .micbox img{width:36px;height:auto;margin-top:16px}
.menubox .micbox .mict{font-size:12px;min-height:32px;color:#000;margin:8px 0 4px;line-height:1.25}
.menubox .clear{clear:both}

@media (min-width:961px){
  :root{--header-h:99px}
  .gnb{display:block}
  .gnb-toggle,.mainmenu,.menuwrap{display:none!important}
  .logo img{height:32px}
}

/* ===================== FOOTER ===================== */
.site-footer{background:var(--footer-bg);color:var(--footer-text);padding:56px 20px 28px}
.footer-sitemap{
  display:grid;grid-template-columns:repeat(2,1fr);gap:28px;
  max-width:1200px;margin:0 auto 40px;
}
.footer-col-title{color:#fff;font-size:15px;font-weight:700;margin-bottom:14px}
.footer-col ul li a{display:block;color:var(--footer-text);font-size:13.5px;padding:5px 0}
.footer-col ul li a:hover{color:#fff}

.footer-info{
  max-width:1200px;margin:0 auto;padding-top:28px;border-top:1px solid rgba(255,255,255,.12);
  display:flex;flex-direction:column;gap:18px;
}
.footer-logo-block{flex:none}
.footer-logo{height:30px}
.footer-info-text p{color:var(--footer-text-dim);font-size:12.5px;line-height:1.9}
.footer-info-text .info-box{margin-right:18px}
.footer-info-text .info-box:last-child{margin-right:0}
.footer-info-text .info-box-en{color:#8a8d90}
.footer-legal{margin-top:4px}
.footer-legal a{color:var(--footer-text-dim);text-decoration:underline;margin-right:16px;font-size:12px}

.footer-social{
  max-width:1200px;margin:22px auto 0;
  display:flex;gap:12px;
}
.footer-social img{width:28px;height:28px}
.footer-copy{max-width:1200px;margin:28px auto 0;color:#6c6f72;font-size:11.5px}

@media (min-width:961px){
  .footer-sitemap{grid-template-columns:repeat(4,1fr)}
  .footer-info{flex-direction:row;align-items:center;gap:40px}
}

/* ===================== SHARED CONTENT ELEMENTS ===================== */
.btn-primary{
  display:inline-block;background:var(--brand);color:#fff;font-weight:700;
  padding:14px 28px;border-radius:4px;font-size:15px;
}
.btn-primary:hover{background:var(--brand-dark)}
.btn-outline{
  display:inline-block;border:1px solid #d8dbe0;color:var(--text);font-weight:600;
  padding:13px 27px;border-radius:4px;font-size:15px;
}
.section{padding:56px 20px}
.section-eyebrow{color:var(--brand);font-size:12.5px;font-weight:700;letter-spacing:.18em;margin-bottom:10px}
.section h2{font-size:24px;font-weight:800;letter-spacing:-.02em;margin-bottom:14px}
.section .lead{color:var(--text-light);font-size:16px;line-height:1.7}

.not-found{padding:120px 20px;text-align:center}
.not-found h1{font-size:24px;margin-bottom:12px}
.not-found p{color:var(--text-light);margin-bottom:24px}

@media (min-width:961px){
  .section{padding:96px 24px}
  .section h2{font-size:34px}
  .section .lead{font-size:18px}
}

.pc-only{display:none}
.section-title{font-size:24px;font-weight:800;letter-spacing:-.02em;margin-bottom:16px}
.section-title.center{text-align:center}
.section-sub{color:var(--text-light);font-size:14px;line-height:1.7;margin-bottom:28px}
.section-sub.center{text-align:center}

@media (min-width:961px){
  .pc-only{display:inline}
  .section-title{font-size:32px}
}

/* ===================== HOME: HERO SWIPER ===================== */
.main-bnr{position:relative}
.hero-swiper{width:100%;height:420px}
.hero-slide{
  background-position:center top;background-repeat:no-repeat;background-size:cover;
  display:flex;align-items:flex-end;cursor:pointer;
}
.slide-1{background-image:url('/assets/img/main_slide1nm.png')}
.slide-2{background-image:url('/assets/img/main_slide2nm.png')}
.slide-3{background-image:url('/assets/img/main_slide3nm.png')}
.slide-4{background-image:url('/assets/img/main_slide4nm.png')}
.slide-5{background-image:url('/assets/img/main_slide5nm.png')}
.slide-cont{padding:24px 20px 56px;color:#fff;max-width:640px}
.slide-cont h2{font-size:24px;font-weight:800;margin-bottom:10px;letter-spacing:-.02em}
.slide-cont h3{font-size:14px;font-weight:500;line-height:1.6;margin-bottom:8px;opacity:.95}
.slide-cont .detail{display:none}
.hero-nav-btn{display:none}
.hero-swiper .swiper-pagination-bullet{background:#fff;opacity:.6}
.hero-swiper .swiper-pagination-bullet-active{opacity:1}
.hero-cta{display:flex;gap:10px;justify-content:center;padding:16px 20px;background:#fff}
.hero-cta .btn-primary,.hero-cta .btn-outline{flex:1;text-align:center;padding:13px 10px;font-size:14px}

@media (min-width:961px){
  .hero-swiper{height:600px}
  .slide-1{background-image:url('/assets/img/main_slide1n.png')}
  .slide-2{background-image:url('/assets/img/main_slide2n.png')}
  .slide-3{background-image:url('/assets/img/main_slide3n.png')}
  .slide-4{background-image:url('/assets/img/main_slide4n.png')}
  .slide-5{background-image:url('/assets/img/main_slide5n.png')}
  .slide-cont{padding:0 0 90px 70px;max-width:760px}
  .slide-cont h2{font-size:44px;margin-bottom:16px}
  .slide-cont h3{font-size:19px;margin-bottom:14px}
  .slide-cont .detail{display:block;font-size:14.5px;line-height:1.8;color:rgba(255,255,255,.85)}
  .hero-nav-btn{display:flex;align-items:center;justify-content:center;width:52px;height:52px;background:rgba(255,255,255,.85);border-radius:50%}
  .hero-nav-btn:after{font-size:16px;color:#5a5a5a}
  .hero-cta{position:absolute;left:70px;bottom:40px;justify-content:flex-start;background:none;padding:0;z-index:5}
  .hero-cta .btn-primary,.hero-cta .btn-outline{flex:none}
}

/* ===================== HOME: 강점/리전/상품/배너 ===================== */
.merit-grid{display:flex;flex-direction:column;gap:24px}
.merit-img img{border-radius:8px}
.merit-list{display:flex;flex-direction:column;gap:20px}
.merit-list .no{color:var(--brand);font-weight:800;font-size:14px}
.merit-list h4{font-size:17px;font-weight:800;margin:6px 0 8px}
.merit-list p{color:var(--text-light);font-size:13.5px;line-height:1.7}

.alt-bg{background:#f5f6f8}
.region-img{text-align:center;margin-top:24px}

.product-grid{display:flex;flex-direction:column;gap:14px}
.product-card{
  display:flex;align-items:center;gap:16px;background:#fff;border:1px solid #eee;
  border-radius:10px;padding:20px;transition:box-shadow .2s,border-color .2s;
}
.product-card:hover{box-shadow:0 12px 30px rgba(20,30,50,.08);border-color:var(--brand)}
.product-card .info h3{font-size:17px;font-weight:800;margin-bottom:6px}
.product-card .info p{font-size:13px;color:var(--text-light);line-height:1.6}
.product-card .thumb{flex:none;width:64px}

.tc-banner-inner{
  background-size:cover;background-position:center;color:#fff;
  padding:56px 20px;text-align:center;
}
.tc-banner-inner h2{font-size:20px;font-weight:800;margin-bottom:12px}
.tc-banner-inner h3{font-size:13.5px;line-height:1.7;margin-bottom:20px;opacity:.9}
.tc-banner-inner .btn-outline{border-color:rgba(255,255,255,.6);color:#fff}
.tc-banner-inner .btn-outline:hover{background:rgba(255,255,255,.12)}

@media (min-width:961px){
  .merit-grid{flex-direction:row;align-items:center;gap:60px}
  .merit-img{flex:1}
  .merit-list{flex-direction:row;flex:1.2;gap:30px}
  .merit-list li{flex:1}
  .product-grid{flex-direction:row}
  .product-card{flex-direction:column;text-align:left;padding:32px}
  .product-card .thumb{width:100%;margin-top:16px}
  .tc-banner-inner{padding:90px 20px}
  .tc-banner-inner h2{font-size:30px}
  .tc-banner-inner h3{font-size:16px}
}

/* ===================== ABOUT-US PAGE ===================== */
.section-eyebrow.center{text-align:center}
.about-hero img{width:100%}
.about-intro{text-align:center;max-width:820px;margin:0 auto}
.about-lead{font-size:19px;font-weight:800;line-height:1.5;margin-bottom:16px;letter-spacing:-.02em}
.about-body{color:var(--text-light);font-size:14px;line-height:1.8}

.scope-diagram{max-width:1165px;margin:0 auto}
.scope-diagram img{width:100%;height:auto;margin:0 auto}
.scope-diagram-2{margin-top:24px}

.about-global{text-align:center}
.about-slogan{font-size:22px;font-weight:800;letter-spacing:.02em;margin:20px 0}
.about-logo img{margin:0 auto;max-width:220px}

.tc-partner-img{max-width:1055px;margin:0 auto 32px}
.tc-partner-img img{width:100%;height:auto}

.advantage-grid{display:flex;flex-direction:column;gap:14px;max-width:900px;margin:0 auto}
.advantage-box{background:#fbfbfb;border-radius:4px;padding:24px 22px}
.advantage-box h4{font-size:15px;font-weight:800;margin-bottom:8px}
.advantage-box p{font-size:13px;color:var(--text-light);line-height:1.7}

.about-cta{text-align:center;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

@media (min-width:961px){
  .about-lead{font-size:26px}
  .about-body{font-size:15px}
  .advantage-grid{flex-direction:row}
  .advantage-box{flex:1}
}

/* ===================== SERVICE DETAIL TEMPLATE ===================== */
.conts-area{padding:24px 20px 60px;max-width:1200px;margin:0 auto}
.side-navi{margin-bottom:24px;border:1px solid #eee;border-radius:8px;overflow:hidden}
.side-navi-tit{background:#f7f8fa;padding:14px 18px;font-size:15px;font-weight:800}
.side-navi-cat-btn{width:100%;text-align:left;padding:12px 18px;font-size:14px;font-weight:700;border-bottom:1px solid #f2f2f2}
.side-navi-sub{display:none;background:#fafbfc}
.side-navi-cat.open .side-navi-sub{display:block}
.side-navi-sub li a{display:block;padding:9px 18px 9px 28px;font-size:13px;color:var(--text-light)}
.side-navi-sub li.active a{color:var(--brand);font-weight:700}

.service-top{
  background:linear-gradient(135deg,#0a1a33,#123a5e) center/cover no-repeat;
  border-radius:10px;padding:32px 24px;color:#fff;margin-bottom:24px;
}
.service-top h2{font-size:22px;font-weight:800;margin-bottom:10px}
.service-top p{font-size:14px;line-height:1.6;opacity:.9;margin-bottom:18px;max-width:560px}
.s-btn-set{display:flex;gap:10px;flex-wrap:wrap}
.s-btn-set li a{display:block;background:var(--brand);color:#fff;font-size:13.5px;padding:10px 18px;border-radius:4px}

.service-lnb{margin-bottom:24px;border-bottom:1px solid #e1e1e1;overflow-x:auto;white-space:nowrap}
.service-lnb ul{display:inline-flex}
.service-lnb li a{display:block;padding:12px 16px;font-size:14px;color:var(--text);border-top:2px solid transparent}
.service-lnb li a:hover{border-top-color:var(--brand);color:var(--brand)}

.s-cont-box{margin-bottom:48px;scroll-margin-top:calc(var(--header-h) + 12px)}
.s-tit{color:#060f3b;font-size:19px;font-weight:800;margin-bottom:14px}
.s-txt{color:var(--text);font-size:14px;line-height:1.75}

.s-point-list{display:flex;flex-direction:column;gap:22px}
.s-point-list li{display:flex;gap:16px;align-items:flex-start}
.s-point-ico{flex:none;width:56px}
.s-point-txt h4{font-size:15px;font-weight:700;margin-bottom:6px}
.s-point-txt p{font-size:13px;color:var(--text-light);line-height:1.7}

.scenario-tab-btns{display:flex;flex-wrap:wrap;gap:2px;margin-bottom:16px}
.scenario-tab-btn{background:#fbfbfb;color:#333;font-size:13px;padding:11px 14px;flex:1 1 auto;min-width:110px;border-radius:3px}
.scenario-tab-btn.active{background:var(--brand);color:#fff}
.scenario-tab-cont{display:none}
.scenario-tab-cont.active{display:block}
.scenario-desc{font-size:13.5px;color:var(--text);line-height:1.75;margin-bottom:16px}
.scenario-specs{background:#12294a;color:#fff;border-radius:6px;padding:20px}
.scenario-specs h4{font-size:16px;font-weight:700;margin-bottom:12px}
.scenario-specs dl{display:flex;flex-wrap:wrap;gap:6px 0}
.scenario-specs dt{width:90px;font-size:13px;opacity:.8}
.scenario-specs dd{width:calc(100% - 90px);font-size:13px}

.s-resource-list{display:flex;flex-direction:column;gap:8px}
.s-resource-list li a{
  display:flex;align-items:center;justify-content:space-between;
  border:1px solid #e1e1e1;border-radius:4px;padding:16px 20px;font-size:15px;color:#000;
}
.s-resource-list li a:hover{border-color:var(--brand)}
.s-resource-ico{width:40px;height:auto;flex:none}
.s-resource-ico img{width:100%}

@media (min-width:961px){
  .conts-area{display:flex;gap:36px;padding:48px 24px 90px}
  .side-navi{flex:none;width:240px;margin-bottom:0;align-self:flex-start}
  .side-navi-sub{display:block!important}
  .side-navi-cat-btn{pointer-events:none}
  .contents{flex:1;min-width:0}
  .service-top{padding:50px 40px}
  .service-top h2{font-size:30px}
  .service-top p{font-size:16px}
  .s-point-list li{height:auto}
  .scenario-tab-btn{flex:none}
  .s-resource-list{flex-direction:row;flex-wrap:wrap}
  .s-resource-list li{width:calc(50% - 8px)}
}

/* ===================== STRATEGIC PRODUCT (Capcloud Studio 등) ===================== */
.prod-hero{background:#0a1a33;color:#fff;padding:40px 20px;display:flex;flex-direction:column;gap:24px;align-items:center;text-align:center}
.prod-eyebrow{color:var(--brand);font-size:13px;font-weight:700;letter-spacing:.1em;margin-bottom:8px}
.prod-hero-txt h2{font-size:26px;font-weight:800;margin-bottom:14px}
.prod-hero-txt p{font-size:13.5px;line-height:1.8;opacity:.85;margin-bottom:20px}
.prod-go-btn{display:inline-block;background:var(--brand);color:#fff;font-size:14px;font-weight:600;padding:10px 22px;border-radius:4px}
.prod-hero-img img{max-width:320px}

.prod-strength-grid{display:flex;flex-direction:column;gap:20px}
.prod-strength{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px}
.prod-strength img{width:56px}
.prod-strength span{font-size:13px;color:var(--text);font-weight:600}

.prod-why{text-align:center}
.prod-why-grid{display:flex;flex-direction:column;gap:32px;max-width:900px;margin:0 auto}
.prod-why-item img{max-width:220px;margin:0 auto 18px}
.prod-why-item dt{font-size:20px;font-weight:800;color:#060f3b;margin-bottom:12px}
.prod-why-item dd{font-size:13px;color:var(--text-light);line-height:1.8}

.prod-cta{position:relative;padding:48px 20px;text-align:center;color:#fff;overflow:hidden}
.prod-cta-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.prod-cta-cont{position:relative;z-index:1}
.prod-cta-cont p{font-size:16px;font-weight:700;margin-bottom:18px}
.prod-cta-btns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.prod-cta-btns .btn-outline{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.4);color:#fff}

@media (min-width:961px){
  .prod-hero{flex-direction:row;justify-content:space-between;text-align:left;padding:80px 60px}
  .prod-hero-txt{max-width:560px}
  .prod-hero-txt h2{font-size:38px}
  .prod-hero-txt p{font-size:15px}
  .prod-strength-grid{flex-direction:row}
  .prod-strength{flex:1}
  .prod-why-grid{flex-direction:row}
  .prod-why-item{flex:1}
}

/* ===================== INFRA OVERVIEW PAGE ===================== */
.about-body.center{text-align:center;max-width:820px;margin:0 auto}
.infra-hero img{width:100%}

.infra-highlight-grid{display:flex;flex-direction:column;gap:16px}
.infra-highlight{background:#fff;border-radius:10px;padding:22px}
.infra-highlight h4{font-size:15.5px;font-weight:800;margin-bottom:8px;color:#060f3b}
.infra-highlight p{font-size:13px;color:var(--text-light);line-height:1.7}

.infra-tab-btns{display:flex;flex-wrap:wrap;gap:6px;justify-content:center;margin-bottom:28px}
.infra-tab-btn{background:#fbfbfb;font-size:13px;padding:11px 16px;border-radius:3px}
.infra-tab-btn.active{background:var(--brand);color:#fff}
.infra-tab-cont{display:none}
.infra-tab-cont.active{display:block}
.infra-item-grid{display:flex;flex-direction:column;gap:12px}
.infra-item{background:#fff;border:1px solid #eee;border-radius:8px;padding:18px}
.infra-item h4{font-size:14.5px;font-weight:700;margin-bottom:6px}
.infra-item p{font-size:12.5px;color:var(--text-light);line-height:1.6}

.infra-eval-grid{display:flex;flex-direction:column;gap:24px;text-align:center;max-width:900px;margin:0 auto}
.infra-eval-item img{margin:0 auto 14px;max-width:120px}
.infra-eval-name{font-size:16px;font-weight:800;margin-bottom:8px}
.infra-eval-item p{font-size:13px;color:var(--text-light);line-height:1.7}

@media (min-width:961px){
  .infra-highlight-grid{flex-direction:row}
  .infra-highlight{flex:1}
  .infra-item-grid{flex-direction:row;flex-wrap:wrap}
  .infra-item{flex:1 1 calc(33.333% - 8px)}
  .infra-eval-grid{flex-direction:row}
  .infra-eval-item{flex:1}
}

/* ===================== ABOUT-TC PAGE ===================== */
.tc-stats-grid{display:flex;gap:16px;justify-content:center;text-align:center;margin-bottom:8px}
.tc-stat-num{font-size:32px;font-weight:800;color:var(--brand)}
.tc-stat-label{font-size:13px;color:var(--text-light);margin-top:4px}

.tc-why-grid{display:flex;flex-direction:column;gap:20px;align-items:center}
.tc-why-grid img{max-width:340px}

.tc-cert-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:center;max-width:900px;margin:0 auto}
.tc-cert-grid img{width:100%;height:auto}

@media (min-width:961px){
  .tc-stats-grid{gap:60px}
  .tc-stat-num{font-size:48px}
  .tc-why-grid{flex-direction:row;justify-content:center}
  .tc-why-grid img{max-width:none;flex:1}
  .tc-cert-grid{grid-template-columns:repeat(5,1fr)}
}

/* ===================== SERVICE CATALOG PAGE ===================== */
.svc-hero{background:#0a1a33;color:#fff;text-align:center;padding:40px 20px}
.svc-hero h2{font-size:24px;font-weight:800;margin-bottom:10px}
.svc-hero p{font-size:14px;opacity:.85;margin-bottom:20px}

.svc-recom-grid{display:flex;flex-direction:column;gap:14px}
.svc-recom-item{display:block;background:#fff;border:1px solid #eee;border-radius:10px;padding:24px;transition:box-shadow .2s,border-color .2s}
.svc-recom-item:hover{box-shadow:0 12px 30px rgba(20,30,50,.08);border-color:var(--brand)}
.svc-recom-item img{width:44px;margin-bottom:14px}
.svc-recom-item h3{font-size:16px;font-weight:800;margin-bottom:8px}
.svc-recom-item p{font-size:13px;color:var(--text-light);line-height:1.6}

.svc-accordion{max-width:900px;margin:0 auto}
.svc-acc-item{background:#fff;border:1px solid #eee;border-radius:8px;margin-bottom:10px;overflow:hidden}
.svc-acc-head{width:100%;display:flex;align-items:center;gap:12px;padding:16px 20px;font-size:15px;font-weight:700}
.svc-acc-ico{width:24px;height:24px}
.svc-acc-head span{flex:1;text-align:left}
.svc-acc-plus{width:16px;height:16px;transition:transform .2s}
.svc-acc-item.open .svc-acc-plus{transform:rotate(45deg)}
.svc-acc-body{display:none;border-top:1px solid #f0f0f0}
.svc-acc-item.open .svc-acc-body{display:block}
.svc-acc-row a{display:block;padding:12px 20px 12px 56px;font-size:13.5px;color:var(--text)}
.svc-acc-row a:hover{color:var(--brand);background:#f7fafc}

@media (min-width:961px){
  .svc-hero{padding:70px 20px}
  .svc-hero h2{font-size:34px}
  .svc-recom-grid{flex-direction:row;flex-wrap:wrap}
  .svc-recom-item{flex:1 1 calc(33.333% - 10px)}
}

/* ===================== SOLUTION PAGES (VooV/RayData/Game/Video) ===================== */
.sol-hero{height:200px;background-position:center top;background-repeat:no-repeat;background-size:cover;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff}
.sol-hero-1{background-image:url('/assets/img/solution/bg_intro1.png')}
.sol-hero-2{background-image:url('/assets/img/solution/bg_intro2.png')}
.sol-hero-3{background-image:url('/assets/img/solution/bg_intro3.png')}
.sol-hero-4{background-image:url('/assets/img/solution/bg_intro4.png')}
.sol-hero h2{font-size:26px;font-weight:800;letter-spacing:-.02em}
.sol-hero p{font-size:13.5px;margin-top:8px;opacity:.95}

.sol-intro{font-size:14.5px;line-height:1.75;text-align:center;color:var(--text);max-width:820px;margin:0 auto}
.sol-divider{width:1px;height:60px;border-left:2px solid #e1e1e1;margin:32px auto}

.sol-feature{display:flex;flex-direction:column;gap:8px;margin-top:32px}
.sol-feature-title{font-size:19px;font-weight:800;letter-spacing:-.02em;color:#060f3b}
.sol-feature-desc{font-size:14px;line-height:1.7;color:var(--text-light)}
.sol-feature+.sol-feature{margin-top:32px;padding-top:32px;border-top:1px solid #e9e9e9}

.sol-panel{background:#fbfbfb;padding:40px 20px}
.sol-panel-title{font-size:19px;font-weight:800;letter-spacing:-.02em;color:#060f3b;text-align:center;margin-bottom:24px}

.sol-icon-grid{display:flex;flex-direction:column;gap:12px}
.sol-icon-card{display:flex;align-items:center;justify-content:space-between;gap:12px;background:#fff;border:1px solid #f0f0f0;padding:20px}
.sol-icon-card-txt{flex:1}
.sol-icon-card-ico{flex:none;width:65px}
.sol-icon-card h4{font-size:15px;font-weight:800;color:#060f3b;margin-bottom:6px}
.sol-icon-card p{font-size:12.5px;line-height:1.5;color:var(--text)}

.sol-tag-grid{display:flex;flex-wrap:wrap;gap:8px}
.sol-tag{flex:1 1 calc(50% - 8px);min-height:60px;border:1px solid #f0f0f0;background:#fff;display:flex;align-items:center;justify-content:center;text-align:center;font-size:13px;font-weight:600;color:#060f3b;padding:10px}

.sol-block-icon{margin-top:44px;padding-top:32px;border-top:1px solid #e9e9e9}
.sol-block-icon:first-child{margin-top:0;padding-top:0;border-top:none}
.sol-block-icon img{width:56px;margin-bottom:14px}
.sol-block-icon h4{font-size:19px;font-weight:700;color:#060f3b}
.sol-block-icon h4 strong{font-weight:800}
.sol-block-icon p{font-size:13px;line-height:1.7;color:var(--text-light);margin-top:8px}

.sol-badge-row{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}
.sol-badge-row img{width:calc(33.333% - 6px);height:auto}
.sol-badge-row.cols2 img{width:calc(50% - 4px)}

.sol-diagram{text-align:center;margin-top:24px;overflow-x:auto}
.sol-diagram img{width:100%;height:auto;min-width:640px}

.sol-case-grid{display:flex;flex-direction:column;gap:24px}
.sol-case{display:flex;flex-direction:column;gap:16px}
.sol-case img{width:100%;height:auto}
.sol-case-tit{font-size:16px;font-weight:800;color:#060f3b;margin-bottom:8px}
.sol-case-txt{font-size:13px;line-height:1.6;color:var(--text)}
.sol-case-txt strong{color:var(--brand);font-weight:700}

.sol-pill-grid{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.sol-pill{flex:1 1 calc(50% - 8px);min-height:44px;border-radius:22px;background:#fff;border:1px solid #f0f0f0;display:flex;align-items:center;justify-content:center;text-align:center;font-size:12.5px;font-weight:600;color:#060f3b;padding:8px 10px}

.sol-summary{font-size:13.5px;line-height:1.8;color:var(--text-light);text-align:left}

@media (min-width:961px){
  .sol-hero{height:393px}
  .sol-hero h2{font-size:50px}
  .sol-hero p{font-size:20px;margin-top:10px}
  .sol-intro{font-size:20px}
  .sol-divider{height:150px;margin:80px auto}

  .sol-feature{flex-direction:row;align-items:flex-start;gap:40px;max-width:1266px;margin-left:auto;margin-right:auto}
  .sol-feature-title{width:37%;flex:none;font-size:32px}
  .sol-feature-desc{flex:1;font-size:19px}
  .sol-feature+.sol-feature{margin-top:60px;padding-top:60px}

  .sol-panel{padding:70px 24px}
  .sol-panel-title{font-size:32px;margin-bottom:40px}

  .sol-icon-grid{flex-direction:row;flex-wrap:wrap;max-width:1266px;margin:0 auto;gap:20px}
  .sol-icon-card{flex:1 1 calc(50% - 10px);padding:40px;min-height:150px}
  .sol-icon-card-ico{width:100px}
  .sol-icon-card h4{font-size:26px;margin-bottom:14px}
  .sol-icon-card p{font-size:16px;line-height:1.5}

  .sol-tag-grid{max-width:1266px;margin:0 auto;gap:14px}
  .sol-tag{flex:1 1 calc(25% - 14px);min-height:110px;font-size:19px}

  .sol-block-icon{max-width:1266px;margin-left:auto;margin-right:auto;margin-top:56px;padding-top:40px}
  .sol-block-icon img{width:80px}
  .sol-block-icon h4{font-size:26px}
  .sol-block-icon p{font-size:17px;margin-top:12px}

  .sol-badge-row{max-width:1266px;margin:0 auto;gap:10px}
  .sol-badge-row img{width:calc(16.666% - 9px)}
  .sol-badge-row.cols2 img{width:calc(25% - 8px)}

  .sol-diagram{max-width:1266px;margin-left:auto;margin-right:auto}
  .sol-diagram img{min-width:0}

  .sol-case-grid{max-width:1266px;margin:0 auto;gap:20px}
  .sol-case{flex-direction:row;align-items:center;gap:36px}
  .sol-case img{width:400px;flex:none}
  .sol-case-tit{font-size:22px}
  .sol-case-txt{font-size:15px;line-height:1.55}

  .sol-pill-grid{max-width:1266px;margin:20px auto 0;gap:14px}
  .sol-pill{flex:1 1 calc(25% - 14px);font-size:14px}

  .sol-summary{max-width:1266px;margin:0 auto;font-size:16px}
}

/* ===================== MSP / SP OVERVIEW PAGES ===================== */
.msp-diagram{max-width:900px;margin:24px auto}
.msp-diagram img{width:100%}

.msp-tier-grid{display:flex;flex-direction:column;gap:16px;align-items:center;max-width:820px;margin:0 auto}
.msp-tier{background:#fff;border-radius:10px;padding:24px;width:100%}
.msp-tier h4{font-size:17px;font-weight:800;margin-bottom:10px;color:#060f3b}
.msp-tier-time{font-size:12.5px;color:var(--text-light);margin-bottom:12px}
.msp-tier ul li{font-size:13px;color:var(--text);padding:4px 0}
.msp-tier-plus{width:32px;height:32px;margin:0 auto}
.msp-tier-advanced{background:#12294a;color:#fff}
.msp-tier-advanced h4{color:#fff}
.msp-tier-advanced ul li{color:rgba(255,255,255,.85)}

.msp-benefit-grid{display:flex;flex-direction:column;gap:16px;max-width:900px;margin:0 auto}
.msp-benefit{background:#fbfbfb;border-radius:8px;padding:22px}
.msp-benefit h4{font-size:15.5px;font-weight:800;margin-bottom:8px;color:#060f3b}
.msp-benefit p{font-size:13px;color:var(--text-light);line-height:1.7}

@media (min-width:961px){
  .msp-tier-grid{flex-direction:row;align-items:stretch}
  .msp-tier{flex:1}
  .msp-benefit-grid{flex-direction:row}
  .msp-benefit{flex:1}
}

.sp-cover{max-width:1100px;margin:0 auto}
.sp-cover img{width:100%}

.sp-value-grid{display:flex;flex-direction:column;gap:16px;max-width:900px;margin:0 auto}
.sp-value-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;background:#fff;border:1px solid #eee;border-radius:10px;padding:24px}
.sp-value-item img{width:64px}
.sp-value-txt h4{font-size:16px;font-weight:800;margin-bottom:8px;color:#060f3b}
.sp-value-txt p{font-size:13px;color:var(--text-light);line-height:1.7}

.sp-tab-btns{display:flex;flex-wrap:wrap;gap:6px;justify-content:center;margin-bottom:24px}
.sp-tab-btn{background:#fbfbfb;font-size:13px;padding:11px 16px;border-radius:3px}
.sp-tab-btn.active{background:var(--brand);color:#fff}
.sp-tab-cont{display:none}
.sp-tab-cont.active{display:block}
.sp-logo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;align-items:center;max-width:900px;margin:0 auto}
.sp-logo-grid img{width:100%;height:auto;filter:grayscale(1);opacity:.7}

@media (min-width:961px){
  .sp-value-grid{flex-direction:row}
  .sp-value-item{flex:1}
  .sp-logo-grid{grid-template-columns:repeat(7,1fr)}
}

/* ===================== STRATEGIC PRODUCT — T-SCOUT / FALCON AI / OVP 확장 ===================== */
/* 전체 폭 배너 이미지 (원본이 이미지로 디자인된 다이어그램/인포그래픽을 그대로 표시) */
.prod-banner{padding:32px 20px}
.prod-banner img{display:block;max-width:100%;height:auto;margin:0 auto}

/* 아이콘+라벨 그룹 (T-SCOUT: SNS / 온라인 결제 / 캐쥬얼 게임) */
.prod-app-groups{display:flex;flex-direction:column;gap:36px;max-width:1000px;margin:0 auto}
.prod-app-group-title{font-size:17px;font-weight:800;color:#060f3b;text-align:center;margin-bottom:18px}
.prod-app-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px 12px}
.prod-app-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px}
.prod-app-item img{width:44px;height:44px;object-fit:contain;border-radius:10px}
.prod-app-item span{font-size:11.5px;color:var(--text-light)}

/* prod-why-grid 항목 수가 3개보다 많을 때(4/6개) 줄바꿈 지원 */
.prod-why-grid.grid-wrap{flex-wrap:wrap}
.prod-why-grid.grid-wrap .prod-why-item{flex:1 1 100%}
.prod-why-grid.grid-wrap.cols-2 .prod-why-item{flex:1 1 100%}

/* T-SCOUT 전용 "왜 T-SCOUT인가" 3단 구성 (좌측 텍스트 / 중앙 타이틀 / 우측 텍스트) */
.prod-why-sub{font-size:13px;color:var(--text-light);line-height:1.8;text-align:center;max-width:900px;margin:0 auto 32px}
.prod-why-cols{display:flex;flex-direction:column;gap:28px;max-width:960px;margin:0 auto}
.prod-why-col{display:flex;flex-direction:column;gap:16px}
.prod-why-col p{font-size:13px;color:var(--text-light);line-height:1.6;margin:0}
.prod-why-center{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;padding:24px 0}
.prod-why-center img{width:120px;height:120px}
.prod-why-center h3{font-size:19px;font-weight:800;color:#060f3b;line-height:1.4}

/* FALCON AI 핵심 기능 체크리스트 (원본이 실제 텍스트였던 부분) */
.prod-highlights{display:flex;flex-direction:column;gap:14px;max-width:760px;margin:0 auto;text-align:left}
.prod-highlights li{position:relative;padding-left:20px;font-size:13.5px;color:var(--text);line-height:1.7}
.prod-highlights li::before{content:'';position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--brand)}
.prod-highlights strong{color:#060f3b;font-weight:800}

@media (min-width:961px){
  .prod-app-grid{grid-template-columns:repeat(7,1fr)}
  .prod-why-grid.grid-wrap .prod-why-item{flex:1 1 30%}
  .prod-why-grid.grid-wrap.cols-2 .prod-why-item{flex:1 1 45%}
  .prod-why-cols{flex-direction:row;align-items:stretch}
  .prod-why-col{flex:1;justify-content:center}
  .prod-why-col p{text-align:left}
  .prod-why-center{flex:0 0 260px}
}

/* ===================== TERMS / PRIVACY PAGES ===================== */
.legal-page{max-width:820px;margin:0 auto}
.legal-title{font-size:24px;font-weight:800;margin-bottom:28px;text-align:center}
.legal-content p{font-size:13.5px;color:var(--text);line-height:1.85;margin-bottom:18px}
.legal-content p strong{display:block;font-size:15px;color:#060f3b;margin-bottom:8px}
.legal-date{color:var(--text-light)!important;font-size:12.5px!important;text-align:right;margin-top:32px}

@media (min-width:961px){
  .legal-title{font-size:32px}
  .legal-content p{font-size:14.5px}
}
