/* =========================================================
   라라24캐쉬 — main stylesheet
   ========================================================= */

/* 로컬 폰트 SCDream (CDN 폰트 제거, 2026-09-22) */
@font-face{font-family:'SCDream';font-weight:300;font-style:normal;font-display:swap;src:url('../fonts/SCDream3.woff2') format('woff2');}
@font-face{font-family:'SCDream';font-weight:400;font-style:normal;font-display:swap;src:url('../fonts/SCDream4.woff2') format('woff2');}
@font-face{font-family:'SCDream';font-weight:500;font-style:normal;font-display:swap;src:url('../fonts/SCDream5.woff2') format('woff2');}
@font-face{font-family:'SCDream';font-weight:600;font-style:normal;font-display:swap;src:url('../fonts/SCDream6.woff2') format('woff2');}
@font-face{font-family:'SCDream';font-weight:700;font-style:normal;font-display:swap;src:url('../fonts/SCDream7.woff2') format('woff2');}
@font-face{font-family:'SCDream';font-weight:800;font-style:normal;font-display:swap;src:url('../fonts/SCDream8.woff2') format('woff2');}
@font-face{font-family:'SCDream';font-weight:900;font-style:normal;font-display:swap;src:url('../fonts/SCDream9.woff2') format('woff2');}

:root{
  --navy: #0f2d6b;
  --navy-dark: #0a1f4d;
  --sky-top: #cdeefb;
  --sky-bottom: #86d3ef;
  --ink: #101418;
  --ink-soft: #333c46;
  --yellow: #ffe14d;
  --pink: #ff5f9e;
  --blue-dot: #1f4fd8;
  --footer-bg: #002824;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1170px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'SCDream', 'Malgun Gothic', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

button{ font-family: inherit; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header{
  background: #c6ecfa;
  padding: 18px 0 6px;
  position: relative;
  z-index: 5;
}
.site-header .container{
  display: flex;
  align-items: center;
}
.site-header .logo img{
  height: 70px;
  width: auto;
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--sky-top) 0%, var(--sky-bottom) 100%);
  padding: 20px 0 px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-decor{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.dot{
  position: absolute;
  border-radius: 50%;
}
.dot--pink{ width: 20px; height: 20px; background: var(--pink); top: 14%; left: 4%; }
.dot--blue{ width: 16px; height: 16px; background: var(--blue-dot); top: 24%; left: 12%; }
.dot--yellow{ width: 14px; height: 14px; background: var(--yellow); top: 30%; left: 17%; }
.dot--blue2{ width: 18px; height: 18px; background: var(--blue-dot); top: 47%; right: 12%; }
.dot--white1{ width: 12px; height: 12px; background: rgba(255,255,255,.85); top: 8%; left: 26%; }
.dot--white2{ width: 10px; height: 10px; background: rgba(255,255,255,.85); top: 60%; left: 6%; }
.dot--white3{ width: 22px; height: 22px; background: rgba(255,255,255,.55); top: 66%; right: 20%; }
.dot--yellow2{ width: 12px; height: 12px; background: var(--yellow); top: 40%; right: 5%; }

.hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow{
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.hero-title{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: 95px;
  line-height: 1.28;
  letter-spacing: -0.5px;
}
.hero-title .line2{
  position: relative;
  display: inline-block;
}
.hero-title .line2::after{
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 2px;
}

.hero-note{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.hero-note .badge-dot{
  width: 20px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-note .badge-dot::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.btn-pill{
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 10px;

  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
}

.hero-image{
  width: 100%;
  max-width: 740px;
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image img{
  margin: 0 auto;
}

/* Global responsive image swap helpers */
img.desktop-only{ display: block; }
img.mobile-only{ display: none; }
@media (max-width: 640px){
  img.desktop-only{ display: none; }
  img.mobile-only{ display: block; }
}

/* Hero application card */
.hero-form-card{
  max-width: 980px;
  margin: 0px auto 0;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  text-align: left;
}
.hero-form-card .form-heading{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}
.hero-form-card h2{
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}
.hero-form-card .form-sub{
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* =========================================================
   CRM form widget mount points
   Style1 = mobile / tablet, Style2 = desktop
   ========================================================= */
.crm-form-wrap{ width: 100%; }
.crm-form-wrap[data-style="style2"]{ display: block; }
.crm-form-wrap[data-style="style1"]{ display: none; }

@media (max-width: 991px){
  .crm-form-wrap[data-style="style2"]{ display: none; }
  .crm-form-wrap[data-style="style1"]{ display: block; }
}

/* Minimal fallback styling while/if the external widget script has not
   injected its own styles yet, so the mount point isn't a jarring blank gap */
.crm-form-wrap:empty{
  min-height: 64px;
}

/* =========================================================
   Features section ("조회없이 300")
   ========================================================= */
.features{
  background: #f7f9fa;
  padding: 70px 0 76px;
}
.features-head{
  text-align: center;
  margin-bottom: 40px;
}
.features-head h2{
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
}
.features-head p{
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
}
.feature-card .icon{
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
}
.feature-card h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.feature-card p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   CTA section ("비대면 무서류 24시")
   ========================================================= */
.cta-section{
  background: linear-gradient(100deg, #e9e9e9 0%, #ffffff 45%, #ededed 100%);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.cta-media, .cta-content{ min-width: 0; }
.cta-media{
  padding: 40px 20px 0 60px;
}
.cta-media img{
  max-width: 420px;
  margin: 0 auto;
}
.cta-content{
  padding: 40px 60px 40px 20px;
}
.cta-eyebrow{
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink-soft);
}
.cta-content h2{
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 6px;
}
.cta-amount{
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 18px;
}
.cta-desc{
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
  max-width: 420px;
}

/* =========================================================
   Second apply section ("빠른 대출 신청")
   ========================================================= */
.apply-section{
  background: #fff;
  padding: 60px 0 70px;
}
.apply-head{
  text-align: center;
  margin-bottom: 26px;
}
.apply-head h2{
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.apply-head p{
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.apply-section .crm-form-wrap-outer{
  max-width: 980px;
  margin: 0 auto;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: var(--footer-bg);
  color: #f2f2f2;
  padding: 50px 0 40px;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
}
.site-footer p{
  margin: 0 0 18px;
}
.site-footer .warning{
  color: #ff5252;
  font-weight: 400;
}
.site-footer .reg-link{
  color: #4d8dff;
}
.site-footer h2{
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 10px;
  color: #fff;
}
.site-footer .copyright{
  font-weight: 500;
  color: #e5f8f9;
  margin: 0;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px){
  .cta-section{
    grid-template-columns: minmax(0, 1fr);
  }
  .cta-media{
    padding: 40px 30px 0;
  }
  .cta-content{
    text-align: center;
  }
  .cta-desc{ margin-left: auto; margin-right: auto; }
  .feature-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .hero-title{ font-size: 40px; }
  .hero-image img.mobile-only{ margin: 0 auto; }
  .hero-form-card{
    padding: 22px 18px;
    border-radius: var(--radius-md);

  }
  .hero-form-card .form-heading{
    flex-direction: column;
    gap: 4px;
  }
  .features{ padding: 50px 0; }
  .feature-grid{ grid-template-columns: 1fr; }
  .cta-content h2, .cta-amount{ font-size: 30px; }
  .cta-content{ padding: 30px 20px 36px; }
  .cta-media{ padding: 30px 20px 0; }
  .site-header .logo img{ height: 34px; }
    .eyebrow{
  font-size: 12px;

}
}

/* CRM 폼 라벨 여백 (디자이너 표준) */
.crm-label:first-child{ margin-top: 25px !important; margin-bottom: 10px !important; }
