@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap');

.top-bar {
    width: 100%;
    padding: 8px 20px;
    background-color: #0c0c0e;
    font-size: 13px;
    color: #a2a4a1;
}
.top-bar .inner{
    max-width:1600px;
    margin:0 auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}
.top-bar .gap {
    margin: 0 12px 0 4px;
}
.top-right {
    display: flex;
    align-items: center;
}
.top-right a{
    color:#ffffff;
    font-weight:700;
    text-decoration:none;
    letter-spacing:.5px;
}

@media(max-width: 1680px){
    .top-bar.inner {
        padding: 0 30px;;
    }
}
@media(max-width:820px) {
    .top-left span:nth-child(2) {
        display: none;
    }
    .top-bar {font-size: 12px;}
}
@media(max-width:500px){
    .top-bar .inner {
        flex-direction: column;
        justify-content: center;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .top-left {
        display: none;
    }
    .gap {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
    }
}

/* 공통 */
.inner {
    max-width: 1600px;
    margin: 0 auto;
}

/* header */
header{
    width: 100%;
    padding: 10px 20px;
    background: #0c0c0e;
}
header .inner{
    max-width: 1600px;
    margin:0 auto;
    display: flex;
    align-items: center;
}
.logo{
    flex-shrink:0;
}
.logo a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.logo img{
    width:56px;
    display:block;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 22px;
    color: #c9a24e;
    white-space: nowrap;
}
.logo-sub {
    font-size: 12px;
    color: #ffffff;
    white-space: nowrap;
}
.gnb {
    flex: 1;
    display: flex;
    justify-content: center;
}
.gnb ul{
    display:flex;
    gap:15px;
}
.gnb a{
    color:#b6b7b5;
    text-decoration:none;
    font-size:16px;
    white-space: nowrap;
    display: inline-block;
    padding: 12px 0;
}
.gnb a:hover {
    color: #c9a24e;
}
.header-btn{
    width:180px;
    display:flex;
    justify-content:flex-end;
}
.header-btn a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:126px;
    height:40px;
    background-color:#c9a24e;
    border-radius:8px;
    color:#1a1a1e;
    padding: 20px 11px;
}
.header-btn a:hover {
    background-color: #1a1a1e;
    color: #f4f4f1;
}
.menu-btn{
    display:none;
    position: relative;
    width: 44px;
    height: 44px;
    border:none;
    background:none;
    cursor:pointer;
    padding:0;
}
.menu-btn span{
    position: absolute;
    left: 50%;
    top: 50%;
    width:24px;
    height:2px;
    background:#fff;
    transition: 0.3s;
}
.menu-btn span:nth-child(1){
    transform:translate(-50%, -8px);
}
.menu-btn span:nth-child(2){
    transform:translate(-50%, -50%);
}
.menu-btn span:nth-child(3){
    transform:translate(-50%, 8px);
}
@media(max-width:1280px) {
    .header.inner {
        justify-content: space-between;
    }
    .gnb ul {
        gap: 10px;
    }
    .header-btn{
        width: 150px;
    }
    .header-btn a {
        width: 115px;
        height: 38px;
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    header .inner {
        justify-content: space-between;
    }
    .gnb {
        display: none;
    }
    .gnb.is-open {
        position: fixed;
        width: 100%;
        max-width: 600px;
        height: 100dvh;
        top: 0;
        right: 0;
        padding-top: 65px;
        padding-left: 30px;
        background-color: #1a1a1e;
        display: block;
        z-index: 99;
    }
    .gnb ul {
        flex-direction: column;
    }
    .gnb a:hover {
        color: #c9a24e;
    }
    .header-btn {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    
    .menu-btn.is-open span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
        z-index: 99;
    }
    .menu-btn.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
        z-index: 99;
    }
    .menu-btn.is-open span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
        z-index: 99;
    }
    
}
@media (max-width:820px){
    .logo a{
        gap:6px;
    }
    .logo img{
        width:50px;
    }
    .logo-title{
        font-size:18px;
    }
    .logo-sub{
        font-size:10px;
    }
    .gnb{
        display:none;
    }
    .header-btn{
        display: none;
    }
    .menu-btn{
        display:block;
    }
}

/* hero-sec */
.hero-sec {
    width: 100%;
    min-height: 100dvh;
    background-color: #0c0c0e;
    padding: 60px 24px;
}
.hero-sec .inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-content {
    width: 55%;
}
.tag {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background: #221f17;
    border: 1px solid #3a331f;
    color: #d6d6d2;
    font-size: 14px;
    margin-bottom: 28px;
}
.hero-content h1 {
    font-family: "Noto Serif KR",serif;
    font-size: 56px;
    line-height: 1.35;
    color: #f4f4f1;
}
.hero-content h1 span {
    color: #c9a242;
}
.hero-content p {
    margin-top: 26px;
    font-size: 18px;
    color: #b6b7b5;
    line-height: 1.8;
}
.hero-btn {
    display: flex;
    margin-top: 38px;
    gap: 14px;
}
.hero-btn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}
/* .btn-gold {
    background-color: #c9a24e;
    color: #1a1a1e;
    gap: 10px;
}
.btn-gold:hover {
    background-color: #1a1a1e;
    color: #f4f4f1;
} */
.btn-dark {
    background-color: #221f17;
    border: 1px solid #3a331f;
    color: #ffffff;
}
.btn-dark:hover {
    background-color: #f4f4f1;
    color: #14141a;
}
.hero-info {
    display: flex;
    align-items: center;
    margin-top: 42px;
    gap: 26px;
}
.hero-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-info .icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #221f17;
    display: block;
}
.hero-info span {
    font-size: 15px;
    color: #b6b7b5;
}
.hero-img {
    width: 625px;
    position: relative;
}
.hero-img img {
    width: 100%;
    border-radius: 22px;
    display: block;
    border: 2px solid #2e2e33;
}
.career-box {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: -65px;
    bottom: 53px;
    width: 168px;
    height: 74px;
    padding: 16px 20px;
    border: 1px solid #313137;
    border-radius: 14px;
    background-color: #202024;
}
.career-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50%;
    background-color: #221f17;
    color: #c9a24e;
}
.career-box span {
    font-size: 13px;
    color: #8a8a8c;
}.career-txt {
    font-size: 13px;
    font-weight: 600;
    color: #f4f4f1;
}

@media (max-width:1680px) {
    .hero-sec  {
        margin: 0 auto;
    }
    .hero-img {
        width: 530px;
    }
    .tag {
        font-size: 11px;
    }
    .hero-content h1 {
        font-size: 50px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-btn .btn-gold,
    .hero-btn .btn-dark {
        font-size: 15px;        
    }
    .hero-info .icon {
        width: 20px;
        height: 20px;
    }
    .hero-info span {
        font-size: 13px;
    }
    .career-box {
        width: 156px;
        height: 60px;
        padding: 14px 18px;
    }
    .career-num {
        font-size: 15px;
        width: 30px;
        height: 30px;
    }
    .career-box span,
    .career-txt {
        font-size: 11px;
    }
}
@media (max-width:1280px) {
    .hero-img {
        width: 480px;
    }
    .tag {
        font-size: 14px;
    }
    .hero-content h1 {
        font-size: 35px;
    }
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-info .icon {
        width: 18px;
        height: 18px;
    }
    .hero-info span {
        font-size: 12px;
    }
    .career-box {
        width: 140px;
        height: 50px;
        padding: 12px 16px;
    }
    .career-num {
        font-size: 13px;
        width: 25px;
        height: 25px;
    }
    .career-box span,
    .career-txt {
        font-size: 10px;
    }
}
@media (max-width:1024px) {
    .career-box {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 20px;
        margin-top: 1em;
        border-radius: 8px;
        gap: 20px;
    }
   .career-num {
    font-size: 18px;
   }
    .career-box span {
        font-size: 13px;
        display: flex;
        flex-direction: column;
        gap: 0.2m;
    }
    .career-box strong {
        font-size: 16px;
    }
    .hero-sec .inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .hero-content {
        width: 100%;
    }
    .hero-img {
        width: 100%;
        align-self: center;
        margin-top: 20px;
    }
    .hero-btn {
        display: flex;
        flex-wrap: wrap;
        gap:12px;
    }
    .hero-btn > a {        
        width: 100%;
    }
    .hero-info  {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
    .hero-info .icon {
        width: 15px;
        height: 15px;
    }
    .hero-info span {
        font-size: 15px;
    }
}

/* foryou-sec */
.foryou-sec {
    padding: 80px 0 100px;
    background-color: #1c1c1f;
}
.foryou-inner {
    padding: 0 20px;
}
.sec-title {
    text-align: center;
}
.sub-title {
    display: block;
    margin-bottom: 13px;
    color: #c9a24e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.8;
}
.sec-title h2 {
    margin-bottom: 16px;
    color: #f4f4f1;
    font-size: 40px;
    font-weight: 700;
    font-family: "Noto Serif KR",serif;
}
.sec-title p {
    color: #9ea09d;
    font-size: 18px;
    line-height: 1.8;
}
.circle {
    position: relative;
    width: 524px;
    height: 524px;
    margin: 100px auto 0;
}
.circle-bg-outline {
    position: absolute;
    width: 120%;
    height: 120%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 162, 78, 1);
    border-radius: 50%;
    background-image: radial-gradient(circle, rgba(201, 162, 78, 1), rgba(201, 162, 78, 0.12) 68%);
    opacity: 0.15;
}
.circle-bg {
    width: 100%;
    height: 100%;
    border: 1px solid #c9a24e;
    border-radius: 50%;
}
.center-txt {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.center-txt .sub-txt {
    font-family: "Noto Serif KR",Serif;
    font-size: 20px;
    font-weight: 700;
    color: #f4f4f1;
    letter-spacing: 2px;
    line-height: 1.3;
}
.center-txt p {
    font-family: "Noto Serif KR",Serif;
    font-size: 20px;
    font-weight: 700;
    color: #c9a24e;
    letter-spacing: 2px;
    line-height: 1.3;
}
.item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    width: 162px;
    height: 162px;
    transition: 0.5s;
}
.item.active {
    background-color: #c9a24e;
}
.item.active p,
.item.active .first {
    color: #1a1a1e;
}
.item01 {
    transform: translate(-120%,-115%);
}
.item02 {
    transform: translate(-145%,65%);
}
.item03 {
    transform: translate(-390%,65%);
}
.item04 {
    transform: translate(-425%,-115%);
}
.item05 {
    transform: translate(-275%,-210%);
    display: flex;
    flex-direction: column;
}
.item05 p {
    font-size: 10px;
    font-weight: 700;
}
.item05 .first {
    font-size: 16px;
    font-weight: 700;
}
.item01,
.item02,
.item03,
.item04,
.item05 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
    top: 50%;
    right: -50%;
    border: 1px solid #c9a24e;
    border-radius: 50%;
    background-color: #14141a;
    color: #f4f4f1;
}

@media (max-width: 820px) {
    .sec-title h2 {
        font-size: 34px;
        margin-bottom: 14px;
    }
    .sec-title p {
        font-size: 16px;
        line-height: 1.7;
    }
    .circle {
        width: 430px;
        height: 430px;
        margin: 80px auto 0;
    }
    .center-txt .sub-txt,
    .center-txt p {
        font-size: 18px;
    }
    .item {
        width: 130px;
        height: 130px;
    }
    .item01,
    .item02,
    .item03,
    .item04 {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .item05 p {
        font-size: 9px;
    }
    .item05 .first {
        font-size: 14px;
    }
    .item01 {
        transform: translate(-120%, -100%);
    }
    .item02 {
        transform: translate(-165%, 75%);
    }
    .item03 {
        transform: translate(-390%, 80%);
    }
    .item04 {
        transform: translate(-440%, -100%);
    }
    .item05 {
        transform: translate(-283%, -220%);
    }
}
@media (max-width: 680px) {
    .sec-title {
        padding: 0 20px;
    }  
    .circle {
        width: 320px;
        height: 320px;
        margin: 60px auto 0;
    }
    .circle-bg-outline {
        width: 115%;
        height: 115%;
    }
    .center-txt .sub-txt,
    .center-txt p {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .item {
        width: 95px;
        height: 95px;
    }
    .item01,
    .item02,
    .item03,
    .item04 {
        font-size: 12px;
        line-height: 1.4;
        letter-spacing: 0;
    }
    .item05 .first {
        font-size: 12px;
    }
    .item05 p {
        font-size: 8px;
    }
    .item01 {
        transform: translate(-120%, -88%);
    }
    .item02 {
        transform: translate(-175%, 90%);
    }
    .item03 {
        transform: translate(-395%, 90%);
    }
    .item04 {
        transform: translate(-455%, -90%);
    }
    .item05 {
        transform: translate(-285%, -220%);
    }
}
@media(max-width: 412px) {
     .sec-title {
        padding: 0 20px;
    }
    .sec-title h2 {
        font-size: 23px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .circle {
        width: 280px;
        height: 280px;
        margin: 55px auto 0;
    }
    .circle-bg-outline {
        width: 115%;
        height: 115%;
    }
    .center-txt .sub-txt,
    .center-txt p {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .item {
        width: 95px;
        height: 95px;
    }
    .item01,
    .item02,
    .item03,
    .item04 {
        font-size: 11px;
        line-height: 1.3;
        letter-spacing: 0;
    }
    .item05 .first {
        font-size: 11px;
    }
    .item05 p {
        font-size: 7px;
    }
    .item01 {
        transform: translate(-105%, -86%);
    }
    .item02 {
        transform: translate(-143%, 88%);
    }
    .item03 {
        transform: translate(-337%, 88%);
    }
    .item04 {
        transform: translate(-385%, -85%);
    }
    .item05 {
        transform: translate(-247%, -195%);
    }
}

/* why-sec */
.why-sec {
    padding: 80px 24px;
    background-color: #0c0c0e;
}
.section-title {
    margin-bottom: 56px;
}
.section-title .why-sub-title {
    display: block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #d2b473;
}
.section-title .sub-tit {
    font-family: "Noto Serif KR", Serif;
    font-size: 40px;
    font-weight: 700;
    color: #f4f4f1;
}
.why-list {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.why-list li{
    flex:1;
    display:flex;
    flex-direction:column;
}
.why-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3a331f;
    border-radius: 15px;
    background-color: #221f17;
}
.why-num {
    font-family: "Noto Serif KR", Serif;
    font-size: 27px;
    font-weight: 700;
    color: #56565c;
    line-height: 1.8;
}
.why-title {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 18px;
    font-size: 23px;
    font-weight: 700;
    color: #b6b7b5;
}
.why-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    border: 1px solid #c9a24e;
}
.why-list p {
    font-size: 16px;
    line-height: 1.8;
    color: #b6b7b5;
}
@media (max-width:1680px){
    .section-title{
        margin-bottom: 48px;
    }
    .section-title .why-sub-title{
        font-size: 12px;
        margin-bottom: 14px;
    }
    .section-title .sub-tit{
        font-size: 35px;
    }
    .why-list{
        gap: 35px;
    }
    .why-top{
        margin-bottom: 8px;
    }
    .why-icon{
        width: 50px;
        height: 50px;
        border-radius: 13px;
    }
    .why-num{
        font-size: 25px;
    }
    .why-title{
        font-size: 21px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .why-title::after{
        width: 34px;
    }
    .why-list p{
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width:1280px){
    .section-title{
        margin-bottom: 44px;
    }
    .section-title h2{
        font-size: 34px;
    }
    .why-list{
        gap: 28px;
    }
    .why-top{
        margin-bottom: 12px;
    }
    .why-icon{
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    .why-num{
        font-size: 24px;
    }
    .why-title{
        font-size: 20px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .why-title::after{
        width: 32px;
    }
    .why-list p{
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width:1024px){
    .section-title{
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title h2{
        font-size: 30px;
    }
    .why-list{
        flex-direction: column;
        gap: 40px;
    }
    .why-top{
        margin-bottom: 14px;
    }
    .why-icon{
        width: 48px;
        height: 48px;
    }
    .why-num{
        font-size: 24px;
    }
    .why-title{
        font-size: 18px;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
    .why-title::after{
        width: 32px;
        height: 1px;
    }
    .why-list p{
        font-size: 15px;
        line-height: 1.7;
    }
}

/* chet-sec */
.chat-sec {
    padding: 80px 24px;
    background-color: #0c0c0e;
}
.chat-sec .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* 왼쪽 */
.chat-sub-title {
    display: block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #d2b473;
}
.chat-title {
    font-family: "Noto Serif KR", Serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f4f4f1;
}
.chat-title strong {
    color: #c9a24e;
}
.chat-desc {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #9ea09d;
}
.question-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.question-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.question-list span {
    font-family: "Noto Serif KR",Serif;
    font-size: 15px;
    font-weight: 700;
    color: #c9a24e;
    line-height: 1.8;
}
.question-list p {
    font-size: 16px;
    font-weight: 500;
    color: #b6b7b5;
    line-height: 1.6;
}
.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    background-color: #c9a24e;
    color: #1a1a1e;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}
.chat-btn:hover {
    background-color: #1a1a1e;
    color: #f4f4f1;
}
/* 오른쪽 */
.chat-box {
    width: 100%;
    max-width: 700px;
    border: 1px solid #2a2a2e;
    border-radius: 20px;
    background-color: #1a1a1e;
    overflow: hidden;
}
.chat-header {
    padding: 16px 20px;
    border-bottom: 1px solid #2a2a2e;
}
.chat-profile {
    display: flex;
    align-items: center;
    gap: 11px;
}
.chat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #3a331f;
    border-radius: 10px;
    background-color: #221f17;
}
.chat-info strong {
    display: block;
    color: #f4f4f1;
    font-size: 15px;
}
.chat-info span {
    color: #7cb57c;
    font-size: 12px;
    font-weight: 400;
}
.chat-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 22px;
}
.msg {
    display: flex;
}
.user {
    justify-content: flex-end;
}
.user p {
    padding: 12px 16px;
    border-radius: 16px 16px 4px 16px;
    background-color: #c9a24e;
    color: #1a1a1e;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}
.bot p {
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    background-color: #23232a;
    color: #d6d6d2;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}
.typing {
    width: 56px;
    height: 16px;
    display: flex;
    background-color: #23232a;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 16px;
}
.typing span:nth-child(1),
.typing span:nth-child(2){
    background-color: #7c7e7c;
    border-radius: 5px;
    width: 6px;
    height: 6px;
}
.typing span:nth-child(3) {
    background-color: #9a9c99;
    border-radius: 5px;
    width: 6px;
    height: 6px;
}
@media (max-width:1024px){
    .chat-content {
        width: 100%;
    }
    .chat-sec .inner{
        position: relative;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 72px;
    }
    /* ---------- 왼쪽 ---------- */
    .chat-title{
        font-size: 35px;
        margin-bottom: 14px;
    }
    .chat-desc{
        font-size: 18px;
        margin-bottom: 26px;
        line-height: 1.7;
    }
    .question-list{
        gap: 10px;
        margin-bottom: 28px;
    }
    .question-list span{
        font-size: 15px;
    }
    .question-list p{
        font-size: 15px;
    }
    .chat-btn{
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        position: absolute;
        bottom: 0;
    }
    /* ---------- 오른쪽 ---------- */
    .chat-box{
        max-width: 100%;
    }
    .chat-header{
        padding: 14px 18px;
    }
    .chat-icon{
        width: 30px;
        height: 30px;
    }
    .chat-info strong{
        font-size: 14px;
    }
    .chat-info span{
        font-size: 11px;
    }
    .chat-body{
        padding: 18px;
        gap: 12px;
    }
    .user p,
    .bot p{
        font-size: 14px;
        padding: 10px 14px;
    }
}
    
/* team-sec */
.team-sec {
    padding: 80px 24px 0;
    padding-bottom: 43%;
    background: #1c1c1f url(../img/person.png) no-repeat center bottom / 100%;
}
.team-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-sec .section-tit {
    text-align: center;
}

.team-sub-title{
    display:block;
    margin-bottom:16px;
    color:#c9a24e;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    line-height:1.8;
}
.team-title {
    margin-bottom:16px;
    font-family:"Noto Serif KR",serif;
    font-size:40px;
    font-weight:700;
    color:#f4f4f1;
}
.team-sec p {
    color:#9ea09d;
    font-size:18px;
    line-height:1.8;
    margin-bottom: 28px;
}
.team-tag{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}
.team-tag span{
    display:flex;
    justify-content:center;
    align-items:center;
    height:33px;
    padding:8px 16px;
    border:1px solid #3a331f;
    border-radius:999px;
    background:#221f17;
    color:#ffffff;
    font-size:14px;
    font-weight:500;
}
@media (max-width:1280px) {
    .team-sub-title{
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 1.8px;
    }
    .team-title{
        margin-bottom: 14px;
        font-size: 34px;
    }
    .team-sec p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 26px;
    }
    .team-tag{
        gap: 8px;
    }
    .team-tag span{
        height: 30px;
        padding: 6px 14px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .team-sec {
        padding-bottom: 48%;
    }
}
@media (max-width: 360px) {
    .team-tag span {
        padding: 0 6px;
    }
}

.expertise-sec {
    padding: 80px 24px;
    background-color: #0c0c0e;
}
.expertise-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.expertise-sub-title {
    display:block;
    margin-bottom:16px;
    color:#d2b473;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    line-height:1.8;
}
.expertise-title {
    margin-bottom:16px;
    font-family:"Noto Serif KR",serif;
    font-size:40px;
    font-weight:700;
    color:#f4f4f1;
}
.expertise-highlight {
    color:#c9a24e;
}
.expertise-career {
    display:block;
    margin-bottom:16px;
    color:#c9a24e;
    font-size:16px;
    font-weight:600;
    line-height: 1.8;
}
.expertise-desc {
    margin-bottom:30px;
    color:#9ea09d;
    font-size:18px;
    line-height:1.8;
}
.expertise-list {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px 100px;
}
.expertise-list li {
    display:flex;
    align-items:center;
    gap:10px;
}
.expertise-list img {
    width:23px;
    height:23px;
    background-color: #221f17;
    border-radius: 999px;
    /* display:block;
    flex-shrink:0; */
}
.expertise-list span {
    color:#b6b7b5;
    font-size:15px;
}
.expertise-photo {
    position:relative;
    width:625px;
    flex-shrink:0;
}
.expertise-photo img {
    width: 100%;
    border-radius: 22px;
    display: block;
    border: 2px solid #2e2e33;
}
.expertise-card {
    position:absolute;
    left:-88px;
    bottom: 54px;
    padding: 16px 20px;
    border: 1px solid #313137;
    border-radius: 14px;
    background-color: #202024;
}
.expertise-card strong {
    display: block;
    margin-bottom: 2px;
    color: #f4f4f1;
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif KR", Serif;
}
.expertise-card span {
    font-size: 13px;
    font-weight: 500;
    color: #c9a24e;
}

@media(max-width: 1280px) {
    .expertise-sub-title{
        margin-bottom: 14px;
        letter-spacing: 1.8px;
    }
   
    .expertise-title {
        margin-bottom: 14px;
        font-size: 36px;
    }
    .expertise-career {
        margin-bottom: 14px;
        font-size: 15px;
    }
    .expertise-desc {
    margin-bottom:28px;
    font-size:16px;
    line-height:1.7;
    }
    .expertise-list {
        gap: 10px 40px;
    }
    .expertise-list li {
        gap: 8px;
    }
   .expertise-list img {
        width: 20px;
        height: 20px;
    }
    .expertise-photo {
        width: 520px;
    }
    .expertise-card{
        left: -74px;
        bottom: 48px;
        padding: 14px 18px;
    }
    .expertise-card strong{
        font-size: 13px;
    }
    .expertise-card span{
        font-size: 12px;
    }
}
@media(max-width: 1024px) {
    .expertise-inner {
        position: relative;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding-top: 150px;
    }
    .expertise-content {
        order: 2;
    }
    .absolute {
        position: absolute;
        top: 0;
        width: 100%;
        text-align: center;
    }
    .expertise-list {
        grid-template-columns: repeat(1, 1fr)
    }
    .expertise-photo {
        max-width: 480px;
        width: 80%;
        margin: 0 auto;
    }
    .expertise-card {
        position: static;
        margin-top: 20px;
    }
    .expertise-sub-title,
    .expertise-title {
        margin-bottom: 4px;
    }
    
}

/* process-sec */

.process-sec { 
    padding: 80px 24px; 
    border: 1px solid #2a2a2e; 
    background-color: #1c1c1f; 
} 
.pro-inner { 
    display: flex; 
    flex-direction: column; 
} 
.pro-title-wrap { 
    margin-bottom: 56px;
} 
.pro-sub-title { 
    display:block; 
    margin-bottom:16px; 
    color:#d2b473; 
    font-size:13px; 
    font-weight:800; 
    letter-spacing:2px; 
    line-height:1.8; 
} 
.pro-title { 
    margin-bottom:16px; 
    font-family:"Noto Serif KR",serif;
    font-size:40px; 
    font-weight:700; 
    color:#f4f4f1; 
} 
.pro-desc { 
    color:#9ea09d; 
    font-size:18px; 
    line-height:1.8; 
} 
.pro-list { 
    display:flex; 
    justify-content:space-between; 
    margin-bottom:56px;
    gap: 36px;
} 
.pro-item { 
    width: 373px; 
    height: 225px; 
    position: relative; 
    padding:28px 24px; 
    border:1px solid #4a4a52; 
    border-radius:18px; 
    background:#1f1f23; 
} 
.pro-top { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 18px; 
} 
.pro-num { 
    display:flex; 
    justify-content:center; 
    align-items:center; 
    width:38px; 
    height:38px; 
    border-radius:50%; 
    background:#c9a24e; 
    color:#1a1a1e; 
    font-size:18px; 
    font-weight:700; 
    font-family: "Noto Serif KR",Serif; 
} 
.pro-step { 
    color:#56565c;
    font-size:12px; 
    font-weight:700; 
    letter-spacing:1.2px; 
    line-height: 1.8; 
} 
.pro-item-title { 
    font-size: 23px; 
    font-weight: 700; 
    margin-bottom: 18px; 
    color: #b6b7b5; 
} 
.pro-item-desc { 
    font-size: 16px; 
    line-height: 1.8; 
    color: #b6b7b5; 
} 
.pro-arrow { 
    position: absolute; 
    right:-28px; 
    top:50%; 
    transform:translateY(-50%); 
    width:20px; 
} 
.pro-btn { 
    display:inline-flex; 
    justify-content:center; 
    align-items:center; 
    padding: 16px 28px; 
    width:201px; 
    height:52px; 
    border-radius:12px; 
    background:#c9a24e; 
    color:#1a1a1e; 
    font-size:17px; 
    font-weight:600; 
    text-decoration:none; 
    transition: 0.3s; 
    gap: 10px; 
} 
.pro-btn:hover { 
    background-color: #1a1a1e; 
    color: #f4f4f1; 
}
@media (max-width:1480px) {
    .pro-title-wrap{
        margin-bottom:50px;
    }
    .pro-title{
        font-size:36px;
    }
    .pro-desc{
        font-size:17px;
    }
    .pro-item{
        width:330px;
        height:210px;
        padding:24px 20px;
    }
    .pro-item-title{
        font-size:21px;
    }
    .pro-item-desc{
        font-size:15px;
    }
    .pro-arrow{
        width:18px;
        right:-28px;
    }
}
@media (max-width:1280px) {
    .pro-title-wrap{
        margin-bottom:46px;
    }
    .pro-title{
        font-size:32px;
    }
    .pro-desc{
        font-size:16px;
    }
    .pro-item{
        width:285px;
        height:195px;
        padding:22px 18px;
    }
    .pro-top{
        gap:10px;
        margin-bottom:16px;
    }
    .pro-num{
        width:34px;
        height:34px;
        font-size:16px;
    }
    .pro-step{
        font-size:11px;
    }
    .pro-item-title{
        font-size:19px;
        margin-bottom:16px;
    }
    .pro-item-desc{
        font-size:14px;
    }
    .pro-arrow{
        width:18px;
        right:-28px;
    }
}
@media (max-width:1024px) {
     .pro-list{
        display:flex;
        flex-direction:column;
        gap:18px;
        margin-bottom: 20px;
    }
    .pro-item {
        width: 100%;
    }
    .pro-btn {
        width: 100%;
        font-size: 15px;
    }
    .pro-arrow {
        display: none;
    }
}

/* faq-sec */
.faq-sec { 
    padding: 80px 24px; 
    background-color: #0c0c0e; 
} 
.faq-inner { 
    display: flex; 
    justify-content: space-between; 
} 
.faq-content { 
    width: 537px; 
    flex-shrink: 0; 
} 
.faq-sub-title { 
    display: block; 
    margin-bottom: 16px; 
    color:#d2b473; 
    font-size: 13px; 
    font-weight: 800; 
    letter-spacing: 2px; 
    line-height: 1.8; 
} 
.faq-title { 
    margin-bottom: 16px; 
    font-family: "Noto Serif KR",serif; 
    font-size: 40px; 
    font-weight: 700; 
    color: #f4f4f1; 
} 
.faq-desc { 
    margin-bottom: 30px; 
    color: #9ea09d; 
    font-size: 18px; 
    line-height: 1.8; 
} 
.faq-call { 
    display: flex;
    align-items: center; 
    gap: 12px; 
    padding: 16px 20px; 
    border: 1px solid #313137; 
    border-radius: 14px; 
    background-color: #202024; 
} 
.faq-call strong { 
    color: #c9a24e; 
    font-size: 18px; 
    font-weight: 600; 
} 
.faq-call-info span { 
    display: block; 
    color: #8a8c8a; 
    font-size: 15px; 
    margin-bottom: 2px; 
} 
.faq-call-info p { 
    color: #f4f4f1; 
    font-size: 15px; 
    font-weight: 700; 
} 
.faq-item { 
    border-top: 1px solid #2d2d31; 
} 
.faq-item:first-child { 
    border-bottom: 1px solid #2d2d31; 
} 
.faq-question { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 26px 4px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    color: #f4f4f1; 
} 
.faq-question span { 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    font-size: 18px; 
    font-weight: 700; 
} 
.faq-question strong { 
    font-weight: 600; 
    color: #c9a24e; 
}
.mobile-br {
    display: none;
}
.faq-question img { 
    width: 16px; 
    transition: 0.3s; 
} 
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: 0.35s; 
} 
.faq-answer p { 
    padding: 26px 4px 38px 4px; 
    color: #b6b7b5; 
    font-size: 16px; 
    font-weight: 600; 
    line-height: 1.85; 
} 
.faq-item.active .faq-answer { 
    max-height: 180px; 
} 
.faq-item.active .faq-question img { 
    transform: rotate(180deg); 
}
@media (max-width: 1680px) {
    .faq-inner {
        gap: 80px;
    }
    .faq-content {
        width: 460px;
    }
    .faq-title {
        font-size: 36px;
    }
    .faq-desc {
        font-size: 17px;
    }
    .faq-question span {
        font-size: 17px;
    }
    .faq-answer p {
        font-size: 15px;
    }
}
@media (max-width: 1280px) {
    .faq-inner {
        gap: 60px;
    }
    .faq-content {
        width: 420px;
    }
    .faq-title {
        font-size: 34px;
    }
    .faq-desc {
        font-size: 16px;
        margin-bottom: 26px;
    }
    .faq-call {
        padding: 14px 18px;
    }
    .faq-call strong {
        font-size: 17px;
    }
    .faq-question span {
        font-size: 16px;
        gap: 10px;
    }
    .faq-question img {
        width: 14px;
    }
    .faq-answer p {
        padding: 0 0 24px 26px;
        font-size: 15px;
        line-height: 1.75;
    }
}
@media (max-width: 1024px) {
    .faq-inner {
        flex-direction: column;
    }
    .faq-content {
        width: 100%;
        text-align: center;
    }
    .faq-title {
        font-size: 30px;
    }
    .faq-desc {
        margin-bottom: 24px;
        font-size: 15px;
    }
    .faq-call {
        width: 320px;
        margin: 0 auto;
        align-items: center;
    }
    .faq-list {
        width: 100%;
    }
    .faq-question span {
        font-size: 16px;
    }
    .faq-answer p {
        padding: 0 0 24px 30px;
        font-size: 15px;
        line-height: 1.75;
    }
    .faq-call-info {
        display: flex;
        gap: 8px;
    }
    .faq-call-info span {
        margin-bottom: 0;
    }
}
@media (max-width: 500px) {
    .faq-question span {
        font-size: 15px;
    }
    .mobile-br {
        display: block;
    }
    .faq-answer p {
        padding: 0 0 20px 24px;
        font-size: 14px;
        line-height: 1.65;
    }
}

/* location-sec */
.location-sec {
    padding: 80px 24px;
    background-color: #0c0c0e;
}
.location-inner {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}
.location-title-wrap {
    margin-bottom: 40px;
}
.location-info {
    flex: 1;
}
.location-sub-title {
    display: block;
    margin-bottom: 16px;
    color: #d2b473;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.8;
}
.location-title {
    margin-bottom: 40px;
    font-family: "Noto Serif KR",serif;
    font-size: 40px;
    font-weight: 700;
    color: #f4f4f1;
}
.location-map {
    width: 100%;
    max-width: 765px;
    border: 1px solid #34343a;
    border-radius: 20px;
    padding: 18px 20px;
}
.location-item {
    display: flex;
    padding: 26px 4px;
    border-bottom: 1px solid #303043;
}
.location-item:first-child {
    border-top: 1px solid #303043;
}
.location-item:last-child {
    border-bottom: none;
}
.location-label {
    width: 70px;
    color: #c9a24e;
    font-size: 13px;
    font-weight: 600;
}
.location-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.location-text p {
    color: #f4f4f1;
    font-size: 16px;
}
@media (max-width: 1280px) {
    .location-inner {
        gap:40px;
    }
    .location-map {
        width:620px;
    }
    .location-sub-title {
        margin-bottom:14px;
        font-size:12px;
    }
    .location-title {
        margin-bottom:32px;
        font-size:34px;
    }
    .location-item {
        padding:22px 0;
    }
    .location-label {
        width:60px;
        font-size:12px;
    }
    .location-text p {
        font-size:15px;
        line-height:1.7;
    }
}
@media (max-width: 1024px) {
    .location-inner {
        flex-direction: column;
        gap: 32px;
    }
    .location-title-wrap {
        margin-bottom: 34px;
        text-align: center;
    }
    .location-sub-title {
        margin-bottom: 12px;
        font-size: 12px;
    }
    .location-title {
        font-size: 32px;
    }
    .location-map {
        width: 100%;
        margin: 0 auto;
    }
    .location-info {
        width: 100%;
    }
    .location-label {
        width: 70px;
        font-size: 12px;
    }
    .location-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 820px) {
    .location-inner {
        flex-direction: column;
        gap: 40px;
    }
    .location-title-wrap {
        margin-bottom: 32px;
        text-align: center;
    }
    .location-sub-title {
        margin-bottom: 12px;
        font-size: 12px;
    }
    .location-title {
        margin-bottom: 0;
        font-size: 30px;
    }
    .location-map {
        padding: 0;
    }
    .location-info {
        width: 100%;
    }
    .location-item {
        padding: 22px 0;
    }
    .location-label {
        width: 70px;
        font-size: 13px;
    }
    .location-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* case-sec */

.case-sec {
    background-color: #1c1c1f;
    padding: 80px 24px;
    border: 1px solid #2a2a2e;
}
.case-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.case-sub-title {
    display: block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #d2b473;
}
.case-title {
    margin-bottom: 16px;
    font-family: "Noto Serif KR",Serif;
    font-size: 44px;
    font-weight: 700;
    color: #f4f4f1;
}
.case-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #9ea09d;
}
.case-btn-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.case-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
/* .case-btn-free {
    background-color: #c9a24e;
    color: #1a1a1e;
    gap: 10px;
}
.case-btn-free:hover {
    background-color: #1a1a1e;
    color: #f4f4f1;
} */
.case-btn-AI {
    border: 1px solid #3a331f;
    background-color: #221f17;
    color: #ffffff;
}
.case-btn-AI:hover {
    background-color: #f4f4f1;
    color: #14141a;
}
@media (max-width: 1024px) {
    .case-sub-title {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 1.8px;
    }
    .case-title {
        margin-bottom: 14px;
        font-size: 38px;
    }
    .case-desc {
        margin-bottom: 24px;
        font-size: 17px;
        line-height: 1.7;
    }
    .case-btn-wrap {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .case-btn {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
}
@media (max-width: 820px) {
    .case-sub-title {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    .case-title {
        margin-bottom: 14px;
        font-size: 32px;
    }
    .case-desc {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.7;
    }
    .case-btn {
        width: 100%;
        height: 48px;
        font-size: 15px;
    }
}

/* footer-sec */

.footer-section {
    background-color: #0c0c0e;
    padding: 80px 24px 0 24px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 0 40px 0;
}
.footer-brand {
    max-width: 351px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-logo img {
    display: block;
    width: 73px;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
}
.footer-logo-text strong {
    font-family: "Noto Serif KR",Serif;
    font-size: 22px;
    color: #c9a24e;
}
.footer-logo-text span {
    font-size: 12px;
    color: #ffffff;
}
.footer-brand-desc {
    font-size: 14px;
    color: #90928f;
}
.footer-title {
    display: block;
    color: #6c6e6b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer-nav,
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a {
    color: #b6b7b5;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    
}
.footer-nav a:hover {
    color: #c9a24e;
}
.footer-info li {
    font-size: 15px;
    font-weight: 500;
    color: #b6b7b5;
}
.footer-bottom {
    border-top: 1px solid #232327;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    padding: 34px 0;
    align-items: center;
}
.footer-bottom p {
    font-size: 13px;
    color: #90928f;
}
.footer-bottom span {
    font-size: 13px;
    font-weight: 300;
    color: #b6b7b5;
}

@media (max-width: 1280px) {
    .footer-title {
        font-size: 12px;
    }
    .footer-nav a {
        font-size: 14px;
    }
    .footer-info li {
        font-size: 14px;
    }
    .footer-bottom p,
    .footer-bottom span {
        font-size: 12px;
    }
}
@media (max-width: 1024px) {
    .footer-brand-desc {
        font-size: 12px;
        line-height: 1.7;
    }
    .footer-title {
        font-size: 11px;
    }
    .footer-nav a {
        font-size: 13px;
    }
    .footer-info li {
        font-size: 13px;
    }
    .footer-bottom p,
    .footer-bottom span {
        font-size: 13px;
    }
}
@media (max-width: 820px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 32px;
    }
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
        margin-bottom: 16px;
    }
    .footer-logo img {
        width: 64px;
    }
    .footer-logo-text {
        align-items: flex-start;
    }
    .footer-logo-text strong {
        font-size: 20px;
    }
    .footer-logo-text span {
        font-size: 12px;
    }
    .footer-brand-desc {
        font-size: 14px;
    }
    .footer-menu,
    .footer-contact {
        width: 100%;
        text-align: center;
    }
    .footer-nav,
    .footer-info {
        align-items: center;
        gap: 10px;
    }
    .footer-nav a,
    .footer-info li {
        font-size:14px;
    }
    .footer-bottom-inner {
        flex-direction:column;
        gap:6px;
        text-align:center;
        padding:24px 0;
    }
    .footer-bottom p,
    .footer-bottom span {
        font-size:12px;
        line-height:1.7;
    }
}