#content{
  --blue:#075dbd;
  --blue2:#1376ee;
  --deep:#17357b;
  --text:#111;
  --muted:#505866;
  --line:#d8dce2;
  --soft:#f1f7fd;
  --soft2:#f7fbff;
  --max:1160px;
}
#content,
#content *{box-sizing:border-box}
#content{
  font-family:Pretendard,"Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.5;
  word-break:keep-all;
}
#content button,#content input,#content textarea{font:inherit}
#content a{text-decoration:none;color:inherit}
#content img{display:block;max-width:100%}
#content .container{width:min(calc(100% - 64px),var(--max));margin:0 auto}
#content .section{padding:62px 0}
#content .section-title{text-align:center;font-size:26px;font-weight:800;letter-spacing:-.035em;margin:0 0 26px}

/* HERO */
#content .hero{padding:45px 0 35px}
#content .hero-grid{display:grid;grid-template-columns:1fr 1.08fr;align-items:center;gap:28px}
#content .hero h1{font-size:52px;line-height:1.02;letter-spacing:-.055em;margin:0 0 25px;font-weight:900}
#content .hero-copy{font-size:29px;line-height:1.38;letter-spacing:-.045em;margin:0 0 20px}
#content .hero-copy strong{color:var(--blue);font-weight:800}
#content .hero-desc{font-size:15.5px;color:#333;max-width:540px;margin:0;line-height:1.65}
#content .hero-img{
  width:100%;
  border-radius:4px;
  object-fit:cover;
  object-position:center;
  mix-blend-mode:multiply;
}

/* RECOMMEND */
#content .recommend-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
#content .rec-card{
  min-height:242px;
  border:1px solid #cfd3d8;
  border-radius:16px;
  padding:23px 18px 20px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
#content .asset-rec{width:104px;height:92px;object-fit:cover;object-position:center;margin-bottom:10px}
#content .rec-card h3{font-size:17px;letter-spacing:-.03em;margin:0 0 8px}
#content .rec-card p{font-size:14px;line-height:1.55;margin:0;color:#222}

/* CREDIT */
#content .credit-box{border:1px solid #cfd3d8;border-radius:17px;overflow:hidden}
#content .credit-grid{display:grid;grid-template-columns:repeat(5,1fr);padding:18px 10px 16px}
#content .credit-item{text-align:center;padding:3px 14px;border-right:1px solid #d4d7db}
#content .credit-item:last-child{border-right:0}
#content .credit-item img{height:54px;width:auto;margin:0 auto 5px;object-fit:cover}
#content .credit-item .label{font-size:13px;line-height:1.35;min-height:36px;display:flex;align-items:center;justify-content:center}
#content .credit-item strong{display:block;color:#0759b4;font-size:20px;margin-top:4px;letter-spacing:-.025em}
#content .credit-note{
  background:#eef6fd;color:#0759b4;
  padding:16px 24px;text-align:center;font-size:14px;line-height:1.5
}

/* STEPS */
#content .steps{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #cfd3d8;border-radius:17px;overflow:hidden}
#content .step{text-align:center;position:relative;padding:20px 16px 22px;border-right:1px solid #d4d7db;min-height:196px}
#content .step:last-child{border-right:0}
/*.step:not(:last-child)::after{
  content:"";position:absolute;z-index:2;right:-10px;top:50%;transform:translateY(-50%);
  font-size:37px;font-weight:300;background:white;width:20px;line-height:38px
}*/
#content .step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -5px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 3px solid #3478e5;
    border-right: 3px solid #3478e5;

    transform: translateY(-50%) rotate(45deg);
}
#content .step .num{font-size:13px;color:#0870e7;font-weight:900;margin-bottom:4px}
#content .step img{width:88px;height:82px;object-fit:cover;margin:0 auto 3px}
#content .step h3{font-size:17px;margin:0 0 5px}
#content .step p{font-size:13.5px;margin:0;line-height:1.45}

/* OPEN */
#content .open-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
#content .open-card{
  border:1.5px solid #0875ed;background:#f7fbff;border-radius:16px;
  min-height:112px;padding:18px 25px;
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:17px
}
#content .month{font-size:42px;color:#0768d4;font-weight:900;letter-spacing:-.06em;white-space:nowrap}
#content .open-detail{font-size:14px;line-height:1.55}
#content .btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 23px;border-radius:10px;border:0;
  color:white;background:#0758b3;font-weight:800;cursor:pointer;white-space:nowrap
}

/* CONTACT */
#content .contact{background:#eef6fd;padding:48px 0 55px}
#content .contact-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:55px;align-items:center}
#content .contact h2{font-size:35px;line-height:1.25;letter-spacing:-.045em;margin:0 0 23px}
#content .contact h2 strong{color:#0759b4}
#content .contact-copy{font-size:14px;color:#333;margin:0 0 19px;line-height:1.6}
#content .phone-row{display:flex;align-items:baseline;gap:19px;font-size:17px;margin:3px 0}
#content .phone-row b{width:82px}
#content .phone-row a{font-size:22px;color:#0759b4;font-weight:800}
#content .hours{font-size:13px;margin-top:5px;color:#333}
#content .form-card{border:1px solid #c7ccd3;background:#fff;border-radius:16px;padding:22px 30px}
#content .field{display:grid;grid-template-columns:62px 1fr;gap:12px;align-items:center;margin-bottom:10px}
#content .field label{font-size:13px}
#content input,#content textarea{width:100%;border:1px solid #c7cbd0;border-radius:4px;padding:8px 10px;background:#fff}
#content textarea{min-height:72px;resize:vertical}
#content .check{display:flex;gap:7px;align-items:center;font-size:11.5px;margin:12px 0}
#content .check input{width:15px;height:15px}
#content .form-card .btn{width:100%;min-height:49px;font-size:15px}

#content .mobile-bar{display:none}


.privacy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.privacy-row .check {
    margin: 0;
}

.privacy-view {
    flex: none;
    margin-left: auto;
    font-size: 12px;
    white-space: nowrap;
}


/* TABLET */
@media (max-width:900px){
  #content .container{width:min(calc(100% - 40px),var(--max))}
  #content .hero-grid{grid-template-columns:1fr;gap:18px}
  #content .hero h1{font-size:46px}
  #content .hero-img{max-height:390px;object-fit:contain}
  #content .recommend-grid{grid-template-columns:repeat(2,1fr)}
  #content .credit-grid{grid-template-columns:repeat(2,1fr);padding:0}
  #content .credit-item{padding:19px 12px;border-bottom:1px solid #d4d7db}
  #content .credit-item:nth-child(even){border-right:0}
  #content .credit-item:nth-child(5){grid-column:1 / -1;border-bottom:0;border-right:0}
  #content .steps{grid-template-columns:repeat(2,1fr)}
  #content .step{border-bottom:1px solid #d4d7db}
  #content .step:nth-child(2){border-right:0}
  #content .step:nth-child(2)::after{display:none}
  #content .step:nth-child(3),#content .step:nth-child(4){border-bottom:0}
  #content .open-card{grid-template-columns:auto 1fr}
  #content .open-card .btn{grid-column:1/-1;width:100%}
  #content .contact-grid{grid-template-columns:1fr;gap:30px}
}

/* MOBILE */
@media (max-width:600px){
  #content{padding-bottom:70px}
  #content .container{width:min(calc(100% - 28px),var(--max))}
  #content .section{padding:43px 0}
  #content .section-title{font-size:22px;margin-bottom:19px}
  #content .hero{padding:28px 0 24px}
  #content .hero-grid{display:flex;flex-direction:column}
  #content .hero-text{width:100%}
  #content .hero h1{font-size:38px;margin-bottom:17px}
  #content .hero-copy{font-size:23px;margin-bottom:14px}
  #content .hero-desc{font-size:14px;line-height:1.6}
  #content .hero-img{order:2;width:calc(100% + 12px);margin:2px -6px 0;max-height:none}

  #content .recommend-grid{grid-template-columns:1fr 1fr;gap:10px}
  #content .rec-card{min-height:210px;border-radius:13px;padding:15px 9px}
  #content .asset-rec{width:84px;height:74px;margin-bottom:7px}
  #content .rec-card h3{font-size:14px;margin-bottom:6px}
  #content .rec-card p{font-size:12px;line-height:1.48}

  #content .credit-grid{display:block}
  #content .credit-item{
    display:grid;grid-template-columns:58px 1fr auto;gap:10px;align-items:center;
    text-align:left;padding:13px 15px;border-right:0;border-bottom:1px solid #e0e3e7!important
  }
  #content .credit-item:last-child{border-bottom:0!important}
  #content .credit-item img{width:50px;height:50px;margin:0;object-fit:cover}
  #content .credit-item .label{min-height:0;display:block;text-align:left;font-size:12px}
  #content .credit-item strong{font-size:17px;margin:0;white-space:nowrap}
  #content .credit-note{text-align:left;padding:13px 16px;font-size:12px}

  #content .steps{display:block;border:0;border-radius:0}
  #content .step{
    min-height:0;display:grid;grid-template-columns:72px 1fr;grid-template-rows:auto auto auto;
    column-gap:13px;text-align:left;border:1px solid #d8dce2!important;border-radius:14px;
    padding:14px 15px;margin-bottom:10px
  }
  #content .step::after{display:none!important}
  #content .step .num{grid-column:2;grid-row:1;margin:0 0 2px}
  #content .step img{grid-column:1;grid-row:1/4;width:68px;height:68px;margin:auto;object-fit:cover}
  #content .step h3{grid-column:2;grid-row:2;font-size:15px;margin:0 0 2px}
  #content .step p{grid-column:2;grid-row:3;font-size:12px}

  #content .open-grid{grid-template-columns:1fr;gap:11px}
  #content .open-card{
    min-height:0;padding:17px 18px;grid-template-columns:auto 1fr auto;gap:13px;border-radius:13px
  }
  #content .month{font-size:32px}
  #content .open-detail{font-size:12px}
  #content .open-card .btn{grid-column:auto;width:auto;min-height:42px;padding:0 14px;font-size:12.5px}

  #content .contact{padding:39px 0 34px}
  #content .contact h2{font-size:27px;margin-bottom:17px}
  #content .contact-copy{font-size:13px}
  #content .phone-row{font-size:14px;gap:10px}
  #content .phone-row b{width:70px}
  #content .phone-row a{font-size:19px}
  #content .form-card{padding:19px 16px;border-radius:13px}
  #content .field{grid-template-columns:1fr;gap:5px}
  #content .field label{font-weight:700}
  #content .check{font-size:11px}
  #content .mobile-bar{
    display:flex;position:fixed;z-index:99;left:0;right:0;bottom:0;
    padding:9px 10px calc(9px + env(safe-area-inset-bottom));gap:8px;
    background:rgba(255,255,255,.96);border-top:1px solid #d8dce2;backdrop-filter:blur(9px)
  }
  #content .mobile-bar a{
    flex:1;display:flex;align-items:center;justify-content:center;height:47px;border-radius:9px;
    font-size:13px;font-weight:800
  }
  #content .mobile-bar .call{border:1px solid #0768d4;color:#0768d4;background:#fff}
  #content .mobile-bar .apply{background:#0758b3;color:#fff}
}

@media (max-width:390px){
  #content .recommend-grid{grid-template-columns:1fr}
  #content .rec-card{min-height:0;display:grid;grid-template-columns:82px 1fr;text-align:left;column-gap:10px}
  #content .asset-rec{grid-row:1/3;margin:0;width:75px;height:72px}
  #content .rec-card h3{align-self:end}
  #content .rec-card p{align-self:start}
  #content .open-card{grid-template-columns:auto 1fr}
  #content .open-card .btn{grid-column:1/-1;width:100%}
}
