@import url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css');

* {
    font-family: "SUIT", sans-serif;
    letter-spacing: -0.8px;
}

html,
body {
    margin: 0px;
    padding: 0px;
    position: relative;
    height: 100%;
    background-color: #000;
}

ul,
li,
dl,
dd,
dt {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

:focus:not(:focus-visible) {
    outline: none;
}

.wrap {
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main {
    height: 755px;
    background: url(../img/main_bg.jpg) no-repeat center center / cover;
}

.main .container {
    position: relative;
}

.main_btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.main_visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
}

.bright {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bright .bright_left,
.bright .bright_right,
.coin,
.text {
    position: relative;
}

.coin .coin_left,
.coin .coin_right,
.bright .bright_left .light_s,
.bright .bright_left .light_l,
.bright .bright_right .light_s,
.bright .bright_right .light_l,
.text .text_left,
.text .text_right {
    position: absolute;
}

.bright .bright_left .light_s {
    top: 50px;
    right: 280px;
}

.bright .bright_left .light_l {
    top: 250px;
    right: 200px;
}

.bright .bright_right .light_s {
    top: 50px;
    left: 280px;
}

.bright .bright_right .light_l {
    top: 450px;
    left: 280px;
}

.coin .coin_left {
    top: 400px;
    left: 340px;
}

.coin .coin_right {
    top: 340px;
    right: 330px;
}

.text .text_left,
.text .text_right {
    font-family: "Paperlogy", sans-serif;
    color: #2d8386;
    font-size: 20px;
}

.text .text_left {
    top: 329px;
    left: 277px;
}

.text .text_right {
    top: 274px;
    right: 298px;
}




/* 애니메이션 효과 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* bright 애니메이션 */
.bright {
    animation: fadeIn 1s ease-in-out;
}

.bright .bright_left .light_s,
.bright .bright_right .light_s {
    animation: fadeIn 1s ease-in-out 0.3s both, twinkle 2s ease-in-out 1.3s infinite;
}

.bright .bright_left .light_l,
.bright .bright_right .light_l {
    animation: fadeIn 1s ease-in-out 0.5s both, twinkle 2.5s ease-in-out 1.5s infinite;
}

/* text 애니메이션 */
.text .text_left {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.text .text_right {
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* coin 애니메이션 */
.coin .coin_left {
    animation: fadeIn 1s ease-in-out 1.1s both, float 3s ease-in-out 2.1s infinite;
}

.coin .coin_right {
    animation: fadeIn 1s ease-in-out 1.3s both, float 3s ease-in-out 2.3s infinite;
}

/* main_visual 애니메이션 */
.main_visual {
    animation: fadeInScale 1.2s ease-out 1.5s both;
}

.main_visual img:first-child {
    animation: fadeInUp 1s ease-out 1.5s both;
}

.main_visual img:last-child {
    animation: fadeInScale 1.2s ease-out 1.7s both;
}

/* Content 영역 */
.content {
    background-color: #000;
    color: #fff;
    padding: 80px 0 0px;
}

.content section {
    margin-bottom: 100px;
}

.content .title {
    margin-bottom: 40px;
    text-align: left;
}

.content .title p {
    font-size: 24px;
    font-weight: 700;
    font-family: "Paperlogy", sans-serif;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.5;
    border-left: 8px solid #fff;
    padding-left: 20px;
}

.content .title p span {
    color: #00ffff;
    font-family: "Paperlogy", sans-serif;
}

.content .title .sub_text {
    display: block;
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-top: 10px;
}

/* 혜택 박스 */
.section_benefit {
    text-align: center;
}

.benefit_box {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 16px 40px;
    background-color: #000;
    border: 3px solid #00ffff;
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.benefit_text {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    margin: 0;
    font-family: "Paperlogy", sans-serif;
}

.benefit_text span,
.section_subtitle span {
    color: #00ffff;
    font-family: "Paperlogy", sans-serif;
}

/* 상담 프로세스 */
.consultation_process {
    margin-top: 60px;
}

.section_subtitle {
    font-size: 20px;
    font-weight: 700;
    font-family: "Paperlogy", sans-serif;
    color: #fff;
    margin: 0 0 50px 0;
    text-align: left;
}


.process_list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

.process_list::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.process_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.process_number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #111;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process_content {
    color: #fff;
}

.process_title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.process_desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #bbb;
}

.process_desc span {
    color: #fff;
    font-weight: 600;
}

/* 상담가 리스트 */
.consultant_list {
    margin-top: 80px;
}

.consultant_items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
}

.consultant_item {
    display: grid;
    grid-template-columns: 100px 1fr;
    text-align: center;
    background-color: #000a1c;
    padding: 20px 10px;
    border-radius: 10px;
    border: 1px solid #333;
    flex: 1;
}

.consultant_item .consultant_info_box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.consultant_photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background-color: #fff;
}

.consultant_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultant_name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: left;
}

.consultant_specialty {
    font-size: 12px;
    color: #00ffff;
    margin: 0;
    text-align: left;
}

.consultant_desc {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
}

/* 리뷰 리스트 */
.review_list {
    margin-top: 80px;
}

.review_items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    text-align: left;
}

.review_item {
    flex: 1;
    background-color: #000a1c;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.review_stars {
    font-size: 20px;
    color: #ffa200;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review_text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin: 0 0 20px 0;
    min-height: 80px;
}

.review_user {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-top: 100px;
}

.footer_company {
    font-size: 14px;
    color: #fff;
    margin: 0 0 10px 0;
}

.footer_info {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.text_list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    top: 48px;
}

.text_list li {
    position: relative;
}

.text_list li img {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
}

.text_cont {
    background-color: #fff;
    border: 16px solid #393939;
    color: #010101;
    border-radius: 100px;
    padding: 20px 30px;
}

.text_cont span {
    font-size: 20px;
    font-weight: 900;
}