*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:"Noto Sans KR",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.5;
}

/* 전체 래퍼 */
.wrap{
    max-width:1200px;
    margin:0 auto;
}

/* 상단 타이틀 영역 */
.ticket-head{
    text-align:center;
    margin-bottom:40px;
}
.ticket-sub{
    font-size:13px;
    color:#7b8295;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:6px;
}
.ticket-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
}
.ticket-desc{
    font-size:14px;
    color:#7b8295;
}

/* 티켓 카드 영역 */
.ticket-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
}

/* 카드 기본 */
.ticket-card{
    border-radius:14px;
    border:1px solid #e1e4f0;
    background:#ffffff;
    padding:24px 22px 26px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 6px 20px rgba(15,35,80,0.04);
    transition:.25s;
}
.ticket-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(15,35,80,0.10);
}

/* 상단 라벨 */
.ticket-label{
    font-size:12px;
    font-weight:600;
    color:#1F5FFF;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:4px;
}
.ticket-name{
    font-size:20px;
    font-weight:700;
    margin-bottom:6px;
}
.ticket-tagline{
    font-size:13px;
    color:#7b8295;
    margin-bottom:16px;
}

/* 가격 */
.ticket-price{
    font-size:26px;
    font-weight:700;
    color:#111827;
    margin-bottom:4px;
}
.ticket-price span.unit{
    font-size:14px;
    font-weight:400;
    color:#6b7280;
    margin-left:4px;
}
.ticket-note{
    font-size:12px;
    color:#9ca3af;
    margin-bottom:14px;
}

/* 혜택 리스트 */
.ticket-benefits{
    list-style:none;
    font-size:13px;
    color:#4b5563;
    margin-bottom:20px;
}
.ticket-benefits li{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-bottom:6px;
}
.ticket-benefits li::before{
    content:"•";
    color:#1F5FFF;
    margin-top:1px;
}

/* 버튼 */
.ticket-footer{
    margin-top:auto;
}
.ticket-btn{
    width:100%;
    height:44px;
    border-radius:999px;
    border:1px solid #1F5FFF;
    background:#ffffff;
    color:#1F5FFF;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    transition:.25s;
}
.ticket-btn:hover{
    background:#eff3ff;
}
.ticket-btn.primary{
    background:#1F5FFF;
    color:#ffffff;
}
.ticket-btn.primary:hover{
    background:#004ae8;
}
.ticket-btn span.arrow{
    font-size:16px;
}

/* 추천 배지 */
.ticket-badge{
    font-size:11px;
    font-weight:600;
    color:#ffffff;
    background:linear-gradient(90deg,#1F5FFF,#4f8bff);
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    margin-bottom:10px;
}

/* 가장 인기 있는 상품 강조 */
.ticket-card.popular{
    border:1px solid #1F5FFF;
    box-shadow:0 14px 34px rgba(31,95,255,0.22);
    position:relative;
}

/* 작은 안내 */
.ticket-help{
    margin-top:26px;
    text-align:center;
    font-size:12px;
    color:#9ca3af;
}

/* 상단 이미지 */
.fhero{
    width:100%;
    height:150px;
    background:url("img/service.png") center/cover no-repeat; /* ← 여기 변경 */
    position:relative;
    overflow:hidden;
}
.fhero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
}
.fhero-title{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
    font-size:40px;
    font-weight:700;
    color:#fff;
    text-shadow:0 2px 8px rgba(0,0,0,0.25);
    letter-spacing:5px;
}

/* 반응형 */
@media(max-width:960px){
    .ticket-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:640px){
    .ticket-grid{
        grid-template-columns:1fr;
    }
    .ticket-head{
        text-align:left;
    }
}