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

/* 폰트 로딩 제거 - 시스템 폰트 사용 수정 테스트*/

body {
    font-family: 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 100%);
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.container {
    width: 100vw;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 헤더 섹션 */
.header-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.title-section {
    margin-bottom: 2rem;
    animation: titleSlideIn 1s ease-out;
}

.main-title {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titlePulse 3s ease-in-out infinite;
}

.blue-text {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
    display: inline-block;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.yellow-text {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    color: #FFF600;
    font-size: 1.8rem;
    font-weight: 900;
    display: inline-block;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(255, 246, 0, 0.6);
    background: linear-gradient(45deg, #FFF600, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: yellowPulse 2s ease-in-out infinite;
}

.white-text {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    color: #FFFFFF;
    font-size: 4rem;
    font-weight: 900;
    display: inline-block;
    letter-spacing: 2px;
    text-shadow: 0 3px 6px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #FFFFFF, #F0F0F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: whiteShine 3s ease-in-out infinite;
}

.subtitle {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    animation: subtitleFade 4s ease-in-out infinite;
    text-align: center;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* 메인 컨텐츠 */
.main-content {
    display: flex;
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.left-section {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-title {
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.service-title-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    animation: serviceTitleFloat 3s ease-in-out infinite;
    overflow: visible;
    padding: 0 2rem;
}

.service-title-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    order: 2;
    z-index: 20;
    white-space: nowrap;
    text-align: center;
}

.service-main-text {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 3.2rem;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffffff, #f8f8f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 2s ease-in-out infinite;
    filter: brightness(1.2);
}

.service-plus {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 2.8rem;
    color: #FFF600;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(255, 246, 0, 0.6);
    animation: plusBounce 1.5s ease-in-out infinite;
}

.service-sub-text {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #22c55e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.decoration {
    position: relative;
    width: 3rem;
    height: 3rem;
    z-index: 10;
}

.decoration.left {
    order: 1;
}

.decoration.right {
    order: 3;
    width: 2.5rem;
    height: 2.5rem;
}

.benefit-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 65%;
}

.benefit-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.benefit-text {
    text-align: center;
    z-index: 5;
}

.benefit-amount {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: benefitPulse 2.5s ease-in-out infinite;
}

.benefit-plus {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: benefitPlusShake 3s ease-in-out infinite;
}

.rainbow-text {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #1E96FC;
    letter-spacing: 2px;
    text-shadow: 0 3px 6px rgba(30, 150, 252, 0.4);
    animation: rainbow 4s linear infinite;
}

.light-effect {
    position: absolute;
    width: 4rem;
    height: 4rem;
    z-index: 10;
}

.light-effect.top {
    left: 20%;
    top: -80%;
}

.light-effect.bottom {
    left: 10%;
    bottom: 20%;
}

.right-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.thumbnail {
    width: 100%;
    max-width: 411px;
    height: auto;
    aspect-ratio: 1.4;
    object-fit: contain;
    animation: shake 3s ease-in-out infinite;
}

/* 통신사 로고 섹션 */
.carrier-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.carrier-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.carrier-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    flex: 3;
    position: relative;
    z-index: 2;
}

.carrier-logo {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: logoFloat 4s ease-in-out infinite;
}

.carrier-logo:nth-child(1) { animation-delay: 0s; }
.carrier-logo:nth-child(2) { animation-delay: 0.5s; }
.carrier-logo:nth-child(3) { animation-delay: 1s; }

.carrier-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* 무료 견적 섹션 */
.estimate-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.estimate-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.estimate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.estimate-content {
    background: rgba(251, 191, 36, 0.9);
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    color: #FFF600;
    position: relative;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: estimatePulse 3s ease-in-out infinite;
    z-index: 2;
}

.estimate-light {
    position: absolute;
    width: 5rem;
    height: 5rem;
    right: 40%;
    top: -30%;
    animation: lightSpin 4s linear infinite;
    z-index: 3;
}

.text-animate {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    animation: whiteGlow 2.5s ease-in-out infinite alternate;
    background: linear-gradient(45deg, #ffffff, #f8f9fa, #e9ecef, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: whiteGlow 2.5s ease-in-out infinite alternate, gradientShift 3s ease infinite;
}

/* 구분선 */
.divider {
    border: none;
    height: 4px;
    background-color: #d6d3d1;
    width: 100%;
}

/* 실시간 상담 리스트 섹션 */
.consultation-list-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.consultation-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.consultation-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.live-indicator {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.consultation-subtitle {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.consultation-list-container {
    max-height: 240px;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.consultation-header-row {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-date {
    min-width: 80px;
    text-align: left;
}

.header-carrier {
    min-width: 60px;
    text-align: center;
}

.header-name {
    min-width: 100px;
    text-align: left;
    margin-left: 1rem;
}

.header-type {
    min-width: 120px;
    text-align: center;
    margin-left: auto;
}

.consultation-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.5s ease-in-out;
}

.consultation-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    animation: slideInFromRight 0.5s ease-out;
}

.consultation-item:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateX(3px);
}

.consultation-item:last-child {
    border-bottom: none;
}

.consultation-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    min-width: 80px;
    font-family: 'Courier New', monospace;
    text-align: left;
}

.consultation-carrier {
    font-size: 1rem;
    font-weight: 600;
    color: #1E96FC;
    min-width: 60px;
    text-align: center;
    background: rgba(30, 150, 252, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.consultation-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 100px;
    margin-left: 1rem;
    text-align: left;
}

.consultation-type {
    font-size: 1rem;
    font-weight: 500;
    color: #ea580c;
    background: rgba(234, 88, 12, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-left: auto;
    min-width: 120px;
    text-align: center;
}

/* 애니메이션 */
@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 폼 섹션 */
.form-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.form-group label {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    width: 120px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.form-group input {
    flex: 1;
    height: 55px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0 1.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    outline: none;
    border: 2px solid #4ecdc4;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2), 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #999;
    font-weight: 400;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}
    border: 3px solid #1E96FC;
    box-shadow: 0 0 10px rgba(30, 150, 252, 0.3);
    transform: scale(1.02);
}

.privacy-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    accent-color: #007bff;
}

.checkbox-container a {
    color: #0369a1;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* 통신사 선택 섹션 */
.carrier-selection {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carrier-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.carrier-option {
    cursor: pointer;
    position: relative;
}

.carrier-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.carrier-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carrier-option input[type="radio"]:checked + .carrier-card {
    border-color: #1E96FC;
    background: linear-gradient(135deg, #1E96FC 0%, #007bff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 150, 252, 0.3);
}

.carrier-option input[type="radio"]:checked + .carrier-card .carrier-name {
    color: white;
    font-weight: 700;
}

.carrier-card:hover {
    border-color: #1E96FC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 150, 252, 0.2);
}

.carrier-logo-small {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.carrier-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* 상품 선택 섹션 */
.product-selection {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-option {
    cursor: pointer;
    position: relative;
}

.product-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 60px;
}

.product-option input[type="radio"]:checked + .product-card {
    border-color: #1E96FC;
    background: linear-gradient(135deg, #1E96FC 0%, #007bff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 150, 252, 0.3);
}

.product-option input[type="radio"]:checked + .product-card .product-name {
    color: white;
    font-weight: 700;
}

.product-card:hover {
    border-color: #1E96FC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 150, 252, 0.2);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.apply-button {
    background: linear-gradient(135deg, #1E96FC 0%, #007bff 50%, #0056b3 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 25px;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 150, 252, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 150, 252, 0.6);
    background: linear-gradient(135deg, #007bff 0%, #1E96FC 50%, #0056b3 100%);
}

.apply-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* 상담 전화 섹션 */
.contact-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-number {
    font-size: 1.8rem;
    color: #002748;
    text-decoration: none;
    font-weight: 900;
    animation: contactPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-number:hover {
    color: #1E96FC;
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(30, 150, 252, 0.6);
}

/* 테라넷 브랜드 섹션 */
.brand-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.brand-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-text {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-info {
    flex: 1;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.brand-description {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* 프리미엄 섹션 */
.premium-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.premium-background {
    position: relative;
    z-index: 2;
}

.premium-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.premium-content {
    position: relative;
    z-index: 3;
}

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.premium-subtitle {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 500;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    animation: cardIconFloat 4s ease-in-out infinite;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
}

.premium-cta {
    text-align: center;
}

.premium-button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.premium-button:hover::before {
    left: 100%;
}

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.premium-button:hover .button-arrow {
    transform: translateX(5px);
}

/* 애니메이션 */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes cardIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .form-group {
        width: 95%;
        max-width: 700px;
    }
    
    .form-group input {
        height: 48px;
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
        font-weight: 900;
    }
    
    .blue-text, .white-text {
        font-size: 2.2rem;
        font-weight: 900;
    }
    
    .yellow-text {
        font-size: 1.1rem;
        font-weight: 900;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .left-section {
        padding: 1rem;
    }
    
    .service-main-text, .service-sub-text {
        font-size: 2.5rem;
    }
    
    .service-plus {
        font-size: 2.2rem;
    }
    
    .benefit-section {
        height: 100%;
    }
    
    .benefit-amount {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-plus {
        font-size: 2.2rem;
    }
    
    .rainbow-text {
        font-size: 2.5rem;
    }
    
    .light-effect {
        width: 3rem;
        height: 3rem;
    }
    
    .light-effect.top {
        top: -10%;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 98%;
        max-width: none;
    }
    
    .form-group label {
        width: auto;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #333;
    }
    
    .form-group input {
        width: 100%;
        height: 60px;
        font-size: 1.5rem;
        padding: 0 1.5rem;
        border-radius: 18px;
        border: 3px solid #000;
        font-weight: 600;
        margin-top: 0.5rem;
    }
    
    .carrier-logo {
        width: 3rem;
        height: 3rem;
    }
    
    .carrier-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .privacy-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-top: 2rem;
    }
    
    .checkbox-container {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .checkbox-container input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 0.8rem;
    }
    
    .submit-btn {
        width: 100%;
        height: 65px;
        font-size: 1.6rem;
        font-weight: 700;
        margin-top: 2rem;
        border-radius: 18px;
    }
    
    .product-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .carrier-card {
        padding: 1rem;
    }
    
    .product-card {
        padding: 1rem 1.5rem;
    }
    
    .carrier-logo-small {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .carrier-name, .product-name {
        font-size: 1rem;
    }
    
    .estimate-content {
        font-size: 1.2rem;
    }
    
    .consultation-list-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .consultation-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .consultation-list-container {
        max-height: 200px;
    }
    
    .consultation-header-row {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .header-date {
        min-width: 70px;
    }
    
    .header-carrier {
        min-width: 50px;
    }
    
    .header-name {
        min-width: 80px;
        margin-left: 0.5rem;
    }
    
    .header-type {
        min-width: 100px;
    }
    
    .consultation-item {
        padding: 0.6rem 1rem;
    }
    
    .consultation-date {
        min-width: 70px;
        font-size: 0.8rem;
    }
    
    .consultation-carrier {
        min-width: 50px;
        font-size: 0.9rem;
    }
    
    .consultation-name {
        min-width: 80px;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    
    .consultation-type {
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .contact-number {
        font-size: 1.2rem;
    }
    
    /* 브랜드 섹션 모바일 */
    .brand-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .brand-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-text {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-description {
        font-size: 1rem;
    }
    
    .brand-features {
        align-items: center;
    }
    
    /* 프리미엄 섹션 모바일 */
    .premium-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-subtitle {
        font-size: 1rem;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
    
    .icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .premium-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100vw;
    }
    
    .header-section {
        padding: 2rem 0;
    }
    
    .main-title {
        font-size: 1.8rem;
        font-weight: 900;
    }
    
    .blue-text, .white-text {
        font-size: 1.8rem;
        font-weight: 900;
    }
    
    .yellow-text {
        font-size: 0.9rem;
        font-weight: 900;
    }
    
    .subtitle {
        font-size: 0.8rem;
        font-weight: 700;
    }
    
    .form-section {
        padding: 2rem 1rem;
        gap: 2.5rem;
        width: 100%;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
        width: 100%;
        max-width: none;
        padding: 2rem 1.8rem;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 24px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.9);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(20px);
    }
    
    .form-group::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
        background-size: 400% 100%;
        animation: premiumGradient 4s ease infinite;
    }
    
    .form-group::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .form-group label {
        width: auto;
        text-align: left;
        font-size: 1.2rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 2;
    }
    
    .form-group label::before {
        width: 14px;
        height: 14px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        animation: premiumPulse 2.5s infinite;
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
        position: relative;
    }
    
    .form-group label::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 2px;
        opacity: 0.6;
    }
    
    .form-group input {
        height: 65px;
        font-size: 1.15rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(102, 126, 234, 0.1);
        border-radius: 18px;
        padding: 0 2rem;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(15px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        font-weight: 500;
        color: #2d3748;
        position: relative;
        z-index: 2;
    }
    
    .form-group input:focus {
        border: 2px solid #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 10px 35px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 1);
    }
    
    .form-group input:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-color: rgba(102, 126, 234, 0.2);
    }
    
    .form-group input::placeholder {
        color: #a0aec0;
        font-weight: 400;
        font-size: 1.1rem;
    }
    
    @keyframes premiumGradient {
        0%, 100% {
            background-position: 0% 50%;
        }
        25% {
            background-position: 100% 50%;
        }
        50% {
            background-position: 200% 50%;
        }
        75% {
            background-position: 300% 50%;
        }
    }
    
    @keyframes premiumPulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
        }
        50% {
            opacity: 0.8;
            transform: scale(1.2);
            box-shadow: 0 0 25px rgba(102, 126, 234, 0.6);
        }
    }
    
    @keyframes gradientShift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }
    
    .decoration {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .decoration.right {
        width: 2rem;
        height: 2rem;
    }
    
    .service-main-text, .service-sub-text {
        font-size: 2rem;
    }
    
    .service-plus {
        font-size: 1.8rem;
    }
    
    .benefit-amount {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-plus {
        font-size: 1.8rem;
    }
    
    .rainbow-text {
        font-size: 2rem;
    }
    
    .light-effect {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* 애니메이션 */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes serviceTitleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes benefitGlow {
    0% {
        text-shadow: 
            -3px -3px 0 #1a1a1a, 
            3px -3px 0 #1a1a1a, 
            -3px 3px 0 #1a1a1a, 
            3px 3px 0 #1a1a1a, 
            0 0 30px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            -3px -3px 0 #1a1a1a, 
            3px -3px 0 #1a1a1a, 
            -3px 3px 0 #1a1a1a, 
            3px 3px 0 #1a1a1a, 
            0 0 50px rgba(255, 255, 255, 0.5);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes estimatePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

@keyframes lightSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes whiteGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(255, 255, 255, 0.4),
            0 0 60px rgba(255, 255, 255, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.3);
        filter: brightness(1);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.8),
            0 0 90px rgba(255, 255, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3);
        filter: brightness(1.2);
    }
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* 통신사별 혜택 금액 섹션 */
.carrier-benefit-section {
    background: linear-gradient(135deg, rgb(252, 211, 77) 0%, rgb(251, 191, 36) 30%, rgb(217, 119, 6) 70%, rgb(180, 83, 9) 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.carrier-benefit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.carrier-benefit-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.benefit-title {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.carrier-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.carrier-benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carrier-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.carrier-benefit-item:hover::before {
    left: 100%;
}

.carrier-benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carrier-logo-benefit {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

.carrier-benefit-item:nth-child(1) .carrier-logo-benefit { animation-delay: 0s; }
.carrier-benefit-item:nth-child(2) .carrier-logo-benefit { animation-delay: 0.5s; }
.carrier-benefit-item:nth-child(3) .carrier-logo-benefit { animation-delay: 1s; }

.benefit-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.amount-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.amount-value {
    font-size: 3rem;
    font-weight: 900;
    color: #ea580c;
    text-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
    animation: amountGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.amount-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.total-benefit {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.total-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 150, 252, 0.2), transparent);
    transition: left 0.8s;
    animation: totalShimmer 3s ease-in-out infinite;
}

.total-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.total-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.total-value {
    font-size: 4rem;
    font-weight: 900;
    color: #ea580c;
    text-shadow: 0 0 30px rgba(234, 88, 12, 0.8);
    animation: totalRoulette 0.1s linear infinite, totalGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.total-unit {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* 애니메이션 */
@keyframes amountGlow {
    0% {
        text-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(234, 88, 12, 1), 0 0 40px rgba(234, 88, 12, 0.8);
        transform: scale(1.05);
    }
}

@keyframes totalRoulette {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes totalGlow {
    0% {
        text-shadow: 0 0 30px rgba(234, 88, 12, 0.8);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 40px rgba(234, 88, 12, 1), 0 0 60px rgba(234, 88, 12, 0.6);
        transform: scale(1.1);
    }
}

@keyframes totalShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes rainbow {
    0% { color: #ff0000; }
    17% { color: #ff00ff; }
    33% { color: #0000ff; }
    50% { color: #00ffff; }
    67% { color: #00ff00; }
    83% { color: #ffff00; }
    100% { color: #ff0000; }
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes purpleGlow {
    0% { 
        text-shadow: 
            0 0 5px #8b5cf6,
            0 0 10px #8b5cf6,
            0 0 15px #8b5cf6,
            0 0 20px #8b5cf6,
            0 0 25px #8b5cf6,
            0 0 30px #8b5cf6;
        filter: drop-shadow(0 0 15px #8b5cf6);
    }
    100% { 
        text-shadow: 
            0 0 3px #8b5cf6,
            0 0 6px #8b5cf6,
            0 0 9px #8b5cf6,
            0 0 12px #8b5cf6,
            0 0 15px #8b5cf6,
            0 0 18px #8b5cf6;
        filter: drop-shadow(0 0 8px #8b5cf6);
    }
}

@keyframes yellowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes whiteShine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes plusBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes tvGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px rgba(30, 150, 252, 0.5)); }
}

@keyframes benefitPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes benefitPlusShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes subtitleFade {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-2px); }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    10% {
        transform: translateX(-5px) translateY(2px) rotate(-1deg);
    }
    20% {
        transform: translateX(5px) translateY(-2px) rotate(1deg);
    }
    30% {
        transform: translateX(-3px) translateY(3px) rotate(-0.5deg);
    }
    40% {
        transform: translateX(3px) translateY(-3px) rotate(0.5deg);
    }
    50% {
        transform: translateX(-2px) translateY(1px) rotate(-0.3deg);
    }
    60% {
        transform: translateX(2px) translateY(-1px) rotate(0.3deg);
    }
    70% {
        transform: translateX(-1px) translateY(2px) rotate(-0.2deg);
    }
    80% {
        transform: translateX(1px) translateY(-2px) rotate(0.2deg);
    }
    90% {
        transform: translateX(-1px) translateY(1px) rotate(-0.1deg);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .carrier-benefit-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .benefit-title {
        font-size: 2rem;
        font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
        font-weight: 900;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }
    
    .carrier-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carrier-benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .carrier-logo-benefit {
        width: 3rem;
        height: 3rem;
    }
    
    .amount-value {
        font-size: 2.5rem;
    }
    
    .amount-unit {
        font-size: 1.2rem;
    }
    
    .total-benefit {
        padding: 1.5rem;
    }
    
    .total-label {
        font-size: 1.2rem;
    }
    
    .total-value {
        font-size: 3rem;
    }
    
    .total-unit {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-title {
        font-size: 1.5rem;
        font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
        font-weight: 900;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }
    
    .carrier-benefit-item {
        padding: 1rem;
    }
    
    .carrier-logo-benefit {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .amount-unit {
        font-size: 1rem;
    }
    
    .total-value {
        font-size: 2.5rem;
    }
    
    .total-unit {
        font-size: 1.2rem;
    }
}