/* 전역 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-mint: #40E0D0;
    --secondary-mint: #7FFFD4;
    --yellow: #FFEB3B;
    --yellow-dark: #FFD600;
    --dark-green: #004D40;
    --light-green: #00695C;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 스타일 */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--dark-green), var(--primary-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s ease;
}

.logo a:hover h1 {
    transform: scale(1.05);
}

.logo-yellow {
    color: var(--yellow-dark);
    -webkit-text-fill-color: var(--yellow-dark);
}

.logo-24 {
    font-size: 1.4rem;
    background: var(--yellow);
    -webkit-text-fill-color: var(--dark-green);
    padding: 0 5px;
    border-radius: 5px;
    margin-left: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-mint);
}

nav a:hover::after {
    width: 100%;
}

/* 히어로 섹션 */
.hero {
    background: url('https://i.ibb.co/B2BfpXD7/Image-fx-4-2.jpg') center/cover no-repeat;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* 플로팅 머니 애니메이션 */
.floating-money {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.3;
}

.floating-money:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-money:nth-child(2) {
    top: 50%;
    right: 15%;
}

.floating-money:nth-child(3) {
    bottom: 30%;
    left: 80%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* 물결 구분선 */
.wave-divider {
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23fff' d='M0,64L48,58.7C96,53,192,43,288,48C384,53,480,75,576,80C672,85,768,75,864,58.7C960,43,1056,21,1152,21.3C1248,21,1344,43,1392,53.3L1440,64L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    margin-top: -2px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subtitle {
    color: var(--light-green);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.description {
    color: var(--light-green);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* 버튼 그룹 스타일 */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.button-group .cta-button,
.button-group .quick-apply-button {
    width: 280px;
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.yellow {
    background: linear-gradient(45deg, var(--yellow), var(--yellow-dark));
    color: #333;
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.cta-button.yellow:hover {
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.5);
}

/* 빠른상담신청 버튼 */
.quick-apply-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
}

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

.quick-apply-button .button-icon {
    font-size: 1.3rem;
    margin-left: 0.5rem;
    animation: rocket 1.5s ease-in-out infinite;
}

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

.quick-apply-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.quick-apply-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.7);
    background: linear-gradient(45deg, #FFA500, #FFD700);
    animation: none;
}

.quick-apply-button:hover .button-icon {
    animation: rocket-boost 0.5s ease-in-out;
}

@keyframes rocket-boost {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.quick-apply-button:hover::before {
    width: 300px;
    height: 300px;
}

/* 이미지 플레이스홀더 */
.placeholder-image {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    border: 3px solid var(--primary-mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-green);
    font-weight: bold;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

.placeholder-image.small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 0.8rem;
    border: 3px solid var(--primary-mint);
}

/* 프로필 이니셜 */
.profile-initial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
    flex-shrink: 0;
}

/* 통계 섹션 */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #E0E0E0;
}

.stat-item:last-child::after {
    display: none;
}

.stat-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-mint);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--dark-green), var(--primary-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* 특징 섹션 */
.features {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(127,255,212,0.1), transparent);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow), var(--primary-mint));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-item:hover::before {
    transform: translateX(0);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.feature-item h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

/* 신청 폼 섹션 */
.apply-form {
    background: linear-gradient(135deg, var(--secondary-mint) 0%, var(--primary-mint) 100%);
    padding: 5rem 0;
    position: relative;
}

.apply-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.form-wrapper h2 {
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 900;
}

.form-wrapper p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    background: #F5F5F5;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary-mint);
    background: white;
    box-shadow: 0 0 0 4px rgba(64,224,208,0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #1565C0, #0D47A1);
    color: white;
    border: none;
    padding: 1.3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21,101,192,0.4);
}

.submit-button:hover::after {
    width: 400px;
    height: 400px;
}

/* 리뷰 섹션 */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,235,59,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.review-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-item {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    display: none;
    text-align: left;
    position: relative;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.review-item::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 5rem;
    color: var(--yellow);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-item.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
    font-style: normal;
}

.name {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.loan-type {
    font-size: 0.95rem;
    color: var(--primary-mint);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--yellow);
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-badge {
    background: var(--yellow);
    color: var(--dark-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-mint);
    transform: scale(1.3);
}

/* 위치 및 지도 섹션 */
.location-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.map-container {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    min-height: 450px;
}

.map-container iframe {
    height: 100% !important;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127,255,212,0.2);
    border-radius: 10px;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.info-text {
    font-size: 1.1rem;
    color: var(--dark-green);
    font-weight: 600;
}

.map-button {
    display: inline-block;
    background: var(--primary-mint);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(64,224,208,0.3);
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64,224,208,0.4);
}

/* 급한돈 섹션 */
.emergency-loan {
    background: url('https://i.ibb.co/vMnbRB7/Image-fx-5-1.jpg') center/cover no-repeat;
    padding: 5rem 0;
    position: relative;
}

.emergency-loan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.emergency-loan .container {
    position: relative;
    z-index: 2;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.emergency-image {
    max-height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.emergency-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.emergency-text h2 {
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.emergency-text p {
    color: var(--light-green);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* 하단 신청 폼 */
.bottom-apply {
    background: linear-gradient(135deg, var(--secondary-mint) 0%, var(--primary-mint) 100%);
    padding: 4rem 0;
}

.form-wrapper.compact {
    max-width: 900px;
    padding: 2.5rem;
}

.compact-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
}

.compact-form h3 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
}

.compact-form p {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 푸터 */
footer {
    background: linear-gradient(135deg, #263238 0%, #37474F 100%);
    color: #B0BEC5;
    padding: 3rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #37474F;
    font-weight: 500;
}

/* 개인정보 암호화 애니메이션 */
.privacy-encryption {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.encryption-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.encryption-text {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.encryption-bar-container {
    flex: 1;
    max-width: 250px;
}

.encryption-bar {
    width: 100%;
    height: 6px;
    background: #E8F0FF;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.encryption-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #0066FF 0%, #0052CC 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.encryption-bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-content,
    .emergency-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        height: 350px;
        min-height: 350px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-item:nth-child(2)::after {
        display: block;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .compact-form {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .floating-money {
        font-size: 2rem;
    }
    
    /* 개인정보 암호화 모바일 반응형 */
    .privacy-encryption {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .encryption-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .encryption-text {
        font-size: 12px;
    }
    
    .encryption-bar-container {
        max-width: 150px;
    }
    
    .encryption-bar {
        height: 5px;
    }
}

@media (max-width: 480px) {
    .privacy-encryption {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 10px;
    }
    
    .encryption-bar-container {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
    }
}

/* 폼 내부 개인정보 암호화 스타일 */
.form-encryption {
    margin: 20px 0 25px 0;
    background: linear-gradient(135deg, #E8F0FF 0%, #F0F7FF 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
}

.form-encryption.compact {
    margin: 15px 0 20px 0;
}

/* 폼 내부에서 애니메이션 더 강조 */
.form-encryption .encryption-bar-fill {
    background: linear-gradient(90deg, #0066FF 0%, #0052CC 50%, #0066FF 100%);
    animation: progressAnimation 1.5s ease-in-out infinite;
}

.form-encryption .encryption-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}