:root {
    --indigo: #211574;
    --violet: #56329e;
    --periwinkle: #7B8FE8;
    --sky: #A8C4F5;
    --mist: #EEF2FF;
    --white: #FFFFFF;
    --ink: #1A1535;
    --slate: #5A5580;
    --border: #D5CCFF;
    --shadow: rgba(59, 47, 143, .14);
    --accent: #b397d4;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--mist);
    color: var(--ink);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ── 배경 장식 ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 0%, rgba(108, 63, 197, .18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(123, 143, 232, .22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(176, 107, 255, .12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ── 컨테이너 ── */
.page {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 16px 64px;
}

/* ── 헤더 배지 ── */


/* ── 상단 헤더 ── */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 4px 0;
}

/* 좌측 로고 */
.top-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.top-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--indigo), var(--periwinkle));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(108, 63, 197, .25);
    transition: transform .2s ease;
}

.top-logo:hover .top-logo-icon {
    transform: scale(1.08);
}

.top-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.top-logo-main {
    font-family: 'Noto Serif KR', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--indigo);
}

.top-logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--mid, var(--periwinkle));
    letter-spacing: .1em;
}

/* 우측 페이지명 */
.top-page-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate);
    background: var(--mist);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: .02em;
}

/* ── 카드 공통 ── */
.card {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(213, 204, 255, .6);
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 24px var(--shadow);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    box-shadow: 0 8px 36px rgba(108, 63, 197, .18);
}

/* ── 이미지 카드 ── */
.img-card {
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.festival-img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #3B2F8F 0%, #6C3FC5 40%, #7B8FE8 100%);
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b0e74 0%, #6c5697 50%, #A8C4F5 100%);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 120px at 20% 80%, rgba(176, 107, 255, .3) 0%, transparent 70%),
        radial-gradient(circle 80px at 80% 20%, rgba(168, 196, 245, .3) 0%, transparent 70%);
}

.img-placeholder-icon {
    font-size: 42px;
    position: relative;
}

.img-placeholder-text {
    position: relative;
    letter-spacing: .05em;
}

.img-info {
    padding: 22px 24px 24px;
}

.festival-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 14px;
    line-height: 1.35;
}

.festival-meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--slate);
}

.meta-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.meta-row strong {
    color: var(--indigo);
    font-weight: 600;
}

.route-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.route-stop {
    background: var(--mist);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--violet);
}

.route-arr {
    color: var(--periwinkle);
    font-size: 12px;
}

/* ── 섹션 제목 ── */
.section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2e2a4d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
}

.required-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--violet), var(--accent));
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: .04em;
}

.optional-badge {
    font-size: 10px;
    font-weight: 500;
    color: var(--slate);
    background: var(--mist);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 10px;
}

/* ── 라디오 그룹 ── */
.radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-item {
    display: none;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
    min-width: 80px;
}

.radio-label:hover {
    border-color: var(--violet);
    color: var(--violet);
    background: rgba(108, 63, 197, .05);
}

.radio-item:checked+.radio-label {
    border-color: var(--violet);
    background: linear-gradient(135deg, var(--violet), var(--periwinkle));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(108, 63, 197, .3);
    transform: translateY(-1px);
}

.count-group .radio-label {
    min-width: 66px;
}

/* ── 금액 표시 ── */
.price-box {
    display: none;
    margin-top: 16px;
    background: linear-gradient(135deg, rgba(59, 47, 143, .06), rgba(123, 143, 232, .08));
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    animation: fadeSlide .35s ease forwards;
}

.price-box.show {
    display: block;
}

/* ── 환불 안내 ── */
.payment-notice {
    margin-top: 14px;
    padding: 14px 16px;
    background: rgba(59, 47, 143, .05);
    border: 1px dashed var(--border);
    border-radius: 12px;

    font-size: 12px;
    color: var(--slate);
    line-height: 1.5;
}

/* 환불 규정 첫 줄 (굵게) */
.payment-notice br+br {
    display: none;
    /* 연속 빈 줄 방지 */
}

/* * 주의 문구 강조 */
.payment-notice {
    /* * 로 시작하는 줄을 CSS만으로 강조하기 어려우므로
     아래처럼 HTML에 <span> 감싸는 것도 추천 */
}

.notice-highlight {
    color: var(--violet);
    font-weight: 600;
}

.notice-title {
    font-weight: 700;
    color: var(--indigo);
    font-size: 13px;
    margin-bottom: 2px;
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-line {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 6px;
}

.price-amount {
    font-family: 'Noto Serif KR', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--violet);
    letter-spacing: -.02em;
}

.price-amount sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    vertical-align: baseline;
    margin-left: 3px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0;
}

.account-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--slate);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.account-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.account-bank {
    font-size: 12px;
    color: var(--slate);
    font-weight: 500;
}

.account-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--indigo);
    letter-spacing: .04em;
}

.account-name {
    font-size: 12px;
    color: var(--slate);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: none;
    background: linear-gradient(135deg, var(--violet), var(--periwinkle));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    font-family: 'Noto Sans KR', sans-serif;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(108, 63, 197, .35);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #2E9E6B, #4BC98A);
}

/* ── 인풋 ── */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-wrap {
    position: relative;
}

.input-wrap label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 6px;
    letter-spacing: .04em;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: all .2s ease;
    -webkit-appearance: none;
}

.input-field::placeholder {
    color: #C4BFD9;
}

.input-field:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(108, 63, 197, .12);
}

.input-field.error {
    border-color: #F06595;
    box-shadow: 0 0 0 4px rgba(240, 101, 149, .1);
}

textarea.input-field {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    line-height: 1.6;
}

.char-count {
    text-align: right;
    font-size: 11px;
    color: var(--slate);
    margin-top: 5px;
}

/* ── 체크박스 ── */
.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-wrap input[type="checkbox"] {
    display: none;
}

.custom-check {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s ease;
    margin-top: 1px;
}

.checkbox-wrap input:checked~.custom-check {
    background: linear-gradient(135deg, var(--violet), var(--periwinkle));
    border-color: transparent;
}

.custom-check svg {
    opacity: 0;
    transition: opacity .2s;
}

.checkbox-wrap input:checked~.custom-check svg {
    opacity: 1;
}

.check-text {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}

.check-text strong {
    color: var(--violet);
    font-weight: 600;
}

/* ── 에러 메시지 ── */
.error-msg {
    font-size: 11px;
    color: #E05C85;
    margin-top: 5px;
    display: none;
}

.error-msg.show {
    display: block;
}

/* ── 제출 버튼 ── */
.submit-wrap {
    margin-top: 8px;
    text-align: center;
}

.submit-btn {
    width: 65%;
    padding: 17px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 50%, var(--periwinkle) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: .06em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(59, 47, 143, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(59, 47, 143, .42);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(0);
}

/* ── 성공 모달 ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 50, .65);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 28px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(59, 47, 143, .3);
    transform: scale(.9) translateY(20px);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.modal-overlay.show .modal-box {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--periwinkle));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(108, 63, 197, .35);
}

.modal-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.65;
}

.modal-close {
    margin-top: 22px;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--violet), var(--periwinkle));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(108, 63, 197, .3);
}

/* ── 반응형 ── */
@media (max-width: 480px) {
    .page {
        padding: 16px 12px 56px;
    }

    .festival-name {
        font-size: 30px;
    }

    .price-amount {
        font-size: 24px;
    }

    .radio-group {
        gap: 8px;
    }

    .radio-label {
        padding: 9px 16px;
        font-size: 13px;
    }
}

.main-image {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

/* 예약완료화면 */
/* ── 예약 완료 화면 ── */
.complete-wrap {
    max-width: 680px;
    width: 90%;
    margin: 0 auto;
}

.complete-header {
    text-align: center;
    padding: 36px 24px;
}

.complete-check {
    font-size: 52px;
    margin-bottom: 12px;
    /* 등장 시 통통 튀는 애니메이션 */
    animation: bounceIn .6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes bounceIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.complete-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 10px;
}

.complete-num {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--violet);
    background: var(--mist);
    border: 1.5px solid var(--border);
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: .08em;
}

/* ── 예약 내역 요약 ── */
.summary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--mist);
    font-size: 16px;
}

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

.summary-label {
    color: var(--slate);
}

.summary-value {
    font-weight: 600;
    color: var(--indigo);
}

/* 최종 금액 강조 */
.summary-row.highlight .summary-label {
    font-weight: 600;
    color: var(--ink);
}

.summary-row.highlight .summary-value {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    color: var(--violet);
}

.complete-notice {
    font-size: 15px;
    color: var(--slate);
    margin-bottom: 14px;
    padding: 10px 14px;
    background: rgba(108, 63, 197, .06);
    border-radius: 10px;
    border-left: 3px solid var(--violet);
}

/* ── 카카오톡 버튼 ── */
.kakao-wrap {
    width: 100%;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    padding: 13px 28px;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.button-secondary {
    background: #FEE500;
    /* 카카오 공식 컬러 */
    color: #3A1D1D;
    box-shadow: 0 4px 16px rgba(254, 229, 0, .4);
    width: 50%;
    /* 폼 카드 너비에 맞게 풀 너비 */
    margin-bottom: 16px;

}

.button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 229, 0, .5);
}

.button-secondary:active {
    transform: translateY(0);
}

/* ── Footer ── */
.footer {
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    margin-top: 8px;
    box-shadow: 0 4px 24px var(--shadow);
}

.footer strong {
    font-size: 15px;
    letter-spacing: .04em;
}

.footer a {
    color: rgba(255, 255, 255, .6);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.footer a:hover {
    color: var(--white);
}

.footer small {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .04em;
}

/* ── 신청 경로 라디오 ── */
.apply-from {
    display: none;
}

.apply-from-wrap {
    display: flex;
    flex-wrap: wrap;
    /* 좁은 화면에서 자동 줄바꿈 */
    flex-direction: row;
    /* 가로 나열 */
    gap: 8px;
    margin-top: 2px;
}

.apply-from-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 12px !important;
    font-weight: 500;
    color: var(--slate);
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
    white-space: nowrap;
    /* 라벨 텍스트 줄바꿈 방지 */
}

.apply-from-label:hover {
    border-color: var(--violet);
    color: var(--violet);
    background: rgba(108, 63, 197, .05);
}

.apply-from:checked+.apply-from-label {
    border-color: var(--violet);
    background: linear-gradient(135deg, var(--violet), var(--periwinkle));
    color: var(--white);
    box-shadow: 0 3px 10px rgba(108, 63, 197, .25);
}

/* 기타 직접입력 박스 */
.apply-from-etc {
    margin-top: 10px;
    animation: fadeSlide .25s ease forwards;
}




/* ── 히어로 오버레이 ── */
.hero-overlay-wrap {
    position: relative;
    border-radius: inherit;
    overflow: hidden;
}

.hero-overlay-wrap .main-image {
    display: block;
    width: 100%;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 18, 60, 0.10) 0%,
            rgba(10, 18, 60, 0.72) 55%,
            rgba(10, 18, 60, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px 18px;
    box-sizing: border-box;
}

.hero-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.hero-overlay-badge .live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-overlay-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.hero-overlay-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.hero-overlay-chip {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-overlay-chip.price {
    background: rgba(99, 102, 241, 0.8);
    border-color: rgba(139, 92, 246, 0.6);
    font-weight: 700;
    font-size: 13px;
}

.hero-overlay-urgency {
    display: inline-block;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 3px;
    width: fit-content;
    letter-spacing: 0.2px;
}

.hero-overlay-urgency2 {
    background: rgba(29, 201, 163, 0.85);
}

.hero-overlay-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 30px;
}

.hero-overlay-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}

.waiting {
    color: #dd0606;
    text-align: center;
}