.home-banner {
    max-width: 1000px;
    margin: 1.5rem auto 1.2rem;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    overflow: hidden;
}

.home-banner-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    overflow: hidden;
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

.home-banner-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fdf5e6 0%, transparent 70%);
    top: -150px;
    right: -100px;
    z-index: 0;
}

.home-banner-content {
    flex: 1 1 320px;
    z-index: 1;
}

.home-banner-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 0.6rem;
    background: #fef3c7;
    color: #92400e;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.home-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.home-banner-highlight {
    color: #d97706;
}

.home-banner-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.home-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-banner-action {
    padding: 0.9rem 1.8rem;
    border-radius: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.home-banner-primary {
    background: #1f2937;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(31, 41, 55, 0.15);
}

.home-banner-primary:hover {
    background: #374151;
    transform: translateY(-1px);
}

.home-banner-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e5e5e0;
}

.home-banner-secondary:hover {
    background: #f9f9f7;
}

.home-banner-visual {
    flex: 1 1 260px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.home-banner-visual-card {
    background: #fffbeb;
    border-radius: 24px;
    border: 2px solid #fef3c7;
    width: min(280px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(217, 119, 6, 0.08);
    animation: banner-float 4s ease-in-out infinite;
}

.home-banner-visual-card span {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.home-banner-visual-pill {
    background: #ffffff;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #fde68a;
    color: #ea580c;
    font-weight: 700;
    font-size: 0.9rem;
}

.home-banner-floating {
    position: absolute;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.6rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.home-banner-floating.top {
    top: -12px;
    left: -12px;
}

.home-banner-floating.bottom {
    bottom: -8px;
    right: -8px;
}

.home-banner-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.home-banner-highlight-card {
    background: #ffffff;
    padding: 1.3rem;
    border-radius: 1.2rem;
    border: 1px solid #f1f5f9;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.home-banner-highlight-icon {
    background: #fff7ed;
    border-radius: 0.9rem;
    padding: 0.6rem;
    font-size: 1.3rem;
}

.home-banner-highlight-card h4 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
}

.home-banner-highlight-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

@keyframes banner-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .home-banner-card {
        padding: 2rem;
    }

    .home-banner-title {
        font-size: 1.7rem;
    }
}
