@charset "utf-8";

/* ============================================
   텔레그램 QR 코드 로그인 가이드
   접두사: tg-qrl- (기존 사이트 오염 방지)
   CSS 변수 접두사: --tgql-
   컬러 톤: 인디고 블루(Indigo) + 라임 그린(Lime)
============================================ */

:root {
    --tgql-indigo: #6366f1;
    --tgql-indigo-dark: #4f46e5;
    --tgql-indigo-deep: #3730a3;
    --tgql-indigo-light: #eef2ff;
    --tgql-indigo-border: #a5b4fc;
    --tgql-lime: #84cc16;
    --tgql-lime-dark: #65a30d;
    --tgql-lime-light: #f7fee7;
    --tgql-lime-border: #bef264;
    --tgql-slate-900: #0f172a;
    --tgql-slate-700: #334155;
    --tgql-slate-500: #64748b;
    --tgql-slate-300: #cbd5e1;
    --tgql-slate-200: #e2e8f0;
    --tgql-slate-100: #f1f5f9;
    --tgql-bg: #f8f9ff;
    --tgql-white: #ffffff;
    --tgql-green: #22c55e;
    --tgql-radius: 14px;
}

/* ─── 래퍼 ─── */
.tg-qrl-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--tgql-slate-500);
    background-color: var(--tgql-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
}

.tg-qrl-wrapper *,
.tg-qrl-wrapper *::before,
.tg-qrl-wrapper *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.tg-qrl-wrapper strong {
    font-weight: 700;
    color: var(--tgql-slate-900);
}

.tg-qrl-wrapper mark {
    background: linear-gradient(120deg, var(--tgql-indigo-light) 0%, #a5b4fc80 100%);
    color: #3730a3;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── 히어로 ─── */
.tg-qrl-hero {
    background: linear-gradient(145deg, #312e81 0%, #3730a3 25%, #4f46e5 55%, #818cf8 100%);
    color: var(--tgql-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-qrl-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(99, 102, 241, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.tg-qrl-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(165, 180, 252, 0.04);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

.tg-qrl-hero__floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.tg-qrl-hero__float-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.18;
    animation: tg-qrl-float 6s ease-in-out infinite;
}

.tg-qrl-hero__float-icon i {
    color: rgba(255, 255, 255, 0.9);
}

.tg-qrl-hero__float-icon--1 {
    top: 14%;
    left: 8%;
    animation-delay: 0s;
}

.tg-qrl-hero__float-icon--2 {
    top: 20%;
    right: 12%;
    animation-delay: 1s;
    font-size: 24px;
}

.tg-qrl-hero__float-icon--3 {
    bottom: 22%;
    left: 15%;
    animation-delay: 2s;
}

.tg-qrl-hero__float-icon--4 {
    bottom: 16%;
    right: 8%;
    animation-delay: 3s;
    font-size: 22px;
}

.tg-qrl-hero__float-icon--5 {
    top: 55%;
    left: 4%;
    animation-delay: 4s;
    font-size: 20px;
}

.tg-qrl-hero__float-icon--6 {
    top: 10%;
    right: 30%;
    animation-delay: 5s;
    font-size: 18px;
}

@keyframes tg-qrl-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}

.tg-qrl-hero__inner {
    position: relative;
    z-index: 1;
}

.tg-qrl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(132, 204, 22, 0.2);
    color: var(--tgql-lime-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(190, 242, 100, 0.25);
    backdrop-filter: blur(4px);
}

.tg-qrl-hero__badge i {
    font-size: 16px;
}

.tg-qrl-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--tgql-white);
}

.tg-qrl-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
}

/* ─── 메인 ─── */
.tg-qrl-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── 도입부 ─── */
.tg-qrl-intro {
    background-color: var(--tgql-white);
    padding: 28px 24px;
    border-radius: var(--tgql-radius);
    border-left: 4px solid var(--tgql-indigo);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tg-qrl-intro p {
    font-size: 16px;
    margin-bottom: 14px;
}

.tg-qrl-intro p:last-child {
    margin-bottom: 0;
}

/* ─── 섹션 공통 ─── */
.tg-qrl-section {
    background-color: var(--tgql-white);
    padding: 34px 24px;
    border-radius: var(--tgql-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--tgql-slate-200);
}

.tg-qrl-section--accent {
    background: linear-gradient(135deg, var(--tgql-indigo-light) 0%, #a5b4fc25 100%);
    border-color: var(--tgql-indigo-border);
}

.tg-qrl-section--demo {
    background: linear-gradient(135deg, var(--tgql-lime-light) 0%, #bef26430 50%, #ecfccb30 100%);
    border-color: var(--tgql-lime-border);
}

.tg-qrl-section--dark {
    background: linear-gradient(135deg, var(--tgql-slate-900) 0%, #1e293b 100%);
    border-color: var(--tgql-slate-700);
    color: var(--tgql-slate-300);
}

.tg-qrl-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.tg-qrl-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--tgql-indigo);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.tg-qrl-section__num--accent {
    opacity: 0.25;
}

.tg-qrl-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tgql-lime) 0%, #a3e635 100%);
    color: var(--tgql-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tg-qrl-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--tgql-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

.tg-qrl-section__title--light {
    color: var(--tgql-white);
}

.tg-qrl-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
}

/* ─── 이점 카드 ─── */
.tg-qrl-benefit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tg-qrl-benefit-card {
    padding: 22px;
    border-radius: 12px;
    background-color: var(--tgql-white);
    border: 1px solid var(--tgql-indigo-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tg-qrl-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.1);
}

.tg-qrl-benefit-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--tgql-indigo) 0%, var(--tgql-indigo-dark) 100%);
    color: var(--tgql-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}

.tg-qrl-benefit-card__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgql-slate-900);
    margin-bottom: 4px;
}

.tg-qrl-benefit-card__desc {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 스텝 ─── */
.tg-qrl-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-qrl-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--tgql-white);
    border: 1px solid var(--tgql-slate-200);
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tg-qrl-step:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.1);
}

.tg-qrl-step--highlight {
    border-color: var(--tgql-lime-border);
    background-color: var(--tgql-lime-light);
}

.tg-qrl-step__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--tgql-indigo) 0%, var(--tgql-indigo-dark) 100%);
    color: var(--tgql-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tg-qrl-step__icon--key {
    background: linear-gradient(135deg, var(--tgql-lime) 0%, var(--tgql-lime-dark) 100%);
    width: 50px;
    height: 50px;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.3);
}

.tg-qrl-step__body {
    flex: 1;
}

.tg-qrl-step__num {
    font-size: 11px;
    font-weight: 800;
    color: var(--tgql-indigo);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tg-qrl-step__num--key {
    color: var(--tgql-lime-dark);
    font-size: 12px;
}

.tg-qrl-step__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgql-slate-900);
    margin-bottom: 4px;
}

.tg-qrl-step__text {
    font-size: 14px;
    line-height: 1.6;
}

/* ─── QR 스캔 데모 ─── */
.tg-qrl-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* PC 화면 */
.tg-qrl-demo__pc {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--tgql-indigo-border);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.1);
}

.tg-qrl-demo__pc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background-color: var(--tgql-slate-100);
    border-bottom: 1px solid var(--tgql-slate-200);
}

.tg-qrl-demo__pc-dots {
    display: flex;
    gap: 5px;
}

.tg-qrl-demo__pc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tg-qrl-demo__pc-dots span:nth-child(1) {
    background-color: #ef4444;
}

.tg-qrl-demo__pc-dots span:nth-child(2) {
    background-color: #eab308;
}

.tg-qrl-demo__pc-dots span:nth-child(3) {
    background-color: #22c55e;
}

.tg-qrl-demo__pc-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--tgql-slate-500);
}

.tg-qrl-demo__pc-body {
    position: relative;
    padding: 40px 20px;
    min-height: 240px;
    background: linear-gradient(180deg, var(--tgql-indigo-light) 0%, var(--tgql-white) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* QR 코드 패턴 (CSS로 구현) */
.tg-qrl-demo__qr {
    width: 140px;
    height: 140px;
    background-color: var(--tgql-white);
    border: 3px solid var(--tgql-slate-900);
    border-radius: 8px;
    padding: 10px;
    position: relative;
    transition: all 0.4s ease;
}

.tg-qrl-demo__qr-pattern {
    width: 100%;
    height: 100%;
    position: relative;
}

.tg-qrl-demo__qr-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 5px solid var(--tgql-slate-900);
    border-radius: 3px;
}

.tg-qrl-demo__qr-corner::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--tgql-slate-900);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tg-qrl-demo__qr-corner--tl {
    top: 0;
    left: 0;
}

.tg-qrl-demo__qr-corner--tr {
    top: 0;
    right: 0;
}

.tg-qrl-demo__qr-corner--bl {
    bottom: 0;
    left: 0;
}

.tg-qrl-demo__qr-dots {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 24px;
    height: 24px;
    background: repeating-conic-gradient(var(--tgql-slate-900) 0% 25%, transparent 0% 50%) 0 0 / 8px 8px;
}

/* 스캔 라인 */
.tg-qrl-demo__scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--tgql-lime) 40%, var(--tgql-lime) 60%, transparent 100%);
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tg-qrl-demo__scan-line--active {
    opacity: 1;
    animation: tg-qrl-scan 1.5s linear infinite;
}

@keyframes tg-qrl-scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.tg-qrl-demo__qr-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--tgql-slate-700);
    transition: opacity 0.3s ease;
}

/* 성공 오버레이 */
.tg-qrl-demo__success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(22, 163, 74, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.tg-qrl-demo__success--visible {
    opacity: 1;
    pointer-events: auto;
}

.tg-qrl-demo__success-icon {
    font-size: 48px;
    color: var(--tgql-white);
    animation: tg-qrl-check 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes tg-qrl-check {
    from {
        transform: scale(0) rotate(-90deg);
    }

    to {
        transform: scale(1) rotate(0deg);
    }
}

.tg-qrl-demo__success-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--tgql-white);
}

.tg-qrl-demo__success-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* 컨트롤 */
.tg-qrl-demo__controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--tgql-white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--tgql-lime-border);
}

/* 모바일 미니 */
.tg-qrl-demo__phone {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    border: 2px solid var(--tgql-slate-300);
    border-radius: 14px;
    padding: 8px;
    background-color: var(--tgql-slate-100);
    transition: border-color 0.3s ease;
}

.tg-qrl-demo__phone-screen {
    padding: 16px 10px;
    border-radius: 10px;
    background-color: var(--tgql-white);
    text-align: center;
}

.tg-qrl-demo__phone-status {
    font-size: 12px;
    font-weight: 700;
    color: var(--tgql-slate-500);
    transition: color 0.3s ease;
}

.tg-qrl-demo__phone-status i {
    margin-right: 4px;
}

/* 진행 단계 */
.tg-qrl-demo__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.tg-qrl-demo__progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tg-qrl-demo__progress-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--tgql-slate-200);
    border: 2px solid var(--tgql-slate-300);
    transition: all 0.3s ease;
}

.tg-qrl-demo__progress-step--active .tg-qrl-demo__progress-dot {
    background-color: var(--tgql-indigo);
    border-color: var(--tgql-indigo);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.tg-qrl-demo__progress-step--done .tg-qrl-demo__progress-dot {
    background-color: var(--tgql-green);
    border-color: var(--tgql-green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.tg-qrl-demo__progress-step span {
    font-size: 9px;
    font-weight: 600;
    color: var(--tgql-slate-500);
    white-space: nowrap;
}

.tg-qrl-demo__progress-line {
    width: 30px;
    height: 2px;
    margin: 0 4px;
    background-color: var(--tgql-slate-200);
    margin-bottom: 16px;
    transition: background-color 0.3s ease;
}

.tg-qrl-demo__progress-line--done {
    background-color: var(--tgql-green);
}

/* 버튼 */
.tg-qrl-demo__btn-group {
    display: flex;
    gap: 10px;
}

.tg-qrl-demo__scan-btn {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, var(--tgql-indigo) 0%, var(--tgql-indigo-dark) 100%);
    color: var(--tgql-white);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tg-qrl-demo__scan-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.tg-qrl-demo__scan-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tg-qrl-demo__reset-btn {
    padding: 12px 18px;
    background-color: var(--tgql-slate-100);
    color: var(--tgql-slate-500);
    border: 1px solid var(--tgql-slate-200);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.tg-qrl-demo__reset-btn:hover {
    background-color: var(--tgql-slate-200);
}

/* ─── 보안 팁 ─── */
.tg-qrl-security-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-qrl-security-tip {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(165, 180, 252, 0.12);
    padding: 22px;
    border-radius: 10px;
    position: relative;
}

.tg-qrl-security-tip__number {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tgql-lime) 0%, #a3e635 100%);
    color: var(--tgql-white);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tg-qrl-security-tip__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tgql-white);
    margin-bottom: 8px;
    padding-top: 6px;
}

.tg-qrl-security-tip__title i {
    color: var(--tgql-indigo-border);
    margin-right: 4px;
}

.tg-qrl-security-tip__text {
    font-size: 14px;
    color: var(--tgql-slate-300);
}

.tg-qrl-security-tip__text strong {
    color: var(--tgql-white);
}

/* ─── 결론 ─── */
.tg-qrl-summary {
    background: linear-gradient(135deg, #312e81 0%, #3730a3 50%, var(--tgql-indigo-dark) 100%);
    color: var(--tgql-white);
    padding: 44px 28px;
    border-radius: var(--tgql-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(55, 48, 163, 0.4);
}

.tg-qrl-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--tgql-white);
    margin-bottom: 20px;
}

.tg-qrl-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--tgql-indigo-border);
}

.tg-qrl-summary strong {
    color: var(--tgql-white);
}

.tg-qrl-summary__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
}

.tg-qrl-summary__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(165, 180, 252, 0.12);
    border-radius: 10px;
}

.tg-qrl-summary__highlight-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--tgql-lime) 0%, #a3e635 100%);
    color: var(--tgql-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-qrl-summary__highlight strong {
    font-size: 13px;
    color: var(--tgql-white);
}

.tg-qrl-summary__highlight span {
    font-size: 11px;
    color: var(--tgql-indigo-border);
    text-align: center;
}

.tg-qrl-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

.tg-qrl-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #a5b4fc;
}

.tg-qrl-summary__checklist li:last-child {
    margin-bottom: 0;
}

.tg-qrl-summary__checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--tgql-lime-border);
}

.tg-qrl-summary__checklist strong {
    color: var(--tgql-white);
}

.tg-qrl-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--tgql-indigo-border);
    line-height: 1.8;
}

.tg-qrl-summary__footer strong {
    color: var(--tgql-white);
}

/* ============================================
   반응형
============================================ */
@media (min-width: 768px) {
    .tg-qrl-hero {
        padding: 80px 40px;
    }

    .tg-qrl-hero__title {
        font-size: 38px;
    }

    .tg-qrl-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    .tg-qrl-intro {
        padding: 36px 32px;
    }

    .tg-qrl-section {
        padding: 40px 36px;
    }

    .tg-qrl-section__title {
        font-size: 24px;
    }

    .tg-qrl-section__num {
        font-size: 44px;
    }

    .tg-qrl-benefit-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-qrl-security-tips {
        grid-template-columns: repeat(2, 1fr);
    }

    .tg-qrl-demo__pc-body {
        min-height: 280px;
    }

    .tg-qrl-summary__highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-qrl-summary {
        padding: 56px 44px;
    }

    .tg-qrl-demo__progress-line {
        width: 50px;
    }
}

@media (min-width: 1024px) {
    .tg-qrl-hero__title {
        font-size: 44px;
    }

    .tg-qrl-main {
        gap: 46px;
    }

    .tg-qrl-demo {
        flex-direction: row;
    }

    .tg-qrl-demo__pc {
        flex: 1;
    }

    .tg-qrl-demo__controls {
        flex: 0 0 280px;
    }
}

/* ============================================
   스크롤 등장 애니메이션
============================================ */
.tg-qrl-motion {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tg-qrl-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}