@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
    height: 100%;
    margin: 0; 
    background-color: #ffffff !important;
    color-scheme: light;
}

body {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    position: relative;
    font-family: "Pretendard Variable";
    color: #202124;
    word-break: keep-all;
    letter-spacing:-0.2px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff !important;
    line-height: 1.65;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1, p {
    margin-bottom: 0;
}

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

.font-pretendard {
    font-family: "Pretendard Variable";
}

main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 56px;
}

.container {
  max-width: 1300px;
}

@media (min-width: 575.98px) {
  main {
    padding-top: 64px;
  }
}

@media (min-width: 1200px) {
  main {
    padding-top: 74px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #ffffff;
}

.header-height {
    position: relative;
    display: flex;
    align-items: center;
    height: 56px;
    border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 575.98px) {
    .header-height {
        height: 64px;
    }
}

@media (min-width: 1200px) {
    .header-height {
        height: 74px;
    }
}

.container-fullscreen {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.container {
  padding-right: 20px;
  padding-left: 20px;
}

.flex {
    display: flex;
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.align-center {
    align-items: center
}

.header-left a{
    display: flex;
    align-items: center;
}

.header-left img {
    width: 100%;
}

.header-left span {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0px;
}

@media (max-width: 575.98px) {
    .header-left span {
        font-size: 21px;
    }

    .header-left img {
        width: 180px;
    }
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 48px;
}

@media (max-width: 1199.98px) {
    .header-center {
        display: none;
    }
}

.header-center a {
    font-size: 20px;
    font-weight: 400;
    padding: 0px 4px;
    color: #000;
    height: 74px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;  /* ← 추가 */
}

.header-center a:hover {
    border-bottom-color: #1a73e8;  /* 색상만 변경 */
}

.header-right .header-btns a,
.header-right .header-btns button {
  display: none;
  font-size: 20px;
  font-weight: 400;
  color: #000
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-btns button {
  border: none;
  background: #fff;
  padding: 0px;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 1199.98px) {
    .header-right .header-btns a,
    .header-right .header-btns button {
        display: flex;
    }
}

.move-to-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(90deg, #1a73e8, #2196F3, #1a73e8);
    background-size: 200% auto;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    height: 60px;
    min-width: 100px;
    text-align: center;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

@media (max-width:575.98px) {
    .move-to-order {
        font-size: 17px;
        width: 100%;
        height: 54px;
        max-width: 260px;
    }
}

.move-to-order:hover {
    background: linear-gradient(90deg, #ffffff, #f5f5f5, #ffffff);
    background-size: 200% auto;
    color: #1a73e8 !important;
    border: 1px solid #1a73e8;
    animation: gradient-shift-hover 2s ease infinite;
}

@keyframes gradient-shift-hover {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.move-to-order:active, .move-to-order:focus {
    background: linear-gradient(90deg, #ffffff, #f5f5f5, #ffffff);
    background-size: 200% auto;
    color: #1a73e8 !important;
    border: 1px solid #1a73e8;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 16.5px;
    font-weight: 500;
    color: #ffffff !important;
    background-color: #1a73e8;
    border: 1px solid #1a73e8;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
    height: 42px;
}

@media (max-width:575.98px) {
    .register-btn {
        font-size: 16px;
        width: 100%;
    }
}

.register-btn:hover {
    background-color: #fff;
    color: #1a73e8 !important;
    border: 1px solid #1a73e8;
}

.register-btn:active, .register-btn:focus {
    background-color: #fff;
    color: #1a73e8 !important;
    border: 1px solid #1a73e8;
}

.mysevice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 16.5px;
    font-weight: 500;
    color: inherit !important;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
    height: 42px;
}

@media (max-width:575.98px) {
    .mysevice-btn {
        font-size: 16px;
        width: 100%;
    }
}

.mysevice-btn:hover {
    border: 1px solid #575757;
}

.mysevice-btn:active, .mysevice-btn:focus {
    border: 1px solid #575757;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 16.5px;
    font-weight: 500;
    color: #ffffff !important;
    background-color: #202936;
    border: 1px solid #202124;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
    min-height: 60px;
}

@media (max-width:575.98px) {
    .demo-btn {
        font-size: 16px;
        width: 100%;
    }
}

.demo-btn:hover {
    background-color: #fff;
    color: #202124 !important;
    border: 1px solid #202124;
}

.demo-btn:active, .demo-btn:focus {
    background-color: #fff;
    color: #202124 !important;
    border: 1px solid #202124;
}


/*
.header-right .material-icons {
    font-variation-settings: 'FILL' 1;
    color: #5F6368;
    font-weight: 300;
    margin-right: 5px;
    user-select: none;
    -webkit-user-select: none;
    transform: translateY(0px);
}
*/
.navbar-toggler-icon {
    background-image: url("../images/icon/open1.svg");
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("../images/icon/close1.svg");
    width: 18px;
    height: 18px;
}

.mobile-menubar {
    margin-top: 36px;
    padding: 0px 16px;
}

@media (min-width:575.98px) {
  .mobile-menubar {
    padding: 0px 36px;
  }
}

.mobile-menu-link {
  margin: 18px 0px;
}

.mobile-menu-link a {
    font-size: 24px;
    margin: 18px;
    font-weight: 500
}

.mobile-menu-btns {
  margin: 36px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.top-banner {
  height: 54px;
  background: #F1F3F9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600
}
/* ===== 메인 히어로 ===== */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 70px;
    align-items: center
}

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575.98px) {
  .hero-grid {
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
    .display-left {
        text-align: center;
        max-width: 680px;
        margin: auto
    }
}


.fs-display {
    font-size: 72px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

@media (max-width: 1119.98px) {
    .fs-display {
        font-size: 40px;
    }
}

@media (max-width: 576.98px) {
    .fs-display {
        font-size: 34px;
        line-height: 42px;
    }
}

@media (max-width: 360.98px) {
    .fs-display {
        font-size: 33px;
    }
}

.display-paragraph-lg {
    font-size: 20px;
    margin-bottom: 36px
}

@media (max-width: 1199.98px) {
    .display-paragraph-lg {
        font-size: 18px;
    }
}

.display-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.display-paragraph-sm {
    font-size: 15px;
    color: #4f5358;
}

@media (max-width: 1199.98px) {
  .display-paragraph-sm {
    font-size: 14px;
  }
}

/* ===== 공통 ===== */
.blue-animation {
    --g1: rgb(36, 127, 253);
    --g2: rgb(21, 85, 245);
    --g3: rgb(60, 150, 252);

    background: linear-gradient(45deg,
            var(--g1) 0%,
            var(--g2) 10%,
            var(--g3) 20%,
            var(--g1) 35%,
            var(--g2) 50%,
            var(--g3) 60%,
            var(--g1) 70%,
            var(--g2) 80%,
            var(--g3) 90%,
            var(--g1) 100%);

    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    animation: gemini-flow 5s linear infinite;
}

@keyframes gemini-flow {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.sub-display {
    font-size: 52px;
    line-height: 1.4;
    font-weight: 600
}

@media (max-width: 1199.98px) {
    .sub-display {
        font-size: 36px;
    }
}

@media (max-width: 576.98px) {
    .sub-display {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 360.98px) {
    .sub-display {
        font-size: 24px;
    }
}

.mb-60-40px {
  margin-bottom: 40px;
}

@media (max-width: 576.98px) {
  .mb-60-40px {
    margin-bottom: 34px;
  }
}

.sub-page-title {
  font-size: 44px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 1199.98px) {
    .sub-page-title {
        font-size: 34px;
    }
}

@media (max-width: 576.98px) {
    .sub-page-title  {
        font-size: 28px;
    }
}

.sub-page-desc {
  font-size: 20px;
  color: #4f5358;
}

@media (max-width: 576.98px) {
  .sub-page-desc {
    font-size: 17px;
  }
}

.sub-text {
  font-size: 20px;
  color: #4f5358;
  font-weight: 400;
}

@media (max-width: 576.98px) {
  .sub-text {
    font-size: 16px;
  }
}

@media (max-width: 768.98px) {
  .sub-text {
    font-size: 18px;
  }
}

.mathman-area {
  padding: 12px;
  margin-top: 40px;
}
.mobile-mathman-img {
    width:27%;
}

@media (max-width: 575.98px) {
    .mobile-mathman-img {
        width:50%;
    }
}


@media (max-width: 1200px) {
  .navbar-collapse {
    max-height: 100vh; /* 메뉴가 화면의 75%만 차지하고, 넘치면 스크롤 */
    overflow-y: auto;
    transition:none; /* 메뉴 내부에서만 스크롤 허용 */
  }
}

/* 메뉴바 배경 투명으로 만들기 */
@media (max-width: 1200px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.65) !important;
    /* 같은 색상과 투명도를 적용 */
    backdrop-filter: blur(20px);
    /* 배경 흐림 효과 */
    -webkit-backdrop-filter: blur(20px);
    /* 사파리 호환성 */
    position: fixed;
    /* 메뉴가 전체 화면을 덮도록 설정 */
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0px;
    z-index: 1050;
    /* z-index를 높게 설정하여 메뉴가 상단에 위치 */
  }

  .navbar-nav {
    background-color: transparent;
    /* 같은 색상과 투명도를 적용 */
    position: fixed;
    /* 메뉴가 전체 화면을 덮도록 설정 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0px 20px;
    margin-top: 0px;
    z-index: 1050;
    /* z-index를 높게 설정하여 메뉴가 상단에 위치 */
  }
}

.navbar-toggler {
  position: relative;
  z-index: 1051;
}

/*==== 섹션패딩 ==== */

.hero-section {
  padding: 68px 0px 50px 0px;
}

@media (min-width: 757.98px) {
  .hero-section {
    padding: 86px 0px 55px 0px;
  }
}

@media (min-width: 1199.98px) {
  .hero-section {
    padding: 100px 0px 100px 0px;
  }
}

.section-one {
  padding: 50px 0px;
}

@media (min-width: 757.98px) {
  .section-one {
    padding: 55px 0px;;
  }
}

@media (min-width: 1199.98px) {
  .section-one {
    padding: 100px 0px;
  }
}

.section-two {
  padding: 50px 0px 80px 0px;
}

@media (min-width: 757.98px) {
  .section-two {
    padding: 55px 0px 88px 0px;
  }
}

@media (min-width: 1199.98px) {
  .section-two {
    padding: 100px 0px 160px 0px;
  }
}

.section-three {
  padding: 75px 0px;
}

@media (min-width: 757.98px) {
  .section-three {
    padding: 90px 0px;
  }
}

@media (min-width: 1199.98px) {
  .section-three {
    padding: 100px 0px;
  }
}

.section-four {
  padding: 75px 0px;
}

@media (min-width: 757.98px) {
  .section-four  {
    padding: 90px 0px;;
  }
}

@media (min-width: 1199.98px) {
  .section-four  {
    padding: 150px 0px;
  }
}

.section-five {
  padding: 25px 0px 100px 0px;
}

@media (min-width: 757.98px) {
  .section-five {
    padding: 28px 0px 110px 0px;
  }
}

@media (min-width: 1199.98px) {
  .section-five  {
    padding: 50px 0px 200px 0px;
  }
}

.section-homepage {
  padding: 60px 0px;
}

@media (min-width: 757.98px) {
  .section-homepage {
    padding: 70px 0px;
  }
}

@media (min-width: 1199.98px) {
  .section-homepage {
    padding: 80px 0px;
  }
}

.section-rounded-cta {
  padding: 60px 0px 120px 0px;
}

@media (min-width: 757.98px) {
  .section-rounded-cta {
    padding: 70px 0px 140px 0px;
  }
}

@media (min-width: 1199.98px) {
  .section-rounded-cta {
    padding: 80px 0px 160px 0px;
  }
}

/* ===== 감추어진 높이들 ===== */
.hidden-height-top {
    height: 68px;
}

@media (min-width: 757.98px) {
    .hidden-height-top {
        height: 86px;
    }
}

@media (min-width: 1200px) {
    .hidden-height-top {
        height: 94px;
    }
}

.hidden-height2 {
    height: 100px
}

@media (min-width: 757.98px) {
    .hidden-height2 {
        height: 110px;
    }
}

@media (min-width: 1200px) {
    .hidden-height2 {
        height: 200px;
    }
}

.hidden-height.height80-60 {
  height: 80px;
}

@media (max-width: 1199.98px) {
  .hidden-height.height80-60 {
    height: 60px;
  }
}

.hidden-height.height70-50 {
  height: 70px;
}

@media (max-width: 1199.98px) {
  .hidden-height.height70-50 {
    height: 50px;
  }
}

.order-hidden-height-1 {
  height: 50px;
}

.order-hidden-height-2 {
  height: 200px
}

.myservice-hidden-height-1 {
  height: 90px;
}

.myservice-hidden-height-2 {
  height: 200px
}

@media (max-width: 575.98px) {
  .myservice-hidden-height-1 {
    height: 50px;
  }

  .myservice-hidden-height-2 {
    height: 110px
  }

  .order-hidden-height-2 {
    height: 110px
  }
}

.order-complate-hidden-height-1 {
  height:80px;
}

@media (max-width: 575.98px) {
  .order-complate-hidden-height-1 {
    height: 60px;
  }
}

.order-complate-hidden-height-2 {
  height: 150px
}

.faq-section-height {
  height: 100px;
}

@media (max-width: 1199.98px) {
  .faq-section-height {
    height: 80px;
  }
}

@media (max-width: 575.98px) {
  .faq-section-height {
    height: 60px;
  }
}

/* ==== 버튼 ====*/

.blue-btn-hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background-color: #1a73e8;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    height: 60px;
    min-width: 100px;
    text-align: center;
}

@media (max-width:575.98px) {
    .blue-btn-hover {
        font-size: 16px;
        width: 100%;
        height: 54px;
    }
}

.blue-btn-hover:hover {
    background-color: #fff;
    color: #1a73e8 !important;
    border: 1px solid #1a73e8;
}

.blue-btn-hover:active, .blue-btn-hover:focus {
    background-color: #fff;
    color: #1a73e8 !important;
    border: 1px solid #1a73e8;
}

@media (max-width:575.98px) {
    .mobile-menu-btns .blue-btn-hover {
        font-size: 18px;
    }
}

.white-btn-hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;  
    font-size: 18px;
    font-weight: 500;
    color: inherit;
    background-color: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 999px;
    cursor: pointer;
    height: 60px;
    min-width: 100px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
}

@media (max-width:575.98px) {
    .white-btn-hover {
        font-size: 16px;
        width: 100% !important;
        height: 54px;
    }
}

.white-btn-hover:hover {
    background-color: #fff;
    border: 1px solid #bfbfbf;
}

.white-btn-hover:focus {
    background-color: #fff;
    border: 1px solid #bfbfbf;
}

@media (max-width:575.98px) {
    .mobile-menu-btns .white-btn-hover {
        font-size: 18px;
    }
}

.submenu-btn {
    border: 1px solid #3561ff;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 21px;
    color: #3561ff;
    border-radius: 4px
}

/*==== 섹션 1 ===== */

.section-one-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section-one-item {
    position: relative;
    border-radius: 12px;
    padding: 40px 36px;
    height: 100%;
    background-color: #EDF5FF; /*#F0F5FA*/
}

/*
.section-one-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(60, 64, 67, 0.14);
    border-color: var(--card-color, #1a73e8);
}

.section-one-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
*/

.section-one-icon {
  margin-bottom: 26px;
}

.section-one-icon img{
  width: 64px;
}

.section-one-icon .material-icons {
  font-size: 40px;
}
/*
.section-one-item:nth-child(1) .section-one-icon  {
  background: #e8f0fe;
}
.section-one-item:nth-child(1) .section-one-icon .material-icons {
  color: #1a73e8;
}
.section-one-item:nth-child(2) .section-one-icon  {
  background: #e6f4ea;
}
.section-one-item:nth-child(2) .section-one-icon .material-icons {
  color: #1e8e3e;
}
*/
.section-one-grid .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  text-align: start;
}

@media (max-width: 1199.98px) {
  .section-one-grid .title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .section-one-grid .title {
    font-size: 22px;
  }
}

.section-one-grid .desc {
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  color: #000;
  text-align: start;
}

@media (max-width: 768.02px) {
  .section-one-grid {
    grid-template-columns: 1fr;
  }

  .section-one-item {
    padding: 40px 32px;
  }  
}

@media (max-width: 1199.98px) {
  .section-one-grid .desc {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .section-one-item {
    padding: 26px 24px;
  }
}

/* ==== 섹션 1 끝 ==== */

/* ==== 섹션 2 시작 ==== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0px;
}

/* 짝수 행은 미디어 왼쪽 */
.feature-row:nth-child(even) .feature-text {
    order: 1;
}

.feature-row:nth-child(even) .feature-media {
    order: 2;
}

/* 홀수 행은 미디어 오른쪽 */
.feature-row:nth-child(odd) .feature-text {
    order: 2;
}

.feature-row:nth-child(odd) .feature-media {
    order: 1;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 14px;
}

@media (max-width: 768.02px) {
    .feature-label {
        margin-bottom: 14px;
    }
}

.feature-label-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #1a73e8;
    border-radius: 2px;
}

.feature-row .title{
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.feature-row .desc {
  font-size: 18px;
  color: #202124;
  margin-bottom: 28px;
  line-height: 1.7
}

/* Chips — 딱 하나만 */
.feature-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-chips .chip {
  padding: 6px 16px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #1a73e8;
  color: #202124;
}
.feature-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-media {
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow:
        0 1px 2px rgba(60, 64, 67, 0.06),
        0 4px 16px rgba(60, 64, 67, 0.10),
        0 0 0 1px rgba(60, 64, 67, 0.06);
    position: relative;
    aspect-ratio: 4 / 3;*/
}

.feature-media img,
.feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768.02px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 80px;
    }

    .feature-row .title {
        font-size: 24px;
    }

    .feature-row .desc {
        font-size: 16px;
    }

    .feature-row:nth-child(even) .feature-text {
        order: 2;
    }

    .feature-row:nth-child(even) .feature-media {
        order: 1;
    }

    .feature-row:nth-child(odd) .feature-text {
        order: 2;
    }

    .feature-row:nth-child(odd) .feature-media {
        order: 1;
    }
}

@media (max-width: 575.98px) {
  .feature-row .title {
    font-size: 22px;
  }
  .feature-row .desc {
    font-size: 16px;
  }
}
/* ==== 섹션 2 끝 ==== */

/* ==== 섹션 3 시작 ==== */
.homepage-row {
  display: grid;
  grid-template-columns: 6fr 4fr; /*grid-template-columns: 6fr 4fr;*/
  gap: 40px;
  align-items: center;
}

@media (max-width: 768.02px) {
  .homepage-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.homepage-card {
  background-color: #F5F8FC;
  padding: 80px 70px;
  border-radius: 12px;
  height: 100%;
}

@media (max-width: 575.98px) {
  .homepage-card {
    padding: 42px 32px;
  }
}

.homepage-free-badge-type1 {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F0F5FA;
  border: 1px solid #3B82F6;
  color: #1D4ED8;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.homepage-free-badge-type2 {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #2563EB;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
}

.browser {
    width: 130px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 26px rgba(33, 119, 232, 0.25);
    overflow: hidden;
    /* margin: 0 auto; */
}

.browser__bar {
    background: #f1f3f4;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.browser__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.browser__body {
    height: 78px;
    padding: 6px;
    position: relative;
    overflow: hidden;
}

.browser__hero {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideHero 4s ease-in-out infinite;
}

.hero-slide {
    width: 33.333%;
    height: 100%;
}

@keyframes slideHero {

    0%,
    30% {
        transform: translateX(0);
    }

    40%,
    60% {
        transform: translateX(-33.333%);
    }

    70%,
    90% {
        transform: translateX(-66.666%);
    }

    100% {
        transform: translateX(0);
    }
}

.browser__line {
    height: 4px;
    border-radius: 3px;
    background: #e8eaed;
    margin-bottom: 4px;
}

.browser__line--short {
    width: 60%;
}

.blog-mockup {
    width: 130px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 26px rgba(30, 200, 0, 0.25);
    overflow: hidden;
    /* margin: 0 auto; */
}

.blog-mockup__bar {
    background: #03c75a;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-mockup__logo {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 3px;
    color: #03c75a;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-mockup__bar-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.blog-mockup__bar-line {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .5);
}

.blog-mockup__bar-line--short {
    width: 60%;
}

.blog-mockup__body {
    height: 67px;
    /* browser__body와 동일 */
    overflow: hidden;
    position: relative;
    padding: 6px;
}

.blog-mockup__body::before,
.blog-mockup__body::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 16px;
    z-index: 2;
    pointer-events: none;
}

.blog-mockup__body::before {
    top: 0;
    background: linear-gradient(to bottom, #fff, transparent);
}

.blog-mockup__body::after {
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}

.blog-mockup__track {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 0;
    animation: blogScrollDown 5s linear infinite;
}

@keyframes blogScrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

.blog-mockup__post {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-mockup__thumb {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    flex-shrink: 0;
}

.blog-mockup__post-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.blog-mockup__post-line {
    height: 4px;
    border-radius: 2px;
    background: #e8eaed;
}

.blog-mockup__post-line--short {
    width: 55%;
}

.homepage-row .title {
    font-size: 26px;
    font-weight: 600;
    margin-top: 48px;
    line-height: 1.4;
}

.homepage-row .desc {
  font-size: 18px;
  color: #202124;
  margin-top: 16px;
  line-height: 1.65
}

@media (max-width: 768.02px) {
  .homepage-row .title {
    font-size: 24px;
  }

  .homepage-row .desc {
    font-size: 17px;
  }
}

@media (max-width: 575.98px) {
  .homepage-row .title {
    font-size: 22px;
  }
  .homepage-row .desc {
    font-size: 16px;
  }
}

.homepage-extras {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: #F5F8FC;
  border-radius: 12px;
  padding: 50px 70px; 
  margin-top: 40px;
}

.homepage-extra-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
}

.homepage-extra-item:first-child {
  padding-left: 0;
}

.homepage-extra-item:last-child {
  padding-right: 0;
}

.homepage-extra-title {
  font-size: 20px;
  font-weight: 600;
  color: #202124;
  margin: 0;
}

.homepage-extra-desc {
  font-size: 17px;
  line-height: 1.65;
  color: #202124;
  margin: 0;
}

.homepage-extra-divider {
  width: 1px;
  align-self: stretch;
  background: #e0e0e0;
  flex-shrink: 0;
  margin: 4px 0;
}

@media (max-width: 768.02px) {
  .homepage-extras {
    flex-direction: column;
  }

  .homepage-extra-item {
    padding: 16px 0;
  }

  .homepage-extra-item:first-child {
    padding-top: 0;
  }

  .homepage-extra-item:last-child {
    padding-bottom: 0;
  }

  .homepage-extra-divider {
    width: auto;
    height: 1px;
    align-self: stretch;
    margin: 0;
  }

  .homepage-extra-title {
    font-size: 18px;
  }

  .homepage-extra-desc {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .homepage-extras {
    padding: 42px 32px;
  }
}


/* ==== 섹션 3 끝 ==== */

/* ==== 섹션 라운디드 cta ==== */

.rounded-cta {
  background: #D3E3FC;
  height: 100%;
  border-radius: 999px;
  padding: 100px 40px;
  text-align: center
}

@media (max-width: 575.98px) {
  .rounded-cta {
    border-radius: 26px;
    padding: 50px 30px;
  }
}

/*
.rounded-cta .desc {
  font-size: 20px;
  margin-top: 20px;
}

@media (max-width: 575.98px) {
  .rounded-cta .desc {
    font-size: 16px;
  }
}

.fs-cta {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
  
  text-align: center;
}

@media (max-width: 1199.98px) {
  .fs-cta {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .fs-cta {
    font-size: 28px;
  }
}
*/
.rounded-cta {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(135deg, #4285F4 0%, #4285F4 100%);
}

.rounded-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.rounded-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

@media (max-width: 767.98px) {
    .rounded-cta {
        padding: 60px 40px;
    }

    .rounded-cta::before {
        width: 200px;
        height: 200px;
        top: -30%;
        right: -5%;
    }

    .rounded-cta::after {
        width: 150px;
        height: 150px;
        bottom: -20%;
        left: 0%;
    }
}

@media (max-width: 575.98px) {
    .rounded-cta {
        padding: 50px 30px;
    }

    .rounded-cta::before {
        width: 150px;
        height: 150px;
        top: -20%;
        right: -10%;
    }

    .rounded-cta::after {
        width: 120px;
        height: 120px;
        bottom: -15%;
        left: -5%;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.fs-cta {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.rounded-cta .desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px;
}

@media (max-width: 1199.98px) {
    .fs-cta {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .fs-cta {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .desc {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-move-to-demo {
    padding: 16px 40px;
    border: none;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    height: 60px;
}

.btn-move-to-demo:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 575.98px) {
  .btn-move-to-demo {
    height: 54px;
    font-size: 17px;
  }
}
.fs-cta span {
    display: inline;
}

@media (max-width: 575.98px) {
    .fs-cta span {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.rounded-cta .icon {
    font-size: 24px;
    margin-right: 8px;
}
/* ==== 섹션 4 시작 ==== */

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 768.02px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.process-item {
  height: 100%;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px 36px;
    border: 1.5px solid #e8eaed;
    box-shadow: 0 2px 8px rgba(60, 64, 67, 0.06);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background: var(--card-color, #1a73e8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    box-shadow: 0 12px 32px rgba(60, 64, 67, 0.14);
    border-color: var(--card-color, #1a73e8);
}

.process-item:nth-child(1) .process-card {
    --card-color: #1a73e8;
    --icon-bg: #e8f0fe;
    --icon-color: #1a73e8;
}

.process-item:nth-child(2) .process-card {
    --card-color: #1e8e3e;
    --icon-bg: #e6f4ea;
    --icon-color: #1e8e3e;
}

.process-item:nth-child(3) .process-card {
    --card-color: #e37400;
    --icon-bg: #fef3e2;
    --icon-color: #e37400;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--card-color, #1a73e8);
    margin-bottom: 20px;
}

@media (max-width: 768.02px) {
  .step-badge {
    margin-bottom: 16px;
  }
}


.step-badge-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--card-color, #1a73e8);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--icon-bg, #e8f0fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
}

.process-icon-wrap span {
    font-size: 32px;
    color: var(--icon-color, #1a73e8);
    font-variation-settings: 'FILL' 1, 'wght' 300;
}

.process-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.process-desc {
    font-size: 16px;
    color: #42474D;
}

@media (max-width: 768.02px) {
  .process-heading {
    font-size: 22px;
  }
}

.price-cta-card {
  background-color: #fff;
  border-radius: 20px;
  border: 1.5px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.06);
  overflow: hidden;
}

.price-inner {
  padding: 70px 100px;
}

@media (max-width: 1199.98px) {
  .price-inner { padding: 48px 48px; }
}

@media (max-width: 575px) {
  .price-inner { padding: 36px 24px; }
}

.price-card-banner {
  background: linear-gradient(90deg, #e8f0fe, #c5d8fb, #ddf0fb, #e8f0fe);
  background-size: 300% 100%;
  color: #000;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 24px;
  letter-spacing: 0.03em;
  animation: bannerShift 8s ease infinite;
}

@keyframes bannerShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch !important;
}
@media (max-width: 768.02px) {
  .price-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.price-desc {
  gap: 6px;
}

.price-desc .symbol {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding-top: 8px;
}

@media (max-width: 768.02px) {
  .price-desc .symbol {
    padding-top: 5px;
  }
}

.price-desc .number {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 768.02px) {
  .price-desc .number {
    font-size: 44px;
  }
}

.price-left .title {
  font-size: 20px;
  font-weight: 500;
  color: #1a73e8;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 14px
}

.price-right .desc {
  font-size: 22px;
  line-height: 1.7
}

@media (max-width: 768.02px) {
  .price-right .desc {
    font-size: 16px;
  }
}

.price-subdesc {
  margin-top: 18px;
  font-size: 14px;
  color: #80868b;
}

/*===== 섹션 4 끝 =====*/

/*===== 섹션 5 시작 =====*/
.faq-accordion .accordion-collapse {
  transition: height 0.2s ease-out;
}

.faq-accordion {
  border-top: 2px solid #202124;
  border-bottom: 2px solid #202124;
  overflow: hidden;
  background: #fff;
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 0px;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  box-shadow: none;
  border-bottom: none;
  transition: none;
}

@media (max-width: 1199.98px) {
  .faq-btn {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .faq-btn {
    font-size: 18px;
    padding: 22px 0px;
  }
}

.faq-btn::after {
  display: none;
}

.faq-question {
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #202124;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

@media (max-width: 1199.98px) {
  .faq-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .faq-icon {
    width: 28px;
    height: 28px;
  }
}

.faq-icon::before {
  content: "add";
  font-family: "Material Icons";
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .faq-icon::before {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .faq-icon::before {
    font-size: 18px;
  }
}

.faq-btn:not(.collapsed) {
  background: #fff;
  border-bottom: none;
}

.faq-btn:not(.collapsed) .faq-icon {
  background: #fff;
  color: #202124;
}

.faq-btn:not(.collapsed) .faq-icon::before {
  content: "close";
}

.faq-accordion .accordion-body {
  padding: 8px 0px 26px 0px;
  font-size: 20px;
  line-height: 1.7;
  color: #202124;
  background: #ffff;
  border-bottom: none;
}

@media (max-width: 1199.98px) {
  .faq-accordion .accordion-body {
    padding: 8px 0px 20px 0px;
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .faq-accordion .accordion-body {
    padding: 8px 0px 18px 0px;
    font-size: 16px;
  }
}

/*===== 섹션 5 끝 =====*/

/* ===== 궁금 섹션 ===== */

.question-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

@media (max-width: 768.02px) {
  .question-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575.98px) {
  .question-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.question-item {
  height: 100%;
}

.question-card {
    background-color: #F0F5FA;
    border-radius: 12px;
    padding: 30px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 575.98px) {
  .question-card {
    padding: 20px 30px;
  }
}

.question-item .title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
}

@media (max-width: 575.98px) {
  .question-item .title {
    font-size: 18px;
    margin-top: 4px;
  }
}

.question-item img {
  width: 70px;
}

@media (max-width: 575.98px) {
  .question-item img {
    width: 50px;
  }
}


/*==== 푸터 ===== */
footer {
  background: #202936;
  /* border-top: 1px solid #e2e2e2; */
  color: #fff;
  padding: 70px 0px;
}

.footer-top {
  margin-bottom: 22px;
}

.footer-top img {
  width: 160px;
}

.footer-logo {
  display: flex;
  align-items: start
}

.footer-logo img {
  width: 19px;
}

.footer-logo span {
  font-size: 23px;
  font-weight: 600;
  margin-left: 3px;
}

.footer-contact-label {
  font-size: 16px;
  font-weight: 600;
  color: #5f6368;
  color: #fff;
  margin-bottom: 6px;
}

.footer-contact-num {
  font-size: 22px;
  font-weight: 700;
  color: #202124;
  color: #fff;
  margin-bottom: 4px;
}

.footer-contact-hour {
  font-size: 16px;
  color: #5f6368;
  color: #fff;
}

.footer-biz-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-biz-info span {
  font-size: 14px;
  color: #5f6368;
  color: #fff;
  line-height: 1.2
}

@media (max-width: 575.98px) {
  .footer-biz-info span {
    font-size: 13px;
  }
}

.footer-biz-info .seperation {
  color: #d0d3d6;
  color: #fff;
  font-size: 12px;
}

.footer-terms {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.footer-terms a {
  font-size: 13px;
  color: #5f6368;
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  color: #9aa0a6;
  color: #fff;
}

@media (max-width: 575.98px) {
  .footer-terms a {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 12px;
  }
}
/* ====== 푸터 끝 ====== */
/* 타이틀 */
.terms-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* 섹션 */
.terms-block {
    margin-bottom: 36px;
}

.terms-block h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.terms-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.85;
    margin: 6px 0;
}

.terms-block ul {
    padding-left: 18px;
    margin: 8px 0;
}

.terms-block li {
    font-size: 16px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 6px;
    list-style: decimal;
}

/* 구분선 */
.terms-divider {
    height: 1px;
    background: #b0b2b6;
    margin: 50px 0;
}

/* 시행일 */
.terms-date {
    font-size: 16px;
    color: #333;
}

.list-style-disc li {
  list-style: disc;
}

/* ======= 가격페이지 ======= */

.subpage-top {
  padding: 90px 0px;
  background-color: #F1F3F9;
  text-align: center
}

.subpage-top .title {
  font-size: 48px;
  font-weight: 700;
}

.subpage-top .desc {
  font-size: 22px;
  margin-top: 22px;
  color: inherit;
  font-weight: 500;
}

@media (max-width: 1199.98px) {
  .subpage-top {
    padding: 60px 0px;
  }

  .subpage-top .title {
    font-size: 40px;
  }
  .subpage-top .desc {
    font-size: 20px;
    margin-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .subpage-top {
    padding: 60px 0px;
  }

  .subpage-top .title {
    font-size: 32px;
  }

  .subpage-top .desc {
    font-size: 18px;
    margin-top: 16px;
  }
}

.price-page {
  padding-top: 100px;
  padding-bottom: 240px;
}

@media (max-width:575.98px) {
  .price-page {
    padding-top: 40px;
    padding-bottom: 160px;
  }
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto; /* top / btn / feature */
  gap: 26px;
  align-items: stretch;
}

@media (max-width: 1199.98px) {
  .plan-row {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 768.98px) {
  .plan-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 575.98px) {
  .plan-row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.plan-card-wrapper {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #DBDEE1;
  gap: 0px;
}

.plan-card-wrapper.basicplan {
  border: 1px solid #DBDEE1;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.08);
}

.plan-card-wrapper.customplan {
  border: 2px solid #1a73e8;
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.18);
}

.plan-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4; /* top / btn / feature */
  padding: 40px 36px;
}

.plan-card-top {

}

.plan-name {
  text-align: start;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #202124
}

.price-info {
  margin-bottom: 20px;
  text-align: start;

}

.price-info .value {
  font-size: 34px;
  font-weight: 600;
  color: #202124
}

.price-info .value span {
  font-size: 16px;
  font-weight: 400
}

.price-info .month {
  font-size: 16px;
  margin-left: 0px;
  color: #71767A
}

.plan-desc {
  font-size: 17px;
  color: #202124;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: start;
}

.plan-feature-list {
  padding-top: 36px;
  border-top: 1px solid #DBDEE1;
  margin-top: 36px;
  flex: 1;
}

.plan-feature-list .ul-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-feature-list .ul-text {
  line-height: 1.6;
  font-size: 17px;
}

.plan-feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan-feature-list ul li {
  font-size: 17px;
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  color: #202124
}

.plan-feature-list ul li:last-child {
  margin-bottom: 0px;
}

.plan-feature-list ul li::before {
  content: "check";
  font-family: "Material Symbols Outlined";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-size: 22px;
  line-height: 1.2;
}

.list-bottom {
  margin-top: 40px;
}

.domain-info {
  margin-top: 40px;
  padding: 24px 16px;
  border-radius: 8px;
  background-color: #f6f6f6;
  line-height: 1.6;
  font-size: 14px;
}

.domain-info .title {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
}

.domain-info a {
  color: blue;
  text-decoration: underline;
  font-size: 14px;
}

.plan-btn-wrapper {
  display: flex;
  justify-content: center;
}

.plan-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  background-color: #3082F6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  border: 1px solid #3082F6;
  width: 100%;
  font-size: 17px;
  height: 46px;
}

.plan-btn.outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  background-color: #fff;
  color: #3082F6;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid #3082F6;
  width: 100%;
  font-size: 18px;
  height: 52px;
}

.plan-btn.outline:hover {
  background-color: #3082F6;
  color: #fff;
}

.plan-btn.outline:focus {
  border: 1px solid #2070E0;
}

.plan-btn:hover {
  background-color: #2070E0;
}

.plan-btn:focus,
.plan-btn:active {
  border: 1px solid #3082F6;
}

.banner-basic {
  background: linear-gradient(90deg, #d2e3fc, #bdd8f8, #c5e8f7, #d2e3fc);
  background-size: 300% 100%;
  color: #020202;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  animation: bannerShift 26s ease infinite;
}

.banner-special {
  background: #3082F6; /*linear-gradient(90deg, #7fa8f8, #4d8cf2, #1a73e8, #4d8cf2, #7fa8f8);*/
  background-size: 300% 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  animation: bannerShift 26s ease infinite;
}

.banner-normal {
  background: #E8F0FE;
  background-size: 300% 100%;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  animation: bannerShift 26s ease infinite;
}

.banner-free {
  background: #f1f3f4;
  color: #5f6368;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
}

 /*background: linear-gradient(90deg, #d2e3fc, #cde7d8, #fde7c4, #d2e3fc); background: linear-gradient(90deg, #d2e3fc, #cde7d8, #fde7c4); background: linear-gradient(90deg, #d2e3fc, #cde7d8, #fde7c4, #d2e3fc); */
/*background: linear-gradient(90deg, #d2e3fc, #bdd8f8, #c5e8f7, #d2e3fc);*/
/*background: linear-gradient(90deg, #0f172a, #1e3a5f, #16263d, #274472, #0f172a); background: linear-gradient(90deg, #0b1f3a, #1f4e8c, #123057, #2a5ea8, #0b1f3a);*/


.plan-card-wrapper.customplan {
  position: relative;
}

.plan-card-wrapper.customplan::before {
  content: "대표 상품";
  position: absolute;
  top: -24px;
  left: -2px;
  right: -2px;
  height: 34px;
  background: #3082F6;
  background-size: 300% 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 8px 0 0;
  animation: bannerShift 26s ease infinite;
  border: 1px solid #007BFF;
}

.function-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center
}

@media (max-width: 1199.98px) {
  .function-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .function-title {
    font-size: 24px;
  }
}

.function-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768.02px) {
  .function-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
  .function-grid { grid-template-columns: 1fr; }
}


/* ====== 가격 페이지 끝 ===== */

/* 로그인 페이지 시작 */

.login-wrapper {
  margin: auto;
  padding: 0px 24px;
  max-width: 440px;
  margin-bottom: 120px;
}

@media (min-width:575.98px) {
  .login-wrapper {
    padding: 10px 19px;
    margin-bottom: 180px;
  }
}

.lp-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #fff
}

/* 헤딩 */
.lp-heading {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width:575.98px) {
  .lp-heading {
    text-align: center;
    margin-bottom: 26px;
  }
}

.lp-title {
  font-size: 30px;
  font-weight: 600;
  color: #202124;
}

@media (max-width:575.98px) {
  .lp-title {
    font-size: 26px;
  }
}

.lp-subtitle {
  font-size: 14px;
  color: #80868b;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-label {
  font-size: 16px;
  font-weight: 500;
  color: #3c4043;
}

.lp-input {
  padding: 12px 16px;
  border: 1px solid #c5ccd2;
  border-radius: 4px !important;
  font-size: 16px;
  color: #202124;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-input::placeholder {
  color: #bdc1c6;
}

.lp-input:focus {
  border-color: #1a73e8;
}


.lp-btn {
  margin-top: 10px;
  padding: 13px;
  border: none;
  border-radius: 4px;
  background: #1a73e8;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Google Sans', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.lp-btn:hover {
  background-color: #1669c1;
}

.lp-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 15px;
  color: #333333;
}

.lp-footer a {
  color: #1a73e8;
  text-decoration: underline;
  font-weight: 500;
  margin-left: 6px;
}

.lp-find {
  font-size: 15px;
  text-decoration: none !important;
  color: #333333 !important;
}


.lp-agree {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #1a73e8;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
}

.lp-checkbox:focus {
  outline: none;
  box-shadow: none;
}

.lp-checkbox:focus-visible {
  outline: none;
  box-shadow: none;
}

.lp-agree label {
  font-size: 14px;
  color: #5f6368;
  cursor: pointer;
  line-height: 1.5;
}

.lp-agree-link {
  color: #5f6368;
  text-decoration: underline;
  font-weight: 500;
}

.signup-cta {
    margin-top: 38px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e8eaed;
    border-radius: 12px;
    transition: all 0.3s ease;
}



.signup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.signup-text {
    flex: 1;
}

.signup-question {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
}

.signup-description {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #80868b;
}

.signup-link {
    padding: 10px 24px;
    background: #1a73e8;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
    display: inline-block;
}

.signup-link:hover {
    background: #1669c1;
    box-shadow: 0 2px 4px rgba(26, 115, 232, 0.3);
}

.signup-link:active {
    transform: translateY(0);
}

/* 모바일 반응형 */
@media (max-width: 575.98px) {
    .signup-cta {
        padding: 16px;
        margin-top: 26px;
    }
    
    .signup-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .signup-question {
        font-size: 15px;
    }
    
    .signup-description {
        font-size: 13px;
    }
    
    .signup-link {
        width: 100%;
        padding: 12px 16px;
    }
}

/* 로그인 페이지 끝 */

/* ====== 고객센터 시작 ====== */

.faq-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 34px;
}

@media (min-width:575.98px) {
  .faq-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
}

@media (min-width:1199.98px) {
  .faq-title {
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
  }
}

.faq-card {
  padding: 24px;
  background: #F5F8FC;
  margin-bottom: 30px;
  border-radius: 12px;
}

@media (min-width:575.98px) {
  .faq-card {
    padding: 30px;
  }
}

.faq-card:last-of-type {
  margin-bottom: 0px
}

.faq-card .question {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4
}

@media (min-width:575.98px) {
  .faq-card .question {
    font-size: 22px;
  }
}

.faq-card .andswer {
  font-size: 16px;
  line-height: 1.65
}

@media (min-width:575.98px) {
  .faq-card .andswer {
    font-size: 18px;
  }
}

.faq-card .andswer a {
  color: blue;
  text-decoration: underline;
}
/* ====== 고객센터 끝 ====== */


/* ====== 결제페이지 시작 ====== */
.order-top {
  margin-bottom: 30px;
}

.order-top .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.order-top .desc{
  font-size: 16px;
  color: #202124
}

.order-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  align-items: start;
}

@media (max-width: 992px) {
  .order-grid {
    grid-template-columns: 1fr;
  }

  .payment-panel {
    order: 2;
  }
}

.order-info-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  padding: 28px 28px;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .order-info-card {
    padding: 24px 22px;
  }
}

.order-info-card:last-child {
  margin-bottom: 0;
}

.order-info-card .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 992px) {
  .form-row {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    gap: 0px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 17px;
  font-weight: 600;
  color: #202124;
}

.form-group span {
  color: #e53935;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
  height: 48px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

input:focus,
select:focus {
  border-color: #1a73e8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

input::placeholder {
  color: #83878c;
}

.upload-logo{
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #fff;
}

.upload-logo input[type="file"] {
  display: none;
}

.upload-logo-info {
  font-size: 15px;
  color: #6c757d;
  font-weight: 500;
}

.upload-logo-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: #fff;
  border: 1px solid #1a73e8;
  border-radius: 999px;
  color: #1a73e8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.upload-logo-btn:hover {
  background: #1a73e8;
  color: #fff
}

.preview {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #e8f0fe;
  border: 1px solid #1a73e8;
  border-radius: 10px;
  margin-top: 4px;
}

.preview.show {
  display: flex;
}

.thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #c5cae9;
}

.name {
  font-size: 14px;
  color: #202124 !important;
  font-weight: 500;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove {
  background: #fff;
  color: #e53935;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 50%;
}

.order-more-info {
  padding: 20px 24px;
  background: #F0F7FF;
  border-radius: 10px;
  font-size: 16px;
  color: #202124;
  line-height: 1.6;
  margin-top: 8px
}

.payment-panel {
  position: sticky;
  top: 24px;
}

.payment-card {
  background: #fff;
  border: 1px solid #1a73e8;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 22px;
}

.payment-header {
  background: #fff;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2
}

.payment-body {
  padding-top: 24px;
}

.payment-info-block {
  padding-bottom: 30px;
  border-bottom: 1px solid #e9e9e9;
}

.payment-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 15px;
  color: #4f5358;
  flex-shrink: 0;
  font-weight: 500
}

.info-value {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  color: #202124;
}

.info-select {
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 0px 32px 0px 10px;
  font-size: 15px;
  color: #202124;
  background: #fff;
  outline: none;
  cursor: pointer;
  max-width: 160px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235f6368' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  height: 38px;
  font-weight: 500
}

.payment-footer {
  margin-top: 44px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.total-label {
  font-size: 16px;
  font-weight: 700;
  color: #202124;
}

.total-amount {
  font-size: 24px;
  font-weight: 700;
}

.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  background-color: #3082F6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pay-btn:hover {
    background-color: #2070E0;
}

.pay-btn:active, .pay-btn:focus {
    background-color: #2070E0;
}

.agree-all {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  margin-bottom: 8px;
}

.agree-all-row {
  padding: 14px 16px;
}

.agree-all-row .agree-text {
  font-weight: 600
}

.agree-list {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  overflow: hidden;
}

.agree-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #1a73e8;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
}

.agree-checkbox:focus {
  outline: none;
  box-shadow: none;
}

.agree-checkbox:focus-visible {
  outline: none;
  box-shadow: none;
}

.agree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  cursor: pointer;
  border-bottom: 1px solid #e9e9e9;
}

.agree-row:last-child {
  border-bottom: none;
}

.agree-text {
  font-size: 15px;
  color: #202124;
  flex: 1;
}

.agree-link {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  flex-shrink: 0;
}

.agree-link:hover {
  text-decoration: underline;
}

/* ====== 결제페이지 끝 ====== */

/* ====== cpt 섹션 ====== */
.cta-section {
  background: url(../images/cta_bg_blue.png) no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #008CFF;
  padding: 140px 0px;
}

@media (max-width: 575.98px) {
  .cta-section {
    background: url(../images/cta_bg_mo.svg) no-repeat;
    background-size: cover;
    padding: 110px 0px;
  }
}

.cta-section .sub-display {
  margin-bottom: 40px;
  color: #fff;
  text-align: center
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.cta-btn-01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    background-color: #fff;
    border-radius: 999px;
    cursor: pointer;
    min-height: 48px;
    width: 180px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
}

@media (max-width:575.98px) {
    .cta-btn-01 {
        font-size: 16px;
    }
}

.cta-btn-01:hover {
  background-color: #202936;
  color: #fff;
  border: 1px solid #1a73e8;
}

.cta-btn-01:focus {
  background-color: #202936;
  color: #fff;
  border: 1px solid #1a73e8;
}

.cta-btn-02 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 999px;
  cursor: pointer;
  min-height: 48px;
  width: 180px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s;
}

@media (max-width:575.98px) {
  .cta-btn-02 {
    font-size: 16px;
  }
}

.cta-btn-02:hover {
  background-color: #202936;
  color: #fff;
  border: 1px solid #202936;
}

.cta-btn-02:focus {
  background-color: #202936;
  color: #fff;
  border: 1px solid #202936;
}


.gradi-back {
  background: url(../images/aistudio-gradient-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #008CFF;
}

.gradi-back2 {
  background: url(../images/bg01.png) no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #008CFF;
}

.gradi-back3 {
  background: url(../images/bg-support-contact.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ====== 도입문의 ====== */

.contact-page {
  padding-top: 60px;
  padding-bottom: 240px;
}

@media (max-width: 1199.98px) {
  .contact-page {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

.contact-top img {
  width: 100%;
  margin-bottom: 30px;
  display: none;
}

@media (min-width: 1199.98px) {
  .contact-top img {
    display: block;
  }
}

.contact-top .title {
  font-size: 48px;
  font-weight: 700;
}

.contact-top .desc {
  font-size: 18px;
  margin-top: 20px;
}

@media (max-width: 1199.98px) {
  .contact-top .title {
    font-size: 40px;
  }
  .contact-top .desc {
    font-size: 20px;
    margin-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .contact-top .title {
    font-size: 32px;
  }

  .contact-top .desc {
    font-size: 16px;
    margin-top: 16px;
  }
}

.contact-row {
  display: grid;
  grid-template-columns: 3fr 7fr;
  /*grid-template-columns: 6fr 4fr;*/
  gap: 60px;
  align-items: start;
}

@media (max-width: 1199.98px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form {
  background-color: #F9FAFC;
  padding: 60px;
  border-radius: 4px;
}

@media (max-width: 575.98px) {
  .contact-form {
    padding: 36px 26px;
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 575.98px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-group .required {
  color: #1A73E8
}

.contact-form input,
.contact-form select {
  padding: 10px 15px !important;
  height: unset;
  border: 1px solid #D4D8DC;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1px solid #D4D8DC;
  box-shadow: 0 0 0 1px rgb(212, 216, 220)
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-form textarea {
  padding: 10px 15px !important;
  height: unset;
  border: 1px solid #D4D8DC;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  min-height: 120px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #1a73e8;
    background-color: #1a73e8;
    border-radius: 999px;
    cursor: pointer;
    min-height: 48px;
    width: 120px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    margin-top: 60px;
}

@media (max-width:575.98px) {
    .contact-btn {
        font-size: 16px;
    }
}

.contact-btn:hover {
  background-color: #202936;
  color: #fff;
  border: 1px solid #1a73e8;
}

.contact-btn:focus {
  background-color: #202936;
  color: #fff;
  border: 1px solid #1a73e8;
}

.contact-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.contact-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #1a73e8;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
}

.contact-checkbox:focus {
  outline: none;
  box-shadow: none;
}

.contact-checkbox:focus-visible {
  outline: none;
  box-shadow: none;
}

.contact-agree label {
  font-size: 16px;
  cursor: pointer;
  line-height: 1.5;
}

.contact-agree-link {
  color: #5f6368;
  text-decoration: underline;
  font-weight: 500;
}

/* ===== 뉴탭스 ===== */

.new-faq-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 1199.98px) {
  .new-faq-tabs {
    margin-bottom: 20px;
  }
}

.new-faq-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 999px;
  border: 1px solid #d2d8dc;
  background: #fff;
  color: #C1C4C8;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  height: 56px;
}

.new-faq-tab .tab-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 24px;
  font-variation-settings: 'wght' 300;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.new-faq-tab:hover {
  background: #fff;;
  color: #202124;
  border: 1px solid #202124;
}

.new-faq-tab.active {
  background: #202124;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 585.98px) {
  .new-faq-tabs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .new-faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .new-faq-tab {
    flex: 0 0 auto;
    flex-direction: row;
    padding: 8px 20px;
    gap: 6px;
    font-size: 18px;
    height: 48px;
  }
}

/* ===== 오더 완료 ===== */

.orderc-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 60px 48px;
    max-width: 440px;
    width: 100%;
    border: 1px solid rgba(26, 115, 232, 0.1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: auto;
}

@media (min-width: 1199.98px) {
  .orderc-card {
    max-width: 480px;
  }
}

@media (max-width: 575.98px) {
  .orderc-card {
    padding: 46px 24px;
  }
}

.orderc-icon-area {
  margin-bottom: 30px;
  text-align: center;
}

.orderc-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: #1a73e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: scaleCheck 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (max-width: 575.98px) {
  .orderc-icon {
    width: 60px;
    height: 60px;
  }
}

.orderc-icon span {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

@media (max-width: 575.98px) {
  .orderc-icon span {
    font-size: 40px;
    color: #fff;
  }
}


@keyframes scaleCheck {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }

  50% {
    transform: scale(1.1) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.orderc-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-align: center;
}

@media (max-width: 575.98px) {
  .orderc-title {
    font-size: 24px;
  }
}

.orderc-subtext {
  font-size: 18px;
  margin: 0 0 46px 0;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 575.98px) {
  .orderc-subtext {
    font-size: 17px;
  }
}

.orderc-movetext {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.orderc-movetext span{
  font-weight: 600
}

.orderc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 16px;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #1a73e8;
}

.orderc-btn:hover {
  border: 1px solid #1a73e8;
  background: #fff;
  color: #1a73e8;
}

.orderc-btn:focus,
.orderc-btn:active {
  border: 1px solid #1a73e8;
  background: #fff;
  color: #1a73e8;
}

/* ===== 가이드 ===== */

.guide-container {
    margin: 0 auto;
}

.guide-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (min-width:575.98px) {
  .guide-title {
    font-size: 24px;
  }
}

@media (min-width:1199.98px) {
  .guide-title {
    font-size: 26px;
  }
}

.guide-md-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

@media (min-width:575.98px) {
  .guide-md-title {
    font-size: 20px;
  }
}

@media (min-width:1199.98px) {
  .guide-md-title {
    font-size: 22px;
  }
}

.guide-sm-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width:575.98px) {
  .guide-sm-title {
    font-size: 20px;
  }
}

.guide-ul {
  padding: 0px;
  margin-bottom: 0px;
  margin-left: 24px;
}

.guide-ul li {
  padding: 4px 0px;
  letter-spacing: -.4px;
  line-height: 26px;
}

.guide-ul li:first-child {
  padding: 0px 0px 4px 0px;
}

.guide-ul li:last-child {
  padding: 4px 0px 0px 0px;
}


.guide-text {
  font-size: 16px;
  letter-spacing: -.4px;
  line-height: 26px;
  font-weight: 400;
  word-break: keep-all;
}

@media (min-width:1199.98px) {
  .guide-panel {
    max-width: 800px;
    padding:0px 20px;
    margin: auto
  }
}

.guide-top-area {
  padding-bottom: 34px;
  border-bottom: 1px solid #e1e1e1
}

.btn-toggle {
  font-size: 15px;
  padding: 8px 16px;
  background: #1f73e8;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.btn-move-demo {
  font-size: 15px;
  padding: 8px 16px;
  color: #1a73e8;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
  cursor: pointer;
}

.btn-move-demo:hover {
  background-color: #F4F8FE;
  border: 1px solid #1A73E8;
}


.material-wrapper {
  width: 38px;
  height: 38px;
  background: #e8f0fe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.material-wrapper span {
  font-size: 24px;
  color: #1f73e8;
}

.guide-info-area {
  padding-top: 34px;
}

.guide-section {
  margin-bottom: 64px;
}

.guide-section:last-of-type {
  margin-bottom: 0px;
}

.guide-img {
  margin: 24px 0px;
}

.guide-bg-card {
  background-color: #F3F7FF;
  border-radius: 12px;
  padding: 20px 25px
}

/* 라디오 버튼 숨기기 */
.guide-container input[type="radio"] {
    display: none;
}

/* 탭 래퍼 - 플렉스 컬럼으로 정렬 */
.tabs-wrapper {
    display: flex;
    flex-direction: column;
    margin: 16px 0px;
}

/* 탭 헤더 - 배경 제거, 매우 심플 */
.tab-header {
    display: flex;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
}

.tab-label {
    padding: 16px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    position: relative;
    user-select: none;
    border: none;
    background: none;
    width: auto;
}

.tab-label:hover {
    background: none;
}

/* 탭 1 선택 시 */
#tab-logo:checked ~ .tab-header label[for="tab-logo"] {
    font-weight: 700;
}

#tab-logo:checked ~ .tab-header label[for="tab-logo"]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

#tab-logo:checked ~ .tabs-content #tab-logo {
    display: block;
    position: relative;
}

#tab-logo:checked ~ .tab-header label[for="tab-logo"] {
    font-weight: 600;
}

#tab1:checked ~ .tab-header label[for="tab1"] {
    font-weight: 600;
}

#tab1:checked ~ .tab-header label[for="tab1"]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

#tab2:checked ~ .tab-header label[for="tab2"] {
    font-weight: 600;
}

#tab2:checked ~ .tab-header label[for="tab2"]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

#tab3:checked ~ .tab-header label[for="tab3"] {
    font-weight: 600;
}

#tab3:checked ~ .tab-header label[for="tab3"]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

#tab4:checked ~ .tab-header label[for="tab4"] {
    font-weight: 600;
}

#tab4:checked ~ .tab-header label[for="tab4"]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

/* 콘텐츠 컨테이너 - 패널들을 겹쳐서 배치 */
.tabs-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.tab-content {
    padding: 32px 36px;
}

.tab-panel {
    display: none;
    position: absolute;
    width: 100%;
}

/* 탭 1 콘텐츠 표시 */
#tab1:checked ~ .tabs-content #panel1 {
    display: block;
    position: relative;
}

/* 탭 2 콘텐츠 표시 */
#tab2:checked ~ .tabs-content #panel2 {
    display: block;
    position: relative;
}

/* 탭 3 콘텐츠 표시 */
#tab3:checked ~ .tabs-content #panel3 {
    display: block;
    position: relative;
}

/* 탭 4 콘텐츠 표시 */
#tab4:checked ~ .tabs-content #panel4 {
    display: block;
    position: relative;
}

.img-panel {
    position: fixed;
    top: 74px;
    width: 100%;
    height: calc(100vh - 74px);
    background: white;
    right: -100%;
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
}

@media (min-width: 1199.98px) {
  .guide-container {
    transition:
      padding-right 0.3s ease,
      margin-right 0.3s ease;
  }

  .img-panel {
    width: 30%;
    right: -30%;
  }

  .guide-container.panel-open {
    padding-right: 40%;
    padding-left: 0px;
  }
}

@media (min-width: 1919.98px) {
  .img-panel {
    width: 33%;
    right: -33%;
  }

  .guide-container.panel-open {
    padding-right: 20%;
    padding-left: 0px;
  }
}


@media (min-width:2559.98px) {
  .img-panel {
      width: 28%;
      right: -28%;
    }
  .guide-container.panel-open {
    padding-right: 10%;
    padding-left: 0px;
  }
}

.img-panel.panel-open {
    right: 0;
}

.panel-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: white;
  padding: 10px 18px;
}

.close-icon-wrapper {
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  top: 16px;
  right: 16px;
}

.close-icon-wrapper:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width:575.98px) {
  .close-icon-wrapper {
    width: 32px;
    height: 32px;
  }
}

.close-icon-wrapper span {
  color: #fff
}

@media (max-width:575.98px) {
  .close-icon-wrapper span {
    font-size: 22px;
  }
}

/* ===== 나의 서비스 ===== */


.service-info {
  padding: 0px 0px 10px 0px;
  background: #fff;
  border-bottom: 1px solid #9c9c9c;
  margin-bottom: 16px;
  margin-top: 40px;
}

.service-info:first-of-type {
  margin-top: 0px;
  padding-top: 10px;
}

.service-info:last-of-type {
  margin-bottom: 0px;
}

.service-info .label {
  font-size: 16px;
  font-weight: 400;
  color: #444746
}

.service-info .value {
  font-size: 18px;
  font-weight: 500;
  margin-top: 4px;
  word-break: break-all;
}

.service-info-hp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.hp-link-btn {
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #1a73e8;
  background: #1a73e8;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
}

.service-info-extra {
  margin-top: 36px;
  border-radius: 8px;
  padding: 20px;
  background: #F3F7FF;
}

.extra-top {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 500;
}

.extra-top span {
  color: #1a73e8;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.extra-ul {
  padding: 0px;
  margin-bottom: 0px;
  margin-left: 24px;
}

.extra-ul li {
  padding: 2px 0px 2px 0px;
  line-height: 1.65
}

.extra-ul li:last-child {
  padding: 2px 0px 0px 0px;
}

.main-page-card .first-paragraph {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}



/* ===== 조인 ===== */

.join-wrapper {
  margin: auto;
  max-width: 600px;
  margin-top: -20px;
  padding: 0px 24px;
  margin-bottom: 120px;
}

@media (min-width:575.98px) {
  .join-wrapper {
    margin-top: -30px;
    padding: 10px 19px;
    margin-bottom: 180px;
  }
}

.join-back {
  margin-bottom: 8px;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    transform: translateX(-14px);
}

.back-btn:hover {
    background: rgba(0,0,0,0.06);
}

.back-btn img {
    height: 18px;
    display: block;
}

.join-top {
  margin-bottom: 30px;
}

.join-top .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.join-top .desc{
  font-size: 16px;
  color: #202124
}

.join-top .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

@media (min-width:575.98px) {
  .join-top .title {
    font-size: 24px;
  }
}

@media (min-width:1199.98px) {
  .join-top .title {
    font-size: 26px;
  }
}

.join-card {
  background: #fff;
  margin-bottom: 20px;
}

.join-card:last-child {
  margin-bottom: 0;
}

.join-card input[type="text"],
.join-card input[type="email"],
.join-card input[type="tel"],
.join-card input[type="password"],
.join-card select {
  height: 58px;
  border: 1px solid #D0D0D0;
  border-radius: 16px;
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.join-card input:focus,
.join-card select:focus {
  border-color: #1a73e8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.input-with-button {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.input-with-button:last-child {
  margin-bottom: 0;
}

.input-with-button label {
  font-size: 17px;
  font-weight: 600;
  color: #202124;
}

.input-with-button span {
  color: #e53935;
  margin-left: 4px;
}

.input-button-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-button-wrapper input[type="text"],
.input-button-wrapper input[type="email"],
.input-button-wrapper input[type="tel"],
.input-button-wrapper input[type="password"],
.input-button-wrapper select {
  flex: 1;
  height: 58px;
  border: 1px solid #D0D0D0;
  border-radius: 16px;
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.input-button-wrapper input:focus {
  border-color: #1a73e8;
}

.check-btn {
  height: 58px;
  padding: 0 20px;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  flex-shrink: 0;
}

.check-btn:active {
  box-shadow: 0 1px 2px rgba(26, 115, 232, 0.2);
}

/* 모바일 반응형 */
@media (max-width: 575.98px) {
  .input-button-wrapper {
    gap: 8px;
  }
  
  .check-btn {
    padding: 0 16px;
    font-size: 14px;
  }
}

.addr-info {
  font-size: 18px;
  display: flex;
  align-items: start;
  gap: 6px;
  color:#000; font-weight: 500
}

.addr-info span {
  color: #ff0000;
  user-select: none;
  -webkit-user-select: none;
  transform: translateY(3px)
}

/*리커버리*/

.recovery-links {
  gap: 14px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 24px;
}

.recovery-links a {
  font-size: 15px;
  color: #474747;
  text-decoration: none;
}

.recovery-links a:hover {
  color: #000;
}

.recovery-links span {
  width: 1px;
  height: 12px;
  background: #474747;
}

.recovery-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2px;
}