.modal {
display: none;
position: fixed;
inset: 0;
z-index: 9999;
}

.modal.on {
display: block;
}

.modal_dim {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5);
}

.modal_wrap {
position: absolute;
top: 50%;
left: 50%;
width: calc(100% - 40px);
max-width: 560px;
max-height: calc(100vh - 40px);
background: #fff;
border-radius: 20px;
box-sizing: border-box;
transform: translate(-50%, -50%);
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.modal_head {
padding: 24px 24px 12px;
}

.modal_title {
margin: 0;
font-size: 24px;
font-weight: 700;
line-height: 1.4;
color: #111;
word-break: keep-all;
}

.modal_body {
padding: 0 24px 24px;
font-size: 16px;
line-height: 1.7;
color: #555;
word-break: keep-all;
overflow-y: auto;
max-height: calc(100vh - 220px);
}

.modal_foot {
padding: 0 24px 24px;
}

.modal_btn {
width: 100%;
height: 54px;
border: 0;
border-radius: 999px;
background: #111;
color: #fff;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}

.modal_close {
position: absolute;
top: 14px;
right: 14px;
width: 42px;
height: 42px;
border: 0;
background: transparent;
color: #111;
font-size: 28px;
line-height: 1;
cursor: pointer;
}

body.modal_open {
overflow: hidden;
}

@media (max-width: 768px) {
.modal_wrap {
    width: calc(100% - 24px);
    border-radius: 16px;
}

.modal_head {
    padding: 20px 20px 10px;
}

.modal_title {
    font-size: 20px;
}

.modal_body {
    padding: 0 20px 20px;
    font-size: 15px;
    max-height: calc(100vh - 200px);
}

.modal_foot {
    padding: 0 20px 20px;
}

.modal_btn {
    height: 50px;
    font-size: 15px;
}
}

.btn_company_modal_open,
.btn_company_modal_close {
cursor: pointer;
}


.finance-areas-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    box-sizing: border-box;
    background: #0a0f14;
}

.finance-areas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-nsec02.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
}

.finance-areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.52)),
        rgba(0, 0, 0, 0.18);
}

.finance-areas-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
}

.finance-areas-subtitle {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 12px;
    line-height: 1;
}

.finance-areas-title {
    margin: 0;
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.25;
    word-break: keep-all;
}
.finance-areas-title span {
  font-size: 72px;
}
.finance-areas-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 12px;
}

.finance-area-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition: all 0.25s ease;
}

.finance-area-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-2px);
}

@media (max-width: 1280px) {
    .finance-areas-section {
        min-height: auto;
        padding: 90px 24px;
    }

    .finance-areas-inner {
        max-width: 1100px;
    }

    .finance-areas-title {
        font-size: 50px;
    }
    .finance-areas-title span {
      font-size: 64px;
    }
    .finance-area-item {
        font-size: 17px;
        min-height: 84px;
    }
}

@media (max-width: 1024px) {
    .finance-areas-section {
        padding: 80px 20px;
    }

    .finance-areas-subtitle {
        font-size: 16px;
        letter-spacing: 9px;
        margin-bottom: 16px;
    }

    .finance-areas-title {
        font-size: 42px;
    }
    .finance-areas-title span {
      font-size: 52px;
    }
    .finance-areas-grid {
        margin-top: 56px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .finance-areas-section {
        padding: 70px 16px;
    }

    .finance-areas-subtitle {
        font-size: 14px;
        letter-spacing: 7px;
        line-height: 1.4;
    }

    .finance-areas-title {
        font-size: 30px;
        line-height: 1.4;
    }
    .finance-areas-title span {
      font-size: 40px;
    }
    .finance-areas-grid {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .finance-area-item {
        min-height: 72px;
        padding: 14px 10px;
        font-size: 15px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .finance-areas-section {
        padding: 60px 14px;
    }

    .finance-areas-subtitle {
        font-size: 12px;
        letter-spacing: 5px;
        margin-bottom: 12px;
    }

    .finance-areas-title {
        font-size: 24px;
    }
    .finance-areas-title span {
      font-size: 30px;
    }
    .finance-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .finance-area-item {
        min-height: 64px;
        font-size: 14px;
    }
}

/*scam*/
.scam{
  background: url(../img/background03.jpg) no-repeat center bottom /cover;
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}
.scam_in{
  width: 1240px;
  margin: 0 auto;
}
.title_img p{
  padding-top: 20px;
  font-size: 37px;
}
.title_img img {
    display: inline-block;
}
.talk{
  margin-top: 50px;
  width: 100%;
  position: relative;
  min-height: 800px;
}
.talk li{
  position: absolute;
}
.talk01{
  width: 47%;
  top: 0;
  left: 11%;
}
.talk02{
  width: 45%;
  top: 15%;
  right: 6%;
}
.talk03{
  width: 52%;
  top: 39%;
  left: 16%;
}
.talk04{
  width: 54%;
  top: 67%;
  right: 6%;
}
.scam_p{
  padding-top: 30px;
  font-size: 37px;
}
.bold{
  font-size: 55px;
  font-weight: 800;
}
.call_btn{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  font-weight: 600;
  background-color: #fb3a3a;
  border: none;
  border-radius: 50px;
  width: calc(1240px - 12%);
  color: #fff;
  display: flex;
  justify-content: center;
  z-index: 99;
  padding: 20px 0;
}
.call_btn span{
  font-size: 48px;
  padding: 0 20px;
}

@media (max-width:1260px){
    .scam_in{
    width: 100%;
    padding: 0 40px;
  }
  .title_img img{
    width: 70%;
  }
  .title_img p{
    padding-top: 30px;
    font-size: 32px;
  }
  .talk{
    min-height: 700px;
  }
  .scam_p{
    font-size: 32px;
  }
  .bold{
    font-size: 50px;
  }
  .call_btn{
    width: 70%;
    font-size: 42px;
  }
  .call_btn span{
    font-size: 32px;
  }
}

@media (max-width:1024px){ 
    .scam{
    padding: 100px 0 50px;
  }
  .scam_in{
    padding: 0 20px;
  }
  .title_img img{
    width: 80%;
  }
  .title_img p{
    font-size: 26px;
  }
  .talk{
    min-height: 550px;
  }
  .scam_p{
    font-size: 26px;
  }
  .bold{
    font-size: 37px;
  }
  .call_btn{
    width: 75%;
  }
}

@media (max-width:720px){
  .scam{
    background: url(../img/background03_mo.jpg) no-repeat center bottom /cover;
  }
    .title_img p{
    font-size: 20px;
  }
  .talk{
    margin-top: 30px;
    min-height: 390px;
  }
  .scam_p{
    font-size: 20px;
    padding-top: 20px;
  }
  .bold{
    font-size: 32px;
  }
  .call_btn{
    width: 80%;
    font-size: 32px;
  }
  .call_btn img{
    width: 6%;
  }
  .call_btn span{
    font-size: 24px;
    padding: 0 10px;
  }
}
@media (max-width:480px){
  .talk{
    min-height: 340px;
  }
}
@media (max-width:400px){
 .title_img p span{
    display: block;
  }
  .title_img p br{
    display: none;
  }
  .talk{
    min-height: 270px;
  }
  .call_btn{
    width: 85%;
    font-size: 22px;
  }
  .call_btn span{
    font-size: 18px;
  }
  .scam_p span{
    display: block;
  }

}

.review-talk-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 900px;
    padding: 60px 20px;
    box-sizing: border-box;
}

.review-talk-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    min-height: 760px;
    margin: 0 auto;
}

.review-bubble {
    position: absolute;
    padding: 28px 34px;
    border-radius: 18px;
    background: rgba(180, 180, 180, 0.42);
    color: #f3f3f3;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    word-break: keep-all;
}

.review-bubble::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.bubble-1 {
    top: 20px;
    left: 40px;
    width: 540px;
}

.bubble-1::after {
    left: 38px;
    bottom: -34px;
    border-width: 34px 34px 0 0;
    border-color: rgba(180, 180, 180, 0.42) transparent transparent transparent;
}

.bubble-2 {
    top: 140px;
    right: 0;
    width: 520px;
}

.bubble-2::after {
    left: 36px;
    bottom: -34px;
    border-width: 34px 34px 0 0;
    border-color: rgba(180, 180, 180, 0.42) transparent transparent transparent;
}

.bubble-3 {
    top: 390px;
    left: 100px;
    width: 670px;
}

.bubble-3::after {
    left: 40px;
    bottom: -36px;
    border-width: 36px 36px 0 0;
    border-color: rgba(180, 180, 180, 0.42) transparent transparent transparent;
}

.bubble-4 {
    right: 0;
    bottom: 20px;
    width: 640px;
}

.bubble-4::after {
    left: 38px;
    bottom: -34px;
    border-width: 34px 34px 0 0;
    border-color: rgba(180, 180, 180, 0.42) transparent transparent transparent;
}

@media (max-width: 1280px) {
    .review-talk-section {
        min-height: auto;
        padding: 50px 20px 70px;
    }

    .review-talk-inner {
        max-width: 1000px;
        min-height: 700px;
    }

    .review-bubble {
        font-size: 21px;
        padding: 24px 28px;
    }

    .bubble-1 {
        width: 470px;
    }

    .bubble-2 {
        width: 450px;
    }

    .bubble-3 {
        width: 570px;
    }

    .bubble-4 {
        width: 540px;
    }
}

@media (max-width: 1024px) {
    .review-talk-inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .review-bubble {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        font-size: 20px;
    }

    .review-bubble::after {
        left: 34px;
        bottom: -30px;
        border-width: 30px 30px 0 0;
        border-color: rgba(180, 180, 180, 0.42) transparent transparent transparent;
    }

    .bubble-1,
    .bubble-2,
    .bubble-3,
    .bubble-4 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .review-talk-section {
        padding: 40px 16px 60px;
    }

    .review-talk-inner {
        gap: 34px;
    }

    .review-bubble {
        padding: 20px 20px;
        font-size: 16px;
        line-height: 1.5;
        border-radius: 14px;
    }

    .review-bubble::after {
        left: 24px;
        bottom: -22px;
        border-width: 22px 22px 0 0;
        border-color: rgba(180, 180, 180, 0.42) transparent transparent transparent;
    }
}

@media (max-width: 480px) {
    .review-bubble {
        font-size: 15px;
        padding: 18px 16px;
    }
}

/*info*/
.info{
  background-color: #3b3b3b;
}
.info_in{
  width: 1240px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 150px;
}
.info_title{
  font-size: 93px;
  font-weight: 600;
}
.info_text{
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 50px;
}
.info_in input, textarea {
    background-color: #fff;
    color: #000;
}
.info_in ul{
  padding: 0 80px;
  width: 100%;
}
.info_in ul li{
  display: flex;
  align-items: center;
  margin-bottom: 23px;
  width: 100%;
}
.info_in ul li:nth-child(3){
  align-items: flex-start;
}
.info_in ul li:nth-child(3)>label{
  padding-top: 30px;
}
.info_in ul li label{
  width: 18%;
  text-align: left;
  font-size: 45px;
}
.info_in ul li>div{
  width: 82%;
}
.info_in ul li>div>input{
  width: 100%;
  height: 120px;
  font-size: 45px;
  padding-left: 20px;
}
.info_in ul li textarea{
  width: 100%;
  height: 477px;
  resize: none;
  font-size: 45px;
  padding-left: 20px;
}
.radio_box{
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 100px;
}
.radio_box .radio{
  font-size: 37px;
  color: #aaaaaa;
  font-weight: 600;
  width: 50%;
}
.radio_box .radio .popup{
  text-decoration: underline;
  color: #aaaaaa;
}
.radio_box span{
  font-size: 37px;
  color: #aaaaaa;
  font-weight: 600;
}
input[type="radio"]{
  accent-color: #fb3a3a;
}
.radio_box input{
  width: 35px;
  height: 35px;
  margin-right: 40px;
  border: 2px;
}
.consult_notice{
  width: calc(82% - 20px);
  margin: -36px 0 28px auto;
  color: #aaaaaa;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  word-break: keep-all;
}
.info_in .btn{
  font-size: 47px;
  font-weight: 600;
  background-color: #ed0c00;
  border: none;
  border-radius: 100px;
  width: 60%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 30px 0;
  margin: 0 auto;
  cursor: pointer;
}
.info_in .btn img{
  padding-left: 20px;
}

@media (max-width:1260px){
    .info_in{
    width: 100%;
    padding: 100px 40px 150px;
  }
  .info_title{
    font-size: 70px;
  }
  .info_text{
    font-size: 37px;
  }
  .info_in ul li label{
    font-size: 37px;
  }
  .info_in ul li>div>input{
    height: 100px;
    font-size: 37px;
  }
  .info_in ul li textarea{
    height: 400px;
    font-size: 37px;
  }
  .radio_box .radio{
    font-size: 32px;
  }
  .radio_box span{
    font-size: 32px;
  }
  .radio_box input{
    width: 27px;
    height: 27px;
    margin-right: 40px;
    border: 2px;
  }
  .info_in .btn{
    font-size: 37px;
  }
}
@media (max-width:1024px){
    .info_in{
    padding: 80px 20px 100px;
  }
  .info_title{
    font-size: 45px;
  }
  .info_text{
    font-size: 28px;
  }
  .info_in ul{
    padding: 0 0 0 10px;
  }
  .info_in ul li:nth-child(3)>label{
    padding-top: 15px;
  }
  .info_in ul li label{
    font-size: 28px;
  }
  .info_in ul li>div>input{
    height: 80px;
    font-size: 28px;
  }
  .info_in ul li textarea{
    height: 250px;
    font-size: 28px;
  }
  .radio_box{
    padding-bottom: 50px;
  }
  .radio_box .radio{
    font-size: 22px;
  }
  .radio_box span{
    font-size: 22px;
  }
  .radio_box input{
    width: 20px;
    height: 20px;
    margin-right: 20px;
  }
  .consult_notice{
    width: calc(100% - 10px);
    margin: -18px 0 22px auto;
    font-size: 22px;
  }
  .info_in .btn{
    font-size: 32px;
  }
}

@media (max-width:720px){
     .info_in{
    padding: 80px 20px 100px;
  }
  .info_title{
    font-size: 37px;
  }
  .info_text{
    font-size: 20px;
    padding-bottom: 30px;
  }
  .info_in ul{
    padding: 0;
  }
  .info_in ul li{
    margin-bottom: 12px;
  }
  .info_in ul li:nth-child(3)>label{
    padding-top: 15px;
  }
  .info_in ul li label{
    font-size: 22px;
  }
  .info_in ul li>div>input{
    height: 60px;
    font-size: 22px;
  }
  .info_in ul li textarea{
    height: 250px;
    font-size: 22px;
  }
  .radio_box{
    padding-bottom: 50px;
  }
  .radio_box .radio{
    font-size: 20px;
  }
  .radio_box span{
    font-size: 20px;
  }
  .radio_box input{
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  .info_in .btn{
    width: 70%;
    padding: 20px 0;
    font-size: 27px;
  }
}

@media (max-width:560px){
     .info_in{
    padding: 50px 20px 80px;
  }
  .info_title{
    font-size: 37px;
  }
  .info_text{
    font-size: 18px;
  }
  .info_in ul{
    padding: 0;
  }
  .info_in ul li{
    margin-bottom: 12px;
  }
  .info_in ul li:nth-child(3)>label{
    padding-top: 15px;
  }
  .info_in ul li label{
    font-size: 20px;
  }
  .info_in ul li>div>input{
    height: 60px;
    font-size: 20px;
  }
  .info_in ul li textarea{
    height: 250px;
    font-size: 20px;
  }
  .radio_box{
    padding-bottom: 30px;
  }
  .radio_box .radio{
    font-size: 18px;
  }
  .radio_box span{
    font-size: 18px;
  }
  .radio_box input{
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  .consult_notice{
    width: 100%;
    margin: -6px 0 18px;
    font-size: 18px;
    margin-bottom: 18px;
  }
  .info_in .btn{
    font-size: 20px;
  }
  .radio_box .radio{
    width: 65%;
  }
}

@media (max-width:400px){
     .info_text span{
    display: block;
  }
  .info_in ul li label{
    width: 25%;
  }
  .info_in ul li>div{
    width: 75%;
  }
  .info_in ul li>div>input{
    height: 40px;
  }
  .info_in ul li textarea{
    height: 200px;
  }
  .radio_box{
    padding-top: 10px;
  }
  .radio_box .radio{
    width: 72%;
    font-size: 16px;
  }
  .radio_box span{
    font-size: 16px;
  }
  .radio_box input{
    margin-right: 5px;
  }
  .consult_notice{
    margin-top: 0;
    font-size: 15px;
  }
  .info_in .btn{
    width: 85%;
    padding: 15px 0;
  }
}

.btn.disabled {
    opacity: 0.5;
    pointer-events: none;   /* 🔥 클릭 자체 봉인 */
    cursor: not-allowed;
}


.color-yellow {
  color: #ffe600 !important;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.15),
    0 2px 6px rgba(0,0,0,0.15);
}

.color-red {
  color: #ff3b30 !important;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.12),
    0 2px 6px rgba(0,0,0,0.6),
    0 0 10px rgba(255, 59, 48, 0.6),
    0 0 18px rgba(255, 59, 48, 0.4);
}

.color-gold {
  background: linear-gradient(180deg, #fff6b0, #EFBF04, #c89b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.double-underline {
  position: relative;
  display: inline-block;
}

.double-underline::before,
.double-underline::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #CD1C18;
}

.double-underline::before {
  bottom: 0;
}

.double-underline::after {
  bottom: -5px;
}

.circle-box {
  width: 120px;
  height: 120px;
  border: 2px solid red;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* 가운데 정렬 */
  text-align: center;
}

/* 타이틀 */
.review {
  padding: 80px 0;
}
.gallery_title{
  margin-bottom: 40px;
  font-size: 42px;
   font-weight: 600;
   text-align: center;
   color: #000;
}
.gallery_main img {
   max-width: 100%;
   margin: 0 auto;
   margin-bottom: 40px;
}
/* 갤러리 그리드 */
.gallery{
  --cols-pc: 4;
  --cols-mo: 2;

  --gap-pc: 24px;   /* 기존(12px) 대비 2배 */
  --gap-mo: 16px;   /* 모바일은 약간만 증가 */

  display: grid;
  grid-template-columns: repeat(var(--cols-pc), minmax(0, 1fr));
  gap: var(--gap-pc);
}

@media (max-width: 768px){
      .review {
      padding: 40px 10px;
    }
   .gallery_title {
      font-size: 28px;
      margin-bottom: 26px;
   }
  .gallery{
    grid-template-columns: repeat(var(--cols-mo), minmax(0, 1fr));
    gap: var(--gap-mo);
  }
}

/* 썸네일 동일 사이즈 */
.g-item{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
    border: 1px solid #ccc;
}
.g-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .2s ease;
}
.g-item:hover img{ transform: scale(1.03); }

/* 라이트박스 */
.lb{ position: fixed; inset: 0; z-index: 9999; display: none; }
.lb.is-open{ display: block; }

.lb__dim{ position: absolute; inset: 0; background: rgba(0,0,0,.75); }

.lb__panel{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb__img{
  max-width: 100%;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: #000;
}

/* 모바일에서 팝업 이미지를 화면의 90% 정도로 */
@media (max-width: 768px){
  .lb__panel{
    width: 90vw;        /* 패널 자체를 90%로 */
    max-width: 90vw;
    max-height: 90vh;
  }
  .lb__img{
    width: 100%;        /* 패널을 꽉 채우게 */
    height: auto;
    max-height: 90vh;
  }
}

/* 닫기 버튼 */
.lb__close{
  position: absolute;
  right: -10px;
  top: -10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
}
.review {
  background: #fff;
}
.review .cont {
  max-width: 1280px;
  margin: 0 auto;
}

.highlight-hope {
    color: #ffd54f;
    font-weight: 700;
    
    /* 더 강한 골드 빛 */
    text-shadow:
        0 0 10px rgba(255, 215, 80, 0.8),
        0 0 20px rgba(255, 200, 50, 0.7),
        0 0 35px rgba(255, 180, 0, 0.6),
        0 0 55px rgba(255, 170, 0, 0.5);

    /* 완전 골드 그라데이션 */
    background: linear-gradient(
        90deg,
        #fff8cc 0%,
        #ffe066 25%,
        #ffcc00 50%,
        #ffb300 75%,
        #fff3a0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: hopeGlow 2.5s ease-in-out infinite alternate;
}

@keyframes hopeGlow {
    from {
        text-shadow:
            0 0 8px rgba(255, 215, 80, 0.6),
            0 0 18px rgba(255, 200, 50, 0.5),
            0 0 28px rgba(255, 180, 0, 0.4);
    }
    to {
        text-shadow:
            0 0 16px rgba(255, 230, 120, 1),
            0 0 30px rgba(255, 200, 50, 0.9),
            0 0 45px rgba(255, 170, 0, 0.8),
            0 0 70px rgba(255, 150, 0, 0.7);
    }
}