@charset "utf-8";

/* ============================================
   텔레그램 예약 음성 대화 알림 가이드 (v1.0.0)
   접두사: tg-remind-
   테마: Reminder Amber & Deep Indigo
============================================ */

:root {
    --remind-primary: #f59e0b; /* Amber */
    --remind-primary-dark: #d97706;
    --remind-navy: #1e1b4b;
    --remind-white: #ffffff;
    
    --remind-slate-900: #0f172a;
    --remind-slate-800: #1e293b;
    --remind-slate-600: #475569;
    --remind-slate-400: #94a3b8;
    --remind-slate-100: #f1f5f9;
    
    --remind-radius: 20px;
}

/* ============================================
   그누보드5 기존 CSS 충돌 방지용 완전 리셋
============================================ */
#tg-remind-wrapper,
#tg-remind-wrapper *,
#tg-remind-wrapper *::before,
#tg-remind-wrapper *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    font-style: normal;
    -webkit-font-smoothing: antialiased !important;
    word-break: keep-all;
}

/* 기본 타이포그래피 설정 */
#tg-remind-wrapper h1, #tg-remind-wrapper h2, #tg-remind-wrapper h3,
#tg-remind-wrapper p, #tg-remind-wrapper span, #tg-remind-wrapper div {
    font-weight: inherit;
    line-height: 1.6;
    color: inherit;
}

#tg-remind-wrapper .fas, 
#tg-remind-wrapper .fab, 
#tg-remind-wrapper .far {
    display: inline-block !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    font-style: normal !important;
    vertical-align: middle !important;
}

#tg-remind-wrapper .fab {
    font-family: "Font Awesome 5 Brands" !important;
}

/* 래퍼 본체 */
#tg-remind-wrapper {
    max-width: 1100px !important;
    margin: 0 auto !important;
    width: 100% !important;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 16px !important;
    background-color: #fffaf5 !important;
    color: var(--remind-slate-800) !important;
    padding-bottom: 80px !important;
    overflow: hidden !important;
}

#tg-remind-wrapper strong {
    font-weight: 700 !important;
    color: var(--remind-primary-dark) !important;
}

#tg-remind-wrapper p {
    margin-bottom: 16px !important;
    line-height: 1.8 !important;
    display: block !important;
}

#tg-remind-wrapper mark {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%) !important;
    color: #92400e !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
}

/* ============================================
   히어로 섹션
============================================ */
#tg-remind-wrapper .tg-remind-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #f59e0b 100%) !important;
    padding: 110px 24px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

#tg-remind-wrapper .tg-remind-hero::before {
    content: "\f0f3" !important; /* Bell icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    font-size: 280px !important;
    color: rgba(255, 255, 255, 0.05) !important;
    bottom: -40px !important; left: -40px !important;
    transform: rotate(-10deg) !important;
}

#tg-remind-wrapper .tg-remind-hero__inner {
    position: relative !important; z-index: 1 !important;
    display: flex !important; flex-direction: column !important; align-items: center !important;
}

#tg-remind-wrapper .tg-remind-hero__badge {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    font-size: 14px !important; font-weight: 850 !important;
    padding: 10px 26px !important; border-radius: 100px !important;
    margin-bottom: 28px !important; border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

#tg-remind-wrapper .tg-remind-hero__title {
    font-size: 36px !important; font-weight: 950 !important; line-height: 1.3 !important;
    color: var(--remind-white) !important; margin-bottom: 24px !important;
    letter-spacing: -0.01em !important;
}

#tg-remind-wrapper .tg-remind-hero__desc {
    font-size: 19px !important; color: rgba(255, 255, 255, 0.9) !important;
    max-width: 720px !important;
}

#tg-remind-wrapper .tg-remind-hero__desc strong {
    color: #fff !important; font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5) !important;
}

/* ============================================
   메인 콘텐츠
============================================ */
#tg-remind-wrapper .tg-remind-main {
    padding: 50px 24px !important;
    display: flex !important; flex-direction: column !important; gap: 50px !important;
}

#tg-remind-wrapper .tg-remind-intro {
    background: var(--remind-white) !important;
    padding: 36px !important; border-radius: var(--remind-radius) !important;
    border-left: 8px solid var(--remind-primary) !important;
    box-shadow: 0 15px 45px rgba(245, 158, 11, 0.05) !important;
}

#tg-remind-wrapper .tg-remind-section {
    background: var(--remind-white) !important;
    padding: 45px 35px !important; border-radius: var(--remind-radius) !important;
    border: 1px solid var(--remind-slate-100) !important;
}

#tg-remind-wrapper .tg-remind-section--dark {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
    border-color: #3730a3 !important;
}

/* 다크 섹션 가독성 */
#tg-remind-wrapper .tg-remind-section--dark p { color: #cbd5e1 !important; }
#tg-remind-wrapper .tg-remind-section--dark strong { color: var(--remind-primary) !important; }

#tg-remind-wrapper .tg-remind-section__head {
    display: flex !important; align-items: center !important; gap: 18px !important;
    margin-bottom: 35px !important;
}

#tg-remind-wrapper .tg-remind-section__icon {
    width: 52px !important; height: 52px !important;
    background: #fffbeb !important; color: var(--remind-primary) !important;
    border-radius: 14px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 22px !important; border: 1px solid #fef3c7 !important;
}

#tg-remind-wrapper .tg-remind-section--dark .tg-remind-section__icon {
    background: rgba(255, 255, 255, 0.1) !important; color: var(--remind-primary) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

#tg-remind-wrapper .tg-remind-section__title {
    font-size: 26px !important; font-weight: 850 !important; color: var(--remind-navy) !important;
}

#tg-remind-wrapper .tg-remind-section--dark .tg-remind-section__title {
    color: var(--remind-white) !important;
}

/* ─── 단계별 프로세스 ─── */
#tg-remind-wrapper .tg-remind-process {
    display: flex !important; flex-direction: column !important; gap: 20px !important;
}

#tg-remind-wrapper .tg-remind-step {
    display: flex !important; align-items: flex-start !important; gap: 20px !important;
    padding: 28px !important; background: #fffcf5 !important;
    border: 1px solid #fef3c7 !important; border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

#tg-remind-wrapper .tg-remind-step:hover {
    transform: translateX(10px) !important; border-color: var(--remind-primary) !important;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08) !important;
}

#tg-remind-wrapper .tg-remind-step__num {
    width: 40px !important; height: 40px !important;
    background: var(--remind-primary) !important; color: var(--remind-navy) !important;
    border-radius: 12px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 20px !important; font-weight: 950 !important; flex-shrink: 0 !important;
}

#tg-remind-wrapper .tg-remind-step__content h3 {
    font-size: 20px !important; font-weight: 900 !important; color: var(--remind-navy) !important; margin-bottom: 10px !important;
}

/* ─── 마스터 꿀팁 박스 ─── */
#tg-remind-wrapper .tg-remind-tip {
    background: #fff !important; padding: 30px !important; border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important; position: relative !important; margin-top: 10px !important;
}

#tg-remind-wrapper .tg-remind-tip::before {
    content: "\f0eb" !important; font-family: "Font Awesome 5 Free" !important; font-weight: 900 !important;
    position: absolute !important; right: 30px !important; top: -15px !important;
    font-size: 40px !important; color: var(--remind-primary) !important;
    background: #fff !important; border-radius: 50% !important; border: 1px solid #eee !important;
    width: 60px !important; height: 60px !important; display: flex !important; align-items: center !important; justify-content: center !important;
}

/* ─── PC 최적화 그리드 ─── */
#tg-remind-wrapper .tg-remind-grid {
    display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 24px !important;
}

#tg-remind-wrapper .tg-remind-card {
    padding: 30px !important; background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 22px !important; border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

#tg-remind-wrapper .tg-remind-card:hover {
    background: rgba(255, 255, 255, 0.08) !important; transform: translateY(-5px) !important;
}

#tg-remind-wrapper .tg-remind-card__icon {
    display: block !important;
    margin-bottom: 25px !important;
    color: #f59e0b !important;
    font-size: 42px !important;
    line-height: 1 !important;
    text-align: left !important;
}

#tg-remind-wrapper .tg-remind-card__icon i {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: inherit !important;
    color: inherit !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#tg-remind-wrapper .tg-remind-card h3 {
    font-size: 21px !important; font-weight: 900 !important; color: var(--remind-white) !important; margin-bottom: 12px !important;
}

/* ============================================
   결론 및 요약 (Summary 섹션)
============================================ */
#tg-remind-wrapper .tg-remind-summary {
    background: linear-gradient(135deg, #1e1b4b 0%, #1e3a8a 100%) !important;
    padding: 70px 30px !important; border-radius: 32px !important; text-align: center !important;
}

#tg-remind-wrapper .tg-remind-summary__title {
    font-size: 30px !important; font-weight: 950 !important; color: #fff !important; margin-bottom: 40px !important;
}

/* 요약 비주얼 */
#tg-remind-wrapper .tg-remind-summary__visual {
    display: flex !important; justify-content: center !important; align-items: center !important;
    gap: 20px !important; margin-bottom: 50px !important; flex-wrap: wrap !important;
}

#tg-remind-wrapper .tg-remind-summary__v-item {
    display: flex !important; flex-direction: column !important; align-items: center !important; gap: 14px !important;
}

#tg-remind-wrapper .tg-remind-summary__v-icon {
    width: 76px !important; height: 76px !important;
    background: rgba(255, 255, 255, 0.08) !important; border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 26px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 30px !important; color: #fff !important;
}

#tg-remind-wrapper .tg-remind-summary__v-icon--active {
    background: var(--remind-primary) !important; color: var(--remind-navy) !important;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3) !important; border-color: transparent !important;
}

#tg-remind-wrapper .tg-remind-summary__v-text { font-size: 15px !important; font-weight: 800 !important; color: #fff !important; }

#tg-remind-wrapper .tg-remind-summary__v-arrow {
    height: 76px !important; display: flex !important; align-items: center !important;
    padding-bottom: 28px !important; color: rgba(255,255,255,0.2) !important; font-size: 22px !important;
}

/* 체크리스트 */
#tg-remind-wrapper .tg-remind-summary__checklist {
    text-align: left !important; display: inline-block !important;
    background: #fff !important; padding: 45px !important;
    border-radius: 28px !important; width: 100% !important; max-width: 760px !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2) !important;
}

#tg-remind-wrapper .tg-remind-summary__checklist li {
    position: relative !important; padding-left: 38px !important;
    margin-bottom: 22px !important; font-size: 17px !important; color: var(--remind-slate-800) !important;
}

#tg-remind-wrapper .tg-remind-summary__checklist li:last-child { margin-bottom: 0 !important; }

#tg-remind-wrapper .tg-remind-summary__checklist li::before {
    content: "\f058" !important; font-family: "Font Awesome 5 Free" !important; font-weight: 900 !important;
    position: absolute !important; left: 0 !important; top: 3px !important; color: var(--remind-primary) !important;
    font-size: 24px !important;
}

#tg-remind-wrapper .tg-remind-summary__footer {
    margin-top: 50px !important; font-size: 16px !important; color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7 !important;
}

#tg-remind-wrapper .tg-remind-summary__footer strong {
    color: var(--remind-primary) !important; font-weight: 900 !important;
}

/* 반응형 */
@media (max-width: 768px) {
    #tg-remind-wrapper .tg-remind-hero__title { font-size: 28px !important; }
    #tg-remind-wrapper .tg-remind-summary__visual { gap: 14px !important; }
}

/* 애니메이션 */
.tg-remind-motion {
    opacity: 0 !important; transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.tg-remind-motion.is-visible {
    opacity: 1 !important; transform: translateY(0) !important;
}
