<style>

  html {
  scroll-behavior: smooth;
}

  .service-card-thumb {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-lottie {
  width: 100px;
  height: 100px;
}

.service-lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}


  .lottie-section {
    background: #071631;
    padding: 100px 0;
  }

  .lottie-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lottie-box {
    width: 420px;
    height: 420px;
  }


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  background: linear-gradient(180deg, #04152f 0%, #0a2a55 100%);
 position: relative;
  color: #fff;
}

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

/* ================= HERO ================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('/img/bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1;
}

/* ================= HEADER ================= */

.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.25s ease;
}

.hero-header.scrolled {
  background: #171e2b;
}

.hero-header-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 14px 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-logo {
  font-size: 19px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 2px;
}

.hero-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.hero-nav a:hover {
  opacity: 0.8;
}

/* ================= HERO TEXT ================= */

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  background: #0000005c;
}

.hero-copy {
  position: absolute;
  left: 29.5%;
  top: 44.5%;
  transform: translateY(-50%);
  width: 420px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -2.6px;
  font-weight: 700;
}

.hero-highlight {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.6px;
}

.hero-desc span {
  color: #ffb300;
  font-weight: 800;
}

/* ================= FADE-UP ================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 1s; }

/* ================= RESPONSIVE ================= */

@media (max-width: 1280px) {
  .hero-copy {
    left: 26%;
    width: 360px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-highlight {
    font-size: 24px;
  }

  .hero-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-header-inner {
    padding: 12px 16px;
  }

  .hero-logo {
    font-size: 13px;
  }

  .hero-nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero-copy {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
  }

  .hero-copy h1 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .hero-highlight {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 15px;
  }
}

.floating-consult {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #061634;
  z-index: 2000;
}

.floating-consult-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔥 핵심 구조 */
.floating-top {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 텍스트 + 카카오를 하나로 묶음 */
.floating-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 텍스트 */
.floating-text {
  text-align: center;
}

.floating-consult-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.floating-consult-desc {
  font-size: 16px;
  font-weight: 800;
  color: #f0b23c;
}

/* 카카오 */
.floating-kakao img {
  width: 44px;
  height: 44px;
}

/* 전화버튼 */
.floating-phone {
  margin-top: 12px;
  min-width: 270px;
  height: 44px;
  border-radius: 999px;
  background: #efb64b;
  color: #111;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 80px;
}

/* 은은한 점 (거의 부담 없음) */
.info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;

  background: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;

  opacity: 0.5;
}

/* 핵심: 한 줄 라인만 */
.info-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(77,163,255,0.25) 50%,
    transparent 100%
  );

  animation: lineMove 8s linear infinite;
  will-change: transform;
}

@keyframes lineMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.info-inner {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 0 18px;
}

.quote-mark {
  text-align: center;
  color: #f2b63e;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.quote-mark-bottom {
  margin-top: -6px;
  margin-bottom: 14px;
}

.solution-title,
.section-title {
  margin: 2px 0 0;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.8px;
  font-weight: 900;
  color: #fff;
}

.solution-hero-block {
  text-align: center;
}

.solution-anim-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 16px;
}

.solution-anim-box {
  width: 250px;
  max-width: 100%;
}

.solution-anim-box img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-main-copy {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.5px;
  color: #fff;
  font-weight: 800;
}

.solution-stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 48px;
}

.stat-box {
  flex: 1;
  background: #f4f5f7;
  border-radius: 18px;
  min-height: 82px;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.stat-box span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: #111;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-box strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: #111;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.service-section {
  margin-bottom: 54px;
}

.service-top-illust {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.service-top-illust img {
  width: 165px;
  max-width: 100%;
  height: auto;
  display: block;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.service-card {
  background: #f8f8f9;
  border-radius: 16px;
  padding: 15px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.service-card-thumb {
  flex: 0 0 64px;
}

.service-card-thumb img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.service-card-body {
  flex: 1;
}

.service-card-body h4 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  color: #111;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.service-card-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #4d5562;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  background: #f8f8f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  color: #111;
  font-weight: 800;
}

.faq-toggle {
  flex: 0 0 auto;
  font-size: 18px;
  color: #666;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 12px;
  line-height: 1.7;
  color: #4d5562;
  font-weight: 500;
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .info-inner {
    padding: 0 14px;
  }

  .solution-title,
  .section-title {
    font-size: 21px;
  }

  .solution-main-copy {
    font-size: 17px;
  }

  .stat-box strong {
    font-size: 19px;
  }

  .service-card {
    padding: 14px;
    gap: 12px;
  }

  .service-card-thumb {
    flex-basis: 56px;
  }

  .service-card-thumb img {
    width: 56px;
    height: 56px;
  }
}

.info-inner {
  width: 100%;
  max-width: 820px;   /* 🔥 이거 키워 */
  margin: 0 auto;
  padding: 0 16px;
}

.solution-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 48px;
}

.stat-box {
  flex: 1;
  background: #f4f5f7;
  border-radius: 18px;
  min-height: 96px;
  padding: 16px 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.stat-box span {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  color: #111;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  color: #111;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-align: center;
}

#lottie-graph {
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.quote-title-wrap {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0 auto 18px;
}

.solution-hero-block .quote-title-wrap,
.service-section .quote-title-wrap,
.faq-section .quote-title-wrap {
  display: block;
  width: fit-content;
      margin-bottom: 50px
}

.solution-title,
.section-title {
  margin: 0;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.8px;
  font-weight: 900;
  color: #fff;
}

.quote-top,
.quote-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  line-height: 1;
  color: #f2b63e;
  font-weight: 900;
}

.quote-top {
  top: -18px;
}

.quote-bottom {
  bottom: -28px;
}

#lottie-graph,
#lottie-graph-2 {
  width: 100%;
  height: 100%;
}

.consult-section {
  background: #111;
  padding: 58px 0 34px;
  border-bottom: 1px solid #4d4d4d;
}

.consult-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 26px;
}

.consult-title-wrap {
  display: block;
  width: fit-content;
  margin: 0 auto 42px;
}

.consult-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.form-group label span {
  color: #ff4b57;
  margin-left: 2px;
}

.form-group input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: 0;
  border-radius: 14px;
  background: #e9e9eb;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 600;
  padding: 0 16px;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: #828898;
  font-weight: 500;
}

.form-help {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #f3b12d;
  font-weight: 700;
}

.agree-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 18px;
  cursor: pointer;
  user-select: none;
}

.agree-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #ffffff;
  cursor: pointer;
}

.agree-row span {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.consult-submit {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: #f7a900;
  color: #111111;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.4px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.consult-submit:hover {
  filter: brightness(1.03);
}

.consult-submit:active {
  transform: translateY(1px);
}

.site-footer {
  background: #111;
  padding: 22px 0 26px;
}

.site-footer-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.site-footer-inner p {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.55;
  color: #ffffff;
  font-weight: 700;
}

.site-footer-inner a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer-inner .copyright {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .consult-section {
    padding: 52px 0 30px;
  }

  .consult-inner {
    padding: 0 18px;
  }

  .consult-title-wrap {
    margin-bottom: 34px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input {
    height: 46px;
    font-size: 14px;
    border-radius: 13px;
  }

  .consult-submit {
    height: 48px;
    font-size: 17px;
  }
}

.site-footer {
  background: #111;
  padding: 22px 0 160px;
}

.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, #000000 0%, #554820 20%, #d4af37 50%, #554820 80%, #000000 100%);
}


</style>
