@charset "utf-8";
/* ============================================================
   스마트미디어 (SMARTMEDIA) — static rebuild
   원본: https://smartmedia.quv.kr/ (QUV Homepage Builder)
   ============================================================ */

/* ---------- webfonts ---------- */
@font-face{
  font-family:'Noto Sans KR';
  src:url('../font/NotoSansKRR.woff2') format('woff2');
  font-weight:400 700;font-display:swap;
}
@font-face{
  font-family:'SCDream';
  src:url('../font/SCDreamR.woff2') format('woff2');
  font-weight:400;font-display:swap;
}
@font-face{
  font-family:'SCDream';
  src:url('../font/SCDreamB.woff2') format('woff2');
  font-weight:700;font-display:swap;
}

/* ---------- tokens ---------- */
:root{
  --ink:#000;
  --paper:#fff;
  --on-dark:#fff0f5;
  --green:#00bd67;
  --navy:#183487;
  --kakao:#fff800;
  --step:#42a5f5;
  --muted:#444;
  --footer-bg:#343434;
  --line:#e4e4e4;
  --icon:#bababa;
  --icon-2:#8d8d8d;
  --wrap:1240px;
  --header-h:100px;
  --sans:'Noto Sans KR',-apple-system,BlinkMacSystemFont,'Malgun Gothic','맑은 고딕',sans-serif;
  --display:'SCDream','Noto Sans KR',sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.5;
  word-break:keep-all;
  overflow-wrap:break-word;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;border:0}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none}
h1,h2,h3,h4,p,figure,ul,ol{margin:0;padding:0}
ul,ol{list-style:none}
.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 20px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:800;
  height:var(--header-h);
  display:flex;align-items:center;
  background:rgba(255,255,255,0);
  transition:background .25s ease,box-shadow .25s ease,height .25s ease;
}
.site-header.is-stuck{
  background:#fff;
  box-shadow:0 1px 14px rgba(0,0,0,.09);
  height:74px;
}
.site-header .wrap{display:flex;align-items:center;gap:24px}
.brand{flex:0 0 auto}
.brand img{height:35px;width:auto}
.site-header.is-stuck .brand img{height:30px}

.gnb{margin-left:auto;display:flex;align-items:center;gap:38px}
.gnb a{
  font-size:16px;font-weight:700;letter-spacing:-.02em;color:#000;
  position:relative;padding:6px 0;white-space:nowrap;
}
.gnb a::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:2px;
  background:var(--navy);transition:width .25s ease;
}
.gnb a:hover::after,.gnb a:focus-visible::after{width:100%}

.util{display:flex;align-items:center;gap:14px;margin-left:8px}
.util a{font-size:13px;color:#666;font-weight:500}
.util a:hover{color:#000}

.nav-toggle{display:none;width:44px;height:44px;margin-left:auto;position:relative}
.nav-toggle span{
  position:absolute;left:11px;width:22px;height:2px;background:#000;
  transition:transform .25s ease,opacity .2s ease;
}
.nav-toggle span:nth-child(1){top:15px}
.nav-toggle span:nth-child(2){top:21px}
.nav-toggle span:nth-child(3){top:27px}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  padding:calc(var(--header-h) + 52px) 0 96px;
  background:#fff;text-align:center;
}
.hero-badge{margin:0 auto 34px}
.hero-badge img{height:31px;width:auto;margin:0 auto}
.hero h1{
  font-family:var(--display);
  font-weight:700;
  font-size:clamp(30px,5.4vw,72px);
  line-height:1.22;
  letter-spacing:-.03em;
  color:#000;
}
.hero h1 span{display:block}
.hero-sub{
  margin-top:38px;
  font-size:clamp(15px,1.7vw,20px);
  font-weight:700;line-height:1.6;color:#000;
}
.hero-sub span{display:block}
.hero-cta{
  margin-top:46px;
  display:flex;justify-content:center;gap:22px;flex-wrap:wrap;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-width:180px;height:61px;padding:0 26px;border-radius:100px;
  font-size:15px;font-weight:700;letter-spacing:-.02em;
  transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,.16)}
.btn-kakao{background:var(--kakao);color:#000}
.btn-navy{background:var(--navy);color:#fff}
.btn svg{width:18px;height:18px;flex:0 0 auto}

/* ============================================================
   공통 섹션
   ============================================================ */
.band{padding:96px 0}
.band-dark{background:#000;color:var(--on-dark);padding:100px 0;text-align:center}
.band-dark h2{
  font-size:clamp(24px,3.7vw,48px);font-weight:700;line-height:1.5;
  letter-spacing:-.03em;color:var(--on-dark);
}
.band-dark h2 span{display:block}
.band-dark .lead{
  margin-top:22px;
  font-size:clamp(15px,2vw,26px);font-weight:700;color:var(--on-dark);opacity:.95;
}

/* 섹션 헤딩(공통) */
.sec-head{text-align:center;padding:0 0 54px}
.sec-head .eyebrow{
  font-size:clamp(18px,2.2vw,28px);font-weight:700;letter-spacing:-.02em;color:#000;
}
.sec-head h2{
  margin-top:14px;
  font-size:clamp(24px,3.3vw,42px);font-weight:700;line-height:1.36;
  letter-spacing:-.03em;color:#000;
}
.sec-head h2 span{display:block}
.sec-head .desc{margin-top:20px;font-size:clamp(14px,1.6vw,18px);font-weight:500;color:#555;line-height:1.75}

/* 인트로 */
.intro{padding:96px 0;text-align:center}
.intro .eyebrow{
  display:inline-block;font-size:clamp(16px,2vw,22px);font-weight:700;
  color:var(--navy);letter-spacing:-.02em;
}
.intro h2{
  margin-top:14px;
  font-size:clamp(24px,3.6vw,44px);font-weight:700;letter-spacing:-.03em;line-height:1.36;
}
.intro p{
  margin:26px auto 0;max-width:900px;
  font-size:clamp(14px,1.7vw,18px);font-weight:500;line-height:1.85;color:#333;
}

/* 대형 인포그래픽 */
.figure-full{padding:0 0 96px}
.figure-full img{margin:0 auto;width:100%;max-width:1155px}

/* ============================================================
   포트폴리오 그리드
   ============================================================ */
.works{padding:0 0 96px}
.works-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:56px 22px;
}
.work-cap{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  margin-bottom:18px;
}
.work-tag{
  display:inline-flex;align-items:center;
  background:var(--green);color:#fff;
  font-size:clamp(16px,2vw,28px);font-weight:700;line-height:1.42;
  padding:0 6px;letter-spacing:-.02em;
}
.work-key{
  font-size:clamp(16px,2vw,28px);font-weight:700;color:#000;letter-spacing:-.02em;
}
.work-shot{
  width:100%;border:1px solid #ececec;border-radius:4px;overflow:hidden;
  background:#fafafa;
}
.work-shot img{width:100%}

/* 강조 밴드(인라인 배지) */
.band-inline .hl{
  display:inline-block;background:var(--green);color:#fff;padding:0 8px;
}
.band-inline p{
  font-size:clamp(17px,2.7vw,36px);font-weight:700;line-height:1.5;
  color:var(--on-dark);letter-spacing:-.03em;
}

/* 효과 설명 */
.effect{padding:96px 0;text-align:center}
.effect h2{
  font-size:clamp(24px,3.4vw,42px);font-weight:700;line-height:1.36;letter-spacing:-.03em;
}
.effect h2 span{display:block}
.effect .body{margin-top:36px}
.effect .body p{
  max-width:960px;margin:0 auto 24px;
  font-size:clamp(14px,1.7vw,18px);font-weight:500;line-height:1.9;color:#333;
}
.effect .body p:last-child{margin-bottom:0}
.effect strong{font-weight:700;color:#000}

/* 10일 진입 (검정 + 이미지 2단) */
.tenday{background:#000;padding:100px 0}
.tenday h2{
  text-align:center;color:var(--on-dark);
  font-size:clamp(22px,3.5vw,48px);font-weight:700;line-height:1.45;letter-spacing:-.03em;
}
.tenday-media{
  margin-top:56px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;align-items:center;
}
.tenday-media img{width:100%;border-radius:6px}
.tenday-media .side{
  background:url('../img/66d9267d2c891_1920.png') no-repeat center center;
  background-size:contain;
  min-height:420px;
}

/* ============================================================
   서비스 특징 카드 (배경 이미지)
   ============================================================ */
.features{
  padding:90px 0;
  background:url('../img/65fbad19f2136_1920.jpg') no-repeat center center;
  background-size:cover;
  position:relative;
}
.features::before{
  content:'';position:absolute;inset:0;background:rgba(255,255,255,.28);
}
.features .wrap{position:relative;z-index:1}
.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}
.feature-card{
  background:#fff;border:1px solid var(--line);
  padding:40px 32px;min-height:309px;
  display:flex;flex-direction:column;
}
.feature-ico{
  width:47px;height:45px;background:var(--icon);
  display:flex;align-items:center;justify-content:center;color:#fff;
  margin-bottom:18px;flex:0 0 auto;
}
.feature-card:nth-child(n+3) .feature-ico{background:var(--icon-2)}
.feature-ico svg{width:24px;height:24px}
.feature-card h3{
  font-size:clamp(18px,2vw,24px);font-weight:700;line-height:1.5;letter-spacing:-.02em;color:#000;
}
.feature-card .rule{
  margin:18px 0;height:15px;
  background:url('../img/line_x_gray.png') repeat-x left center;
}
.feature-card p{
  font-size:clamp(14px,1.6vw,20px);font-weight:700;line-height:1.5;color:#000;letter-spacing:-.02em;
}

/* ============================================================
   진행 절차
   ============================================================ */
.steps{padding:0 0 96px}
.step-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:44px 60px}
.step{padding:34px 30px;border:1px solid var(--line);border-radius:6px;background:#fff;text-align:center}
.step-no{
  font-family:'Oswald',var(--sans);
  font-size:28px;font-weight:700;color:var(--step);line-height:1.5;
}
.step h3{
  margin-top:6px;
  font-size:clamp(19px,2.1vw,28px);font-weight:700;color:var(--muted);letter-spacing:-.02em;line-height:1.5;
}
.step p{
  margin-top:18px;
  font-size:clamp(14px,1.6vw,20px);font-weight:700;line-height:1.5;color:#000;letter-spacing:-.02em;
}

/* ============================================================
   추천 대상
   ============================================================ */
.recos{padding:0 0 96px}
.reco-list{display:flex;flex-direction:column;gap:18px;max-width:1020px;margin:0 auto}
.reco{
  display:flex;align-items:center;gap:20px;
  padding:28px 32px;border:1px solid var(--line);border-radius:8px;background:#fff;
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.reco:hover{border-color:var(--navy);transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.07)}
.reco-check{
  flex:0 0 auto;width:34px;height:34px;border-radius:50%;
  background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.reco-check svg{width:18px;height:18px}
.reco p{font-size:clamp(15px,1.8vw,22px);font-weight:700;line-height:1.5;letter-spacing:-.02em}

/* ============================================================
   주의사항
   ============================================================ */
.cautions{padding:0 0 96px}
.caution-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:44px}
.caution{text-align:center;padding:0 8px}
.caution .rule{
  width:100px;height:15px;margin:0 auto 34px;
  background:url('../img/line_x_black.png') repeat-x left center;
}
.caution h3{
  font-size:clamp(18px,2vw,24px);font-weight:700;line-height:1.5;letter-spacing:-.02em;color:#000;
}
.caution p{
  margin-top:24px;
  font-size:clamp(14px,1.6vw,20px);font-weight:700;line-height:1.5;color:#000;letter-spacing:-.02em;
}
.caution p + p{margin-top:16px}

/* ============================================================
   문의 폼
   ============================================================ */
.contact{padding:0 0 110px}
.form-card{
  max-width:900px;margin:0 auto;
  background:#fff;border:1px solid var(--line);border-radius:10px;
  padding:48px 44px;box-shadow:0 14px 40px rgba(0,0,0,.05);
}
.field{margin-bottom:26px}
.field > label{
  display:block;margin-bottom:10px;
  font-size:15px;font-weight:700;letter-spacing:-.02em;color:#000;
}
.field .req{color:#e0362c;margin-left:3px}
.control,.field input[type=text],.field input[type=tel],.field select,.field textarea{
  width:100%;height:52px;padding:0 16px;
  border:1px solid #d9d9d9;border-radius:6px;background:#fff;
  font-family:var(--sans);font-size:15px;color:#000;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.field textarea{height:150px;padding:14px 16px;line-height:1.7;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--navy);box-shadow:0 0 0 3px rgba(24,52,135,.12);
}
.field input::placeholder,.field textarea::placeholder{color:#aaa}
.tel-row{display:grid;grid-template-columns:110px 1fr;gap:10px}
.form-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}
.form-actions .btn{flex:1 1 200px;height:58px}
.form-note{
  margin-top:20px;font-size:13px;color:#777;line-height:1.7;text-align:center;
}
.form-msg{
  margin-top:18px;padding:14px 16px;border-radius:6px;
  font-size:14px;font-weight:700;text-align:center;display:none;
}
.form-msg.ok{display:block;background:#eef5ff;color:var(--navy);border:1px solid #cfe0ff}
.form-msg.err{display:block;background:#fff1f0;color:#c0392b;border:1px solid #ffd5d2}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--footer-bg);color:#fff;padding:72px 0 64px;text-align:center}
.site-footer .f-logo{margin:0 auto 30px}
.site-footer .f-logo img{height:44px;width:auto;margin:0 auto;opacity:.95}
.site-footer address{
  font-style:normal;font-size:12px;font-weight:300;line-height:1.85;color:#fff;
}
.site-footer address a{text-decoration:underline;text-underline-offset:2px}
.site-footer .copy{margin-top:26px;font-size:12px;font-weight:300;color:#808080}
.site-footer .divider{opacity:.5;margin:0 6px}

/* 플로팅 상담 버튼 */
.floating{
  position:fixed;right:22px;bottom:22px;z-index:700;
  display:flex;flex-direction:column;gap:10px;
}
.floating a{
  width:58px;height:58px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.22);
  transition:transform .2s ease;
}
.floating a:hover{transform:scale(1.07)}
.floating .f-kakao{background:var(--kakao);color:#3c1e1e}
.floating .f-tel{background:var(--navy);color:#fff}
.floating svg{width:26px;height:26px}

/* 스크롤 등장 애니메이션
   기본값은 "보임". JS가 살아있을 때만(.js-anim) 숨겼다가 등장시킨다.
   => 스크립트가 실패해도 본문이 사라지지 않음. */
.js-anim .reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}
.js-anim .reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .js-anim .reveal{opacity:1;transform:none;transition:none}
  .btn:hover,.reco:hover,.floating a:hover{transform:none}
  *{scroll-behavior:auto !important}
}
html{scroll-behavior:smooth;scroll-padding-top:110px}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .caution-grid{grid-template-columns:1fr;gap:52px}
  .tenday-media{grid-template-columns:1fr}
  .tenday-media .side{min-height:300px}
}
@media (max-width:900px){
  :root{--header-h:66px}
  .gnb,.util{
    position:fixed;left:0;right:0;top:var(--header-h);
    background:#fff;flex-direction:column;gap:0;
    padding:0;margin:0;
    max-height:0;overflow:hidden;
    box-shadow:0 12px 24px rgba(0,0,0,.1);
    transition:max-height .3s ease;
  }
  .gnb.open{max-height:340px;padding:8px 0}
  .util{display:none}
  .gnb a{padding:15px 24px;width:100%;font-size:16px;border-bottom:1px solid #f1f1f1}
  .gnb a::after{display:none}
  .nav-toggle{display:block}
  .site-header{background:#fff;box-shadow:0 1px 10px rgba(0,0,0,.07)}
  .site-header.is-stuck{height:var(--header-h)}
  .hero{padding:calc(var(--header-h) + 44px) 0 66px}
  .band,.intro,.effect,.works,.steps,.recos,.cautions,.figure-full{padding-top:64px;padding-bottom:64px}
  .figure-full{padding-top:0}
  .works,.steps,.recos,.cautions{padding-top:0}
  .band-dark,.tenday,.features{padding:64px 0}
  .works-grid{grid-template-columns:1fr;gap:40px}
  .feature-grid,.step-grid{grid-template-columns:1fr;gap:22px}
  .sec-head{padding-bottom:36px}
  .form-card{padding:32px 22px}
  .reco{padding:20px 18px;gap:14px}
  .floating{right:14px;bottom:14px}
  .floating a{width:52px;height:52px}
}
@media (max-width:520px){
  .wrap{padding:0 16px}
  .hero-cta{gap:12px}
  .btn{min-width:0;flex:1 1 46%;height:54px;font-size:14px;padding:0 14px}
  .tel-row{grid-template-columns:96px 1fr}
  .work-cap{gap:8px}
}
