@charset "UTF-8";

/* =========================
   custom reset
========================= */


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

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  border: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address,
em,
i {
  font-style: normal;
}

strong,
b {
  font-weight: inherit;
}

fieldset,
legend {
  margin: 0;
  padding: 0;
  border: 0;
}

hr {
  margin: 0;
  border: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}


.wrap {
  min-height: calc(100vh - (130px));
}

.icon-box{
  width: 24px;
  height: 24px;
}
.icon-box svg{
  width: 24px;
  height: 24px;
}
.icon-box svg path{
  fill: currentColor;
}

/* =========================
   Header
========================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(36, 54, 103, 0.06);
  box-shadow: 0 4px 18px rgba(15, 17, 21, 0.04);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 54, 103, 0.08);
  box-shadow: 0 12px 32px rgba(36, 54, 103, 0.10);
}

.header-inner {
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: height 0.3s ease, padding 0.3s ease;
}

.header.scrolled .header-inner {
  height: 60px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding-bottom: 3px;
}

.logo-img {
  display: block;
  height: 47px;
  width: auto;
  transition: height 0.3s ease;
}

.header.scrolled .logo-img {
  height: 36px;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  height: 100%;
  gap: 30px;
  min-width: 0;
  transition: gap 0.3s ease;
}

.header.scrolled .header-menu {
  gap: 24px;
}

.header-menu .menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #1e1e1f;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease, font-size 0.25s ease;
}

.header.scrolled .header-menu .menu-link {
  font-size: 18px;
}

.header-menu .menu-link:hover {
  text-decoration: none;
  color: #15aabc;
}

.header-menu .menu-link.active {
  color: #15aabc;
}

.header-menu .menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15aabc, #f39224);
  transition: width 0.3s ease;
}

.header-menu .menu-link:hover::after,
.header-menu .menu-link.active::after {
  width: 100%;
}

/* =========================
   Login Button
========================= */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
  height: 46px;
  padding: 0 24px 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15aabc, #243667);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(36, 54, 103, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    height 0.25s ease,
    padding 0.25s ease,
    font-size 0.25s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(21, 170, 188, 0.22);
  background: linear-gradient(135deg, #15aabc, #1f4d8f);
  color: #fff;
  text-decoration: none;
}

.header.scrolled .login-btn {
  height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(36, 54, 103, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.mobile-menu-btn:hover {
  background: rgba(21, 170, 188, 0.10);
}

.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #243667;
}

/* =========================
   Mobile Offcanvas
========================= */
.mobile-offcanvas {
  width: min(88vw, 360px) !important;
  border-left: 1px solid rgba(36, 54, 103, 0.06);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -20px 0 40px rgba(36, 54, 103, 0.12);
}

.mobile-offcanvas-header {
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
}

.mobile-logo-img {
  display: block;
  height: 42px;
  width: auto;
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
}

.mobile-close-btn {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(36, 54, 103, 0.06);
  flex-shrink: 0;
}

.mobile-close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #243667;
}

.mobile-close-btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-offcanvas-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 8px 20px 20px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1f;
  background: transparent;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mobile-menu-link:hover {
  text-decoration: none;
  color: #15aabc;
  background: rgba(21, 170, 188, 0.08);
  transform: translateX(2px);
}

.mobile-menu-link.active {
  color: #15aabc;
  background: linear-gradient(
    90deg,
    rgba(21, 170, 188, 0.12),
    rgba(243, 146, 36, 0.08)
  );
}

.mobile-menu-bottom {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: flex-start;
}

.mobile-contact-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(36, 54, 103, 0.48);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.mobile-contact-link:hover {
  color: rgba(21, 170, 188, 0.8);
  text-decoration: none;
}

/* =========================
   Footer
========================= */
.content-footer {
  position: relative;
  background: linear-gradient(180deg, #18233f 0%, #0f1115 100%);
  color: #c9ccd6;
  padding: 64px 0 40px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 링크 영역 */
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-link {
  position: relative;
  color: #f5f7fb;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15aabc, #f39224);

  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #15aabc;
  opacity: 1;
}

.footer-link:hover::after {
  width: 100%;
}

/* 회사 정보 */
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.footer-company .line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-company .line span {
  color: #c9ccd6;
}

.footer-company .line span::after {
  content: "•";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-company .line span:last-child::after {
  content: "";
}

.footer-company .line:nth-child(2) {
  color: #98a2b8;
}

.footer-company .line:nth-child(2) span {
  color: #98a2b8;
}


.footer-copy {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #7f889d;
}

.fix-floating-area {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
}

.top-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: linear-gradient(135deg, #15aabc, #243667);
  color: #fff;
  font-size: 18px;
  font-weight: 700;

  box-shadow: 0 10px 24px rgba(36, 54, 103, 0.22);
  backdrop-filter: blur(6px);

  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(21, 170, 188, 0.24);
}


/* =========================
   컨텐츠 공통
========================= */

.lp-section {
    padding: 56px 24px 80px;
  }
  
  .lp-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .lp-head {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .lp-head .lp-head__title {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
  }
  
  .lp-head .lp-head__desc {
    margin: 0;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    word-break: keep-all;
  }


/* =========================
   서비스 소개
========================= */



/* =========================
   이용자 후기
========================= */



/* =========================
   이용료 안내
========================= */
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
  }
  
  .plan-card {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px 20px 22px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  
  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  }
  .plan-card-cont{
    padding: 0 10px;
  }
  .plan-card.recommended {
    border: 2px solid rgba(21, 170, 188, 0.35);
    box-shadow: 0 14px 36px rgba(21, 170, 188, 0.12);
  }
  
  .plan-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #15AABC;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(21, 170, 188, 0.2);
  }
  
  .plan-name {
    position: relative;
    font-size: 32px;
    font-weight: 800;
    margin: 8px 0 18px;
    color: #243667;
    letter-spacing: -0.02em;
  }
  
  .plan-name::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    margin-top: 8px;
    background: #243667;
    border-radius: 2px;
  }
  
  .plan-card.recommended .plan-name {
    color: #15AABC;
  }
  
  .plan-card.recommended .plan-name::after {
    background: #15AABC;
  }
  
  .plan-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 18px;
    line-height: 1;
  }
  
  .plan-price strong {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.03em;
  }
  .plan-price .text-amount::after{
    content: '원';
    font-size: 32px;
    position: relative;
    top: -2px;

  }
  .plan-price .text-unit {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 5px;
  }
  .plan-price .text-unit::before{
    content: '/';
    padding-right: 3px;
  }

  .plan-desc {
    min-height: 36px;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 22px;
    word-break: keep-all;
  }
  
  .plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .plan-feature-list li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
  }
  
  .plan-feature-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 16px;
    font-weight: 800;
    color: #F39224;
  }
  
  .plan-feature-list li small {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
  }
  
  .plan-action {
    margin-top: auto;
    margin-bottom: 6px;
  }
  
  .plan-button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #243667;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .plan-button:hover {
    background: #223874;
  }
  
  .plan-button.secondary {
    background: #6b7280;
  }
  
  .plan-button.secondary:hover {
    background: #4b5563;
  }
  
  .plan-card.recommended .plan-button {
    background: #15AABC;
  }
  
  .plan-card.recommended .plan-button:hover {
    background: #1398a9;
  }
  
  .plan-extra {
    background: #f6f3ff;
    border-radius: 18px;
    padding: 18px 18px 16px;
    border: 1px solid #ebe5ff;
  }
  
  .plan-extra-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 800;
    color: #243667;
    line-height: 1.5;
  }
  
  .plan-extra ul {
    margin: 0;
    padding-left: 18px;
    color: #4b5563;
  }
  
  .plan-extra li {
    font-size: 14px;
    line-height: 1.7;
  }
  .plan-note {
    margin-top: 28px;
    padding: 24px 30px;
    border: 1px solid #dfe5ec;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #f3f6f9 100%);
  }
  
  .plan-note__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .plan-note__item {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6b7a;
    letter-spacing: -0.01em;
    word-break: keep-all;
  }
  
  .plan-note__item::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #15aabc;
    opacity: 0.9;
  }
  
  .plan-note__item strong {
    font-weight: 700;
    color: #3a4656;
  }
  
  .plan-note__link {
    display: inline-block;
    margin-left: 8px;
    border: 1px solid #5f6b7a;
    color: #5f6b7a;
    border-radius: 14px;
    padding: 0 8px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
  }
  
  .plan-note__link:hover {
    text-decoration: underline;
  }


/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 999px) {

  .header-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header-right {
    margin-left: auto;
  }


  .mobile-offcanvas-header {
    height: 72px;
  }

  .mobile-logo-img {
    height: 38px;
  }
}


@media (max-width: 768px) {

  .lp-head {
    margin-bottom: 30px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-head .lp-head__title {
    font-size: 32px;
  }
  .lp-head .lp-head__desc {
    font-size: 16px;
    line-height: 1.4;
  }
  .plan-name {
    font-size: 28px;
  }

  .plan-price strong {
    font-size: 32px;
  }
  .contents {
    margin-top: 72px;
  }

  .header-inner {
    height: 72px;
    padding: 0 16px;
  }


  .logo-img {
    height: 40px;
  }

  .header.scrolled .logo-img {
    height: 34px;
  }


  .content-footer {
    padding: 52px 0 34px;
  }

  .footer-links {
    gap: 16px;
    margin-bottom: 22px;
  }

  .footer-company .line {
    gap: 10px;
  }

  .footer-company .line span::after {
    margin-left: 10px;
  }

  .fix-floating-area {
    right: 16px;
    bottom: 16px;
  }

  .top-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .plan-note {
    margin-top: 22px;
    padding: 18px 18px;
    border-radius: 18px;
  }

  .plan-note__list {
    gap: 12px;
  }

  .plan-note__item {
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .plan-note__item::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }

  .plan-note__link {
    margin-left: 6px;
  }
}




@media (max-width: 576px) {


  .login-btn {
    min-width: auto;
    height: 36px;
    padding: 0 20px 0 14px;
    font-size: 14px;
  }
  .header.scrolled .login-btn {
    height: 36px;
    font-size: 14px;
    padding: 0 16px 0 10px;
  }


  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mobile-menu-btn span {
    width: 16px;
  }

  .mobile-offcanvas {
    width: 90vw !important;
  }

  .mobile-offcanvas-header {
    height: 68px;
    padding: 0 16px;
  }

  .mobile-offcanvas-body {
    padding: 8px 16px 16px;
  }

  .mobile-logo-img {
    height: 34px;
  }

  .mobile-menu-link {
    min-height: 52px;
    font-size: 17px;
    padding: 0 14px;
  }

  .mobile-contact-link {
    font-size: 12px;
  }
}
